/* ===============================
   RESET
================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background: #ad897e;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
   cursor: none;
}

/* main dot */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 6px;
  height: 6px;
  background: #f6f1ec;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}

/* follower circle */
.cursor-follower {
  position: fixed;
  top: 0;
  left: 0;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(246, 241, 236, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease;
}

/* hover state */
.cursor-hover .cursor-follower {
  width: 42px;
  height: 42px;
}

@media (pointer: coarse) {
  .cursor,
  .cursor-follower {
    display: none;
  }
}

/* ===============================
   HERO
================================ */
.hero {
  position: relative;
  min-height: 100vh;
  background: #ad897e;
  overflow: hidden;
}

/* ===============================
   HEADER
================================ */
.hero-header {
  position: absolute;
  top: 32px;
  right: 32px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  z-index: 10;
}

.burger {
  background: none;
  border: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.burger span {
  width: 24px;
  height: 2px;
  background: #f6f1ec;
}

/* ===============================
   CONTENT
================================ */
.hero-content {
  position: relative;
  width: 100%;
  height: 100vh;
}

/* ===============================
   IMAGE
================================ */
.hero-image {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.hero-image img {
  max-width: 68%;
  height: auto;
  object-fit: cover;
}

/* ===============================
   TITLES
================================ */
.hero-title,
.hero-subtitle {
  position: absolute;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #f6f1ec;
  z-index: 3;
  line-height: 1;
  pointer-events: none;
}

/* MAKEUP */
.hero-title {
  top: 72px;
  left: 64px;
  font-size: clamp(82px, 10vw, 170px);
}

/* ARTIST */
.hero-subtitle {
  bottom: 72px;
  right: 64px;
  font-size: clamp(82px, 10vw, 170px);
  text-align: right;
}

.hero-author {
  position: absolute;
  bottom: 32px;
  right: 64px;

  font-size: 12px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(246, 241, 236, 0.65);

  z-index: 3;
  pointer-events: none;
}

/* ===============================
   FIXED CIRCLE CTA
================================ */

.circle-cta {
  position: fixed;
  right: 48px;
  top: 50%;
  transform: translateY(-50%);
  width: 120px;
  height: 120px;
  z-index: 999;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(246, 241, 236, 0.7);
  border-radius: 50%;

  text-decoration: none;
  cursor: pointer;
}

/* SVG text */
.circle-svg {
  width: 100%;
  height: 100%;
  animation: rotate 14s linear infinite;
}

.circle-svg text {
  font-size: 7px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  fill: rgba(246, 241, 236, 0.75);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* small center dot */
.circle-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(246, 241, 236, 0.8);
  border-radius: 50%;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.circle-cta:hover {
  border-color: #f6f1ec;
}

.circle-cta:hover text {
  fill: #f6f1ec;
}

/* ===============================
   BURGER MENU OVERLAY
================================ */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 999;
}

/* active */
.menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* ===============================
   PANEL
================================ */
.menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(420px, 90%);
  height: 100%;
  background: #ad897e;
  padding: 80px 48px;
  transform: translateX(100%);
  transition: transform 0.5s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.menu-overlay.active .menu-panel {
  transform: translateX(0);
}

/* close */
.menu-close {
  position: absolute;
  top: 32px;
  right: 32px;
  background: none;
  border: none;
  font-size: 22px;
  color: #f6f1ec;
  cursor: pointer;
}

/* ===============================
   NAV
================================ */
.menu-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-nav li {
  margin-bottom: 32px;
}

.menu-nav a {
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #f6f1ec;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.menu-nav a:hover {
  opacity: 0.6;
}

/* ===============================
  INTRO
================================ */

.intro {
  background: #ad897e;
  padding: 160px 64px;
}

.intro-inner {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  color: #f6f1ec;
}

.intro-eyebrow {
  display: block;
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 40px;
}

.intro-text {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 300;
  letter-spacing: 0.06em;
  line-height: 1.4;
  margin-bottom: 32px;
}

.intro-subtext {
  font-size: 16px;
  letter-spacing: 0.15em;
  opacity: 0.8;
}


/* ===============================
   GALLERY
================================ */
.gallery {
  background: #0f0f0f;
  padding: 120px 64px;
}

.section-label {
  display: block;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(246, 241, 236, 0.5);
  margin-bottom: 48px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
}

.gallery-item img {
  width: 100%;
  height: 80vh;
  object-fit: cover;
}

/* ===============================
   SERVICES
================================ */

.services {
  background: #ad897e;
  padding: 140px 64px;
  text-align: center;
}

.services-title {
  font-size: 12px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(246, 241, 236, 0.5);
  margin-bottom: 64px;
}

.services-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.services-list li {
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 300;
  letter-spacing: 0.08em;
  color: #f6f1ec;
  margin-bottom: 32px;
}

.services-list li:last-child {
  margin-bottom: 0;
}

/* ===============================
  PARTNERS
================================ */

.partners {
  background: #0f0f0f;
  padding: 120px 64px;
  text-align: center;
}

.partners-row {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;

  font-size: 14px;
  letter-spacing: 0.25em;
  color: rgba(246, 241, 236, 0.4);
}

/* ===============================
   CTA
================================ */

.cta {
  background: #000;
  display: grid;
  grid-template-columns: 1fr minmax(320px, 480px) 1fr;
  align-items: center;
  padding: 160px 64px;
  gap: 64px;
}

.cta-image img {
  width: 100%;
  height: 60vh;
  object-fit: cover;
}

.cta-content {
  text-align: center;
  color: #f6f1ec;
}

.cta-eyebrow {
  display: block;
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(246, 241, 236, 0.6);
  margin-bottom: 24px;
}

.cta-title {
  font-size: clamp(48px, 6vw, 96px);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.1;
  margin-bottom: 40px;
}

.cta-button {
  display: inline-block;
  padding: 16px 32px;
  border: 1px solid rgba(246, 241, 236, 0.6);
  color: #f6f1ec;
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: #f6f1ec;
  color: #000;
}

/* ===============================
  FOOTER
================================ */

.footer {
  position: relative;
  background: #000;
  padding: 140px 64px 80px;
  overflow: hidden;
  color: #f6f1ec;
}

/* giant background text */
.footer-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  font-size: clamp(120px, 20vw, 320px);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;

  color: rgba(255, 255, 255, 0.1);

  white-space: nowrap;
}

/* layout */
.footer-inner {
  position: relative;
  z-index: 2;
  margin-top: 260px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 64px;
}

.heading-mask-wrapper {
  position: absolute;
  inset: 0;
  overflow: hidden;

  -webkit-mask-image: linear-gradient(
    to bottom,
    black 55%,
    rgba(0,0,0,0.85) 65%,
    rgba(0,0,0,0.4) 80%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    black 55%,
    rgba(0,0,0,0.85) 65%,
    rgba(0,0,0,0.4) 80%,
    transparent 100%
  );

  pointer-events: none;
}

.footer-brand {
  text-align: left;
}

.footer-name {
  font-size: 14px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 12px;
  opacity: 0.7;
}

.footer-author {
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 0.08em;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
}

.footer-links a {
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(246,241,236,0.7);
  text-decoration: none;
}

.footer-links a:hover {
  opacity: 1;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 1024px) {
  .hero-image img {
    max-width: 85%;
  }

  .hero-title {
    left: 32px;
  }

  .hero-subtitle {
    right: 32px;
  }

  .circle-text {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-title,
  .hero-subtitle {
    font-size: 64px;
    letter-spacing: 0.06em;
  }

  .hero-image img {
    max-width: 100%;
  }
}

/*GALLERY RESPONSIVNESS*/
@media (max-width: 1200px) {
  .gallery {
    padding: 100px 48px;
  }

  .gallery-grid {
    gap: 28px;
  }

  .gallery-item img {
    height: 70vh;
  }
}

@media (max-width: 900px) {
  .gallery {
    padding: 80px 32px;
  }

  .gallery-grid {
    gap: 24px;
  }

  .gallery-item img {
    height: 60vh;
  }
}

@media (max-width: 600px) {
  .gallery {
    padding: 64px 16px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .gallery-item img {
    height: 75vh;
  }
}

@media (max-width: 400px) {
  .gallery-item img {
    height: 65vh;
  }
}

/*CTA*/

@media (max-width: 1024px) {
  .cta {
    grid-template-columns: 1fr;
    padding: 120px 32px;
  }

  .cta-image {
    display: none;
  }
}

@media (max-width: 768px) {
  .services {
    padding: 100px 24px;
  }

  .cta-title {
    font-size: 48px;
  }
}

/*FOOTER*/

@media (max-width: 768px) {
  .footer {
    padding: 100px 24px 60px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }

  .footer-bg {
    font-size: 180px;
  }
}

/*INTRO*/
@media (max-width: 768px) {
  .intro {
    padding: 120px 24px;
  }

  .intro-text {
    font-size: 26px;
  }
}

@media (max-width: 768px) {
  .hero-author {
    right: 32px;
    bottom: 24px;
    font-size: 10px;
    letter-spacing: 0.3em;
  }
}

/*CIRCLE CTA*/

@media (max-width: 768px) {
  .circle-cta {
    width: 96px;
    height: 96px;
    right: 20px;
  }

  .circle-svg text {
    font-size: 6px;
  }
}