/* ================================================================
   BEA STUDIO PHOTOGRAPHY — STYLESHEET
   Aesthetic: Emotional Minimalism
   Palette: Ivory · Linen · Blush Nude · Terracotta · Espresso
================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&family=Jost:wght@300;400;500;600&display=swap');

/* ── TOKENS ──────────────────────────────────────────────────── */
:root {
  --ivory:       #FAF7F3;
  --linen:       #EDE6DC;
  --linen-dark:  #DCCFC3;
  --blush:       #C4A898;
  --terra:       #A07858;
  --mocha:       #7A6A5A;
  --espresso:    #3A2E26;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Jost', sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:  cubic-bezier(0.7, 0, 0.84, 0);

  --nav-h: 80px;
}

/* ── RESET ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
img  { display: block; max-width: 100%; }
a    { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

body {
  background: var(--ivory);
  color: var(--mocha);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.75;
  overflow-x: hidden;
}

/* ── SCROLLBAR ───────────────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--ivory); }
::-webkit-scrollbar-thumb { background: var(--blush); border-radius: 2px; }

/* ── SELECTION ───────────────────────────────────────────────── */
::selection { background: var(--linen); color: var(--espresso); }

/* ================================================================
   NAVIGATION
================================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  transition: background 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}

.nav.scrolled {
  background: rgba(250, 247, 243, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--linen-dark);
}

.nav-logo img {
  height: 68px;
  width: auto;
  transition: opacity 0.3s;
}

.nav-logo img:hover { opacity: 0.8; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--espresso);
  position: relative;
  padding-bottom: 3px;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--terra);
  transition: width 0.35s var(--ease-out);
}

.nav-links a:hover { color: var(--terra); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory) !important;
  background: var(--espresso);
  padding: 10px 22px !important;
  gap: 8px;
  border-radius: 2px;
  line-height: 1;
  transition: background 0.3s, transform 0.2s !important;
}

.nav-cta:hover {
  background: var(--terra) !important;
  transform: translateY(-1px);
}

.nav-cta::after { display: none !important; }

/* mobile burger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--espresso);
  transition: transform 0.35s var(--ease-out), opacity 0.3s;
  transform-origin: center;
}

.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* mobile menu */
.nav-mobile {
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: rgba(250, 247, 243, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 32px 40px 40px;
  transform: translateY(-110%);
  opacity: 0;
  transition: transform 0.45s var(--ease-out), opacity 0.35s;
  z-index: 99;
  display: flex;
  flex-direction: column;
  gap: 28px;
  border-bottom: 0.5px solid var(--linen-dark);
}

.nav-mobile.open {
  transform: translateY(0);
  opacity: 1;
}

.nav-mobile a {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 300;
  font-style: italic;
  color: var(--espresso);
  transition: color 0.3s, padding-left 0.3s;
}

.nav-mobile a:hover { color: var(--terra); padding-left: 8px; }

/* ================================================================
   HERO
================================================================ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

/* left — texto */
.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 80px 80px 80px;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp 0.8s var(--ease-out) 0.2s forwards;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 300;
  font-style: italic;
  color: var(--espresso);
  line-height: 1.08;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.9s var(--ease-out) 0.38s forwards;
}

.hero-title em {
  font-style: normal;
  font-weight: 600;
  color: var(--terra);
}

.hero-sub {
  font-size: 15px;
  font-weight: 300;
  color: var(--mocha);
  line-height: 1.85;
  max-width: 380px;
  margin-bottom: 44px;
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp 0.9s var(--ease-out) 0.54s forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp 0.9s var(--ease-out) 0.68s forwards;
}

.hero-location {
  margin-top: auto;
  padding-top: 60px;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blush);
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 1s forwards;
}

/* right — imagem placeholder */
.hero-visual {
  position: relative;
  background: var(--linen);
  overflow: hidden;
}

.hero-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--linen) 0%, var(--linen-dark) 100%);
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transform: scale(1.06);
  animation: zoomOut 1.4s var(--ease-out) 0.1s forwards;
}

/* photo placeholder */
.hero-img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--blush);
}

.hero-img-placeholder svg { opacity: 0.5; }

.hero-img-placeholder span {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.7;
}

/* overlay grain */
.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  mix-blend-mode: multiply;
}

/* scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 80px;
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0;
  animation: fadeIn 1s var(--ease-out) 1.4s forwards;
}

.hero-scroll-line {
  width: 48px;
  height: 1px;
  background: var(--blush);
  position: relative;
  overflow: hidden;
}

.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--terra);
  animation: scrollLine 2s var(--ease-out) 1.6s infinite;
}

.hero-scroll span {
  font-size: 9px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--blush);
}

/* ================================================================
   BUTTONS
================================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--espresso);
  color: var(--ivory);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.3s, transform 0.25s var(--ease-out), box-shadow 0.3s;
}

.btn-primary:hover {
  background: var(--terra);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(58,46,38,0.18);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--espresso);
  border-bottom: 1px solid var(--linen-dark);
  padding-bottom: 3px;
  transition: color 0.3s, border-color 0.3s, gap 0.3s;
}

.btn-ghost:hover { color: var(--terra); border-color: var(--terra); gap: 14px; }

/* ================================================================
   SECTION COMMONS
================================================================ */
.section { padding: 100px 80px; }
.section-sm { padding: 72px 80px; }

.section-label {
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--terra);
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.section-label::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--terra);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 300;
  font-style: italic;
  color: var(--espresso);
  line-height: 1.12;
}

.section-body {
  font-size: 15px;
  font-weight: 300;
  color: var(--mocha);
  line-height: 1.85;
  max-width: 540px;
}

/* ── REVEAL ANIMATIONS ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.22s; }
.reveal-delay-3 { transition-delay: 0.36s; }
.reveal-delay-4 { transition-delay: 0.5s; }

/* ================================================================
   BRAND STRIP
================================================================ */
.brand-strip {
  background: var(--espresso);
  padding: 22px 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  overflow: hidden;
}

.brand-strip-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--blush);
  white-space: nowrap;
}

.brand-strip-item svg { flex-shrink: 0; opacity: 0.7; }

.brand-strip-item span {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.brand-strip-divider {
  width: 1px;
  height: 20px;
  background: rgba(196,168,152,0.25);
  flex-shrink: 0;
}

/* ================================================================
   ABOUT SECTION
================================================================ */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 640px;
}

.about-visual {
  position: relative;
  background: var(--linen);
  overflow: hidden;
  min-height: 520px;
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.8s var(--ease-out);
}

.about-visual:hover .about-img { transform: scale(1.03); }

.about-img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--blush);
}

.about-img-placeholder svg { opacity: 0.4; }
.about-img-placeholder span { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.6; }

.about-content {
  padding: 80px 80px 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
}

.about-quote {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 300;
  font-style: italic;
  color: var(--espresso);
  line-height: 1.45;
  border-left: 2px solid var(--terra);
  padding-left: 28px;
  margin: 8px 0;
}

/* ================================================================
   SERVICES SECTION
================================================================ */
.services { background: var(--linen); }

.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 64px;
}

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

.service-card {
  background: var(--ivory);
  padding: 52px 48px;
  position: relative;
  overflow: hidden;
  transition: background 0.4s var(--ease-out);
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--terra);
  transition: width 0.5s var(--ease-out);
}

.service-card:hover { background: #F8F4EF; }
.service-card:hover::before { width: 100%; }

.service-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.service-num {
  font-family: var(--font-serif);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.16em;
  color: var(--blush);
}

.service-icon {
  display: block;
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(54%) sepia(30%) saturate(600%) hue-rotate(330deg) brightness(88%);
}

.service-title {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--espresso);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
  line-height: 1.1;
}

.service-tagline {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 300;
  font-style: italic;
  color: var(--terra);
  margin-bottom: 20px;
  line-height: 1.3;
}

.service-desc {
  font-size: 13.5px;
  font-weight: 300;
  color: var(--mocha);
  line-height: 1.8;
  margin-bottom: 28px;
}

.service-includes {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.service-includes li {
  font-size: 12.5px;
  font-weight: 300;
  color: var(--mocha);
  padding-left: 18px;
  position: relative;
}

.service-includes li::before {
  content: '✦';
  position: absolute;
  left: 0;
  font-size: 8px;
  color: var(--terra);
  top: 2px;
}

.service-price {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 400;
  color: var(--espresso);
  letter-spacing: 0.06em;
}

.service-price strong {
  font-size: 22px;
  font-weight: 600;
}

/* ================================================================
   HOW IT WORKS
================================================================ */
.how {
  background: var(--ivory);
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 64px;
}

.how-step {
  padding: 40px 32px;
  background: var(--linen);
  position: relative;
  transition: background 0.3s;
}

.how-step:hover { background: var(--linen-dark); }

.how-step-num {
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 300;
  font-style: italic;
  color: var(--linen-dark);
  line-height: 1;
  margin-bottom: 20px;
  transition: color 0.3s;
}

.how-step:hover .how-step-num { color: var(--blush); }

.how-step-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--espresso);
  margin-bottom: 10px;
}

.how-step-text {
  font-size: 13px;
  font-weight: 300;
  color: var(--mocha);
  line-height: 1.8;
}

.how-step-connector {
  position: absolute;
  right: -1px; top: 50%;
  width: 2px; height: 40px;
  background: var(--linen-dark);
  transform: translateY(-50%);
  z-index: 1;
}

.how-step:last-child .how-step-connector { display: none; }

/* ================================================================
   GALLERY TEASER
================================================================ */
.gallery { background: var(--espresso); padding: 100px 80px; }

.gallery-header { margin-bottom: 52px; }

.gallery-header .section-label { color: var(--blush); }
.gallery-header .section-label::before { background: var(--blush); }
.gallery-header .section-title { color: var(--ivory); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 320px 220px;
  gap: 3px;
}

.gallery-item {
  background: var(--mocha);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item:first-child {
  grid-row: 1 / 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

.gallery-item:hover img { transform: scale(1.06); }

.gallery-item-ph {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--blush);
  background: var(--espresso);
  opacity: 0.8;
}

.gallery-item-ph svg { opacity: 0.4; }
.gallery-item-ph span { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.6; }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(58,46,38,0.6), transparent);
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay-text {
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 300;
  font-style: italic;
  color: var(--ivory);
  letter-spacing: 0.04em;
}

.gallery-cta {
  margin-top: 40px;
  text-align: center;
}

.gallery-cta .btn-ghost {
  color: var(--blush);
  border-color: rgba(196,168,152,0.4);
}

.gallery-cta .btn-ghost:hover { color: var(--ivory); border-color: var(--ivory); }

/* ================================================================
   PAGE GALLERY (inner service pages)
================================================================ */
.page-gallery {
  background: var(--linen);
  padding: 100px 80px;
}

.page-gallery .section-label { margin-bottom: 8px; }
.page-gallery .section-title { margin-bottom: 52px; }

.page-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.page-gallery-grid .gallery-item {
  background: var(--linen-dark);
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
  aspect-ratio: 4 / 5;
  position: relative;
}

.page-gallery-grid .gallery-item:first-child {
  grid-row: 1 / 3;
  aspect-ratio: auto;
}

.page-gallery-grid .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.page-gallery-grid .gallery-item:hover img { transform: scale(1.05); }

.page-gallery-grid .gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(58,46,38,0.28);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s;
}

.page-gallery-grid .gallery-item:hover .gallery-overlay { opacity: 1; }

/* Lightbox styles (shared across all pages) */
#lightbox {
  position: fixed; inset: 0; z-index: 999;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s;
}
#lightbox.open { opacity: 1; pointer-events: all; }
.lb-overlay {
  position: absolute; inset: 0;
  background: rgba(26,20,14,0.92);
  backdrop-filter: blur(8px);
}
.lb-content {
  position: relative; z-index: 1;
  max-width: 90vw; max-height: 90vh;
}
.lb-img {
  max-width: 90vw; max-height: 86vh;
  object-fit: contain; border-radius: 2px;
  transform: scale(0.94);
  transition: transform 0.45s cubic-bezier(0.16,1,0.3,1);
}
#lightbox.open .lb-img { transform: scale(1); }
.lb-close {
  position: absolute; top: -44px; right: 0;
  color: rgba(196,168,152,0.7); font-size: 18px;
  cursor: pointer; padding: 8px;
  transition: color 0.3s;
}
.lb-close:hover { color: #FAF7F3; }

/* ================================================================
   SESSION DESCRIPTION GRID (inner service pages)
================================================================ */
.session-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .session-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  /* Text always first, image always below — regardless of HTML order */
  .session-grid .about-visual { order: 2; }
  .session-grid > div:not(.about-visual) { order: 1; }

  .page-gallery { padding: 64px 24px; }
  .page-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .page-gallery-grid .gallery-item:first-child { grid-row: auto; aspect-ratio: 4 / 5; }
}

/* ================================================================
   TESTIMONIALS
================================================================ */
.testimonials {
  background: var(--ivory);
  padding: 100px 80px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 56px;
}

.testimonial-card {
  padding: 44px 40px;
  background: var(--linen);
  transition: background 0.3s;
}

.testimonial-card:hover { background: var(--linen-dark); }

.testimonial-stars {
  color: var(--terra);
  font-size: 11px;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.testimonial-text {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 300;
  font-style: italic;
  color: var(--espresso);
  line-height: 1.6;
  margin-bottom: 24px;
}

.testimonial-author {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terra);
}

.testimonial-type {
  font-size: 11px;
  font-weight: 300;
  color: var(--blush);
  margin-top: 2px;
  letter-spacing: 0.06em;
}

/* ================================================================
   VIP LIST
================================================================ */
.vip {
  background: var(--linen);
  padding: 100px 80px;
}

.vip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.vip-perks {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.vip-perk {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.vip-perk-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--terra);
  flex-shrink: 0;
  margin-top: 7px;
}

.vip-perk-text {
  font-size: 14px;
  font-weight: 300;
  color: var(--mocha);
  line-height: 1.7;
}

/* form */
.vip-form { display: flex; flex-direction: column; gap: 0; }

.vip-form-title {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 300;
  font-style: italic;
  color: var(--espresso);
  margin-bottom: 32px;
  line-height: 1.3;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mocha);
}

.form-input {
  background: var(--ivory);
  border: 0.5px solid var(--linen-dark);
  border-radius: 2px;
  padding: 14px 18px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--espresso);
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
  width: 100%;
}

.form-input:focus {
  border-color: var(--terra);
  box-shadow: 0 0 0 3px rgba(160,120,88,0.1);
}

.form-input::placeholder { color: var(--blush); }

.form-submit {
  margin-top: 8px;
  width: 100%;
  padding: 16px 32px;
  background: var(--espresso);
  color: var(--ivory);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  border: none;
  transition: background 0.3s, transform 0.25s var(--ease-out);
}

.form-submit:hover {
  background: var(--terra);
  transform: translateY(-2px);
}

.form-note {
  margin-top: 14px;
  font-size: 11px;
  font-weight: 300;
  color: var(--blush);
  text-align: center;
  letter-spacing: 0.04em;
}

/* ================================================================
   FINAL CTA
================================================================ */
.final-cta {
  background: var(--espresso);
  padding: 120px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: -40%; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(160,120,88,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta-eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 24px;
}

.final-cta-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 300;
  font-style: italic;
  color: var(--ivory);
  line-height: 1.12;
  margin-bottom: 16px;
}

.final-cta-title strong {
  display: block;
  font-weight: 600;
  font-style: italic;
  color: var(--blush);
}

.final-cta-sub {
  font-size: 15px;
  font-weight: 300;
  color: rgba(196,168,152,0.8);
  margin-bottom: 48px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.final-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.final-cta .btn-primary {
  background: var(--terra);
  padding: 16px 40px;
  font-size: 11.5px;
}

.final-cta .btn-primary:hover { background: var(--blush); }

.final-cta .btn-ghost {
  color: rgba(196,168,152,0.75);
  border-color: rgba(196,168,152,0.3);
  font-size: 11px;
}

.final-cta .btn-ghost:hover { color: var(--ivory); border-color: var(--ivory); }

/* ================================================================
   FOOTER
================================================================ */
.footer {
  background: #2A2018;
  padding: 64px 80px 36px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 52px;
  border-bottom: 0.5px solid rgba(196,168,152,0.15);
  margin-bottom: 36px;
}

.footer-brand img { height: 56px; width: auto; margin-bottom: 20px; }

.footer-brand-placeholder {
  width: 100px;
  height: 56px;
  border: 1px dashed rgba(196,168,152,0.3);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 8px;
  color: rgba(196,168,152,0.5);
  letter-spacing: 0.12em;
}

.footer-brand-text {
  font-size: 13px;
  font-weight: 300;
  color: var(--mocha);
  line-height: 1.8;
  max-width: 240px;
}

.footer-col-title {
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--blush);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 13px;
  font-weight: 300;
  color: var(--mocha);
  transition: color 0.3s, padding-left 0.3s;
}

.footer-links a:hover { color: var(--blush); padding-left: 4px; }

.footer-contact-item {
  font-size: 13px;
  font-weight: 300;
  color: var(--mocha);
  margin-bottom: 8px;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.footer-social a {
  width: 36px; height: 36px;
  border: 0.5px solid rgba(196,168,152,0.25);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blush);
  font-size: 13px;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.footer-social a:hover {
  background: var(--terra);
  color: var(--ivory);
  border-color: var(--terra);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 11px;
  font-weight: 300;
  color: rgba(122,106,90,0.6);
  letter-spacing: 0.06em;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 11px;
  font-weight: 300;
  color: rgba(122,106,90,0.5);
  transition: color 0.3s;
}

.footer-legal a:hover { color: var(--blush); }

/* ================================================================
   KEYFRAMES
================================================================ */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  to { opacity: 1; }
}

@keyframes zoomOut {
  to { transform: scale(1); }
}

@keyframes scrollLine {
  0%   { left: -100%; }
  100% { left: 100%; }
}

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 1100px) {
  .nav        { padding: 0 36px; }
  .section    { padding: 80px 48px; }
  .section-sm { padding: 60px 48px; }
  .hero-text  { padding: 100px 48px 60px; }
  .about-content { padding: 60px 48px; }
  .services   { padding: 80px 48px; }
  .gallery    { padding: 80px 48px; }
  .testimonials { padding: 80px 48px; }
  .vip        { padding: 80px 48px; }
  .final-cta  { padding: 100px 48px; }
  .footer     { padding: 56px 48px 32px; }
  .footer-top { grid-template-columns: 1.2fr 1fr 1fr; gap: 40px; }
  .footer-top > :last-child { grid-column: 1 / -1; }
  .how-grid   { grid-template-columns: repeat(2, 1fr); }
  .brand-strip { gap: 32px; padding: 22px 48px; flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 860px) {
  .nav { padding: 0 24px; }
  .nav-links, .nav-cta-desktop { display: none; }
  .nav-burger { display: flex; }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-text { padding: 110px 24px 60px; }
  .hero-visual { height: 60vw; min-height: 320px; }
  .hero-scroll { left: 24px; }

  .section    { padding: 64px 24px; }
  .section-sm { padding: 48px 24px; }

  .about          { grid-template-columns: 1fr; }
  .about-visual   { min-height: 280px; }
  .about-content  { padding: 48px 24px; }

  .services-header { grid-template-columns: 1fr; gap: 24px; }
  .services-grid   { grid-template-columns: 1fr; }
  .services        { padding: 64px 24px; }

  .gallery      { padding: 64px 24px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item:first-child { grid-row: auto; }

  .testimonials      { padding: 64px 24px; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .vip       { padding: 64px 24px; }
  .vip-inner { grid-template-columns: 1fr; gap: 48px; }

  .final-cta { padding: 80px 24px; }
  .final-cta-actions { flex-direction: column; gap: 20px; }

  .footer     { padding: 48px 24px 28px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }

  .how-grid { grid-template-columns: 1fr; }

  .brand-strip { padding: 18px 24px; gap: 20px; }
  .brand-strip-divider { display: none; }
}

/* ================================================================
   NAV ACTIVE STATE
================================================================ */
.nav-links a[aria-current="page"] { color: var(--terra); }
.nav-links a[aria-current="page"]::after { width: 100%; }

/* ================================================================
   NAV DROPDOWN SUBMENU
================================================================ */
.nav-has-sub { position: relative; }

.nav-has-sub::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -16px;
  right: -16px;
  height: 22px;
}

.nav-sub {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--ivory);
  border: 0.5px solid var(--linen-dark);
  box-shadow: 0 12px 32px rgba(58,46,38,0.12);
  min-width: 190px;
  list-style: none;
  padding: 6px 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s var(--ease-out), transform 0.25s var(--ease-out);
  border-radius: 2px;
  z-index: 200;
}

.nav-has-sub:hover .nav-sub,
.nav-has-sub:focus-within .nav-sub {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.nav-sub li { list-style: none; }

.nav-sub a {
  display: block;
  padding: 11px 20px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--espresso) !important;
  transition: color 0.2s, padding-left 0.25s;
  white-space: nowrap;
  position: relative;
}

.nav-sub a:hover { color: var(--terra) !important; padding-left: 26px; }
.nav-sub a::after { display: none !important; }
.nav-sub a::before { display: none !important; }

.nav-sub-chevron {
  display: inline-block;
  transition: transform 0.3s var(--ease-out);
  margin-left: 5px;
  vertical-align: middle;
  position: relative;
  top: -1px;
}

.nav-has-sub:hover .nav-sub-chevron { transform: rotate(180deg); }

/* ================================================================
   NAV LIGHT VARIANT (dark hero pages)
================================================================ */
.nav--light .nav-links a { color: var(--ivory); }
.nav--light .nav-links a::after { background: rgba(250,247,243,0.6); }
.nav--light .nav-links a:hover { color: var(--blush); }
.nav--light .nav-links a[aria-current="page"] { color: var(--blush); }
.nav--light .nav-links a[aria-current="page"]::after { background: var(--blush); width: 100%; }

.nav--light.scrolled .nav-links a { color: var(--espresso); }
.nav--light.scrolled .nav-links a::after { background: var(--terra); }
.nav--light.scrolled .nav-links a:hover { color: var(--terra); }
.nav--light.scrolled .nav-links a[aria-current="page"] { color: var(--terra); }

/* ================================================================
   PAGE HERO (inner pages)
================================================================ */
.page-hero {
  padding: calc(var(--nav-h) + 80px) 80px 80px;
  background: var(--linen);
  position: relative;
  overflow: hidden;
  min-height: 52vh;
  display: flex;
  align-items: center;
}
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.25; }
.page-hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--linen) 20%, rgba(237,230,220,0.6) 100%);
}
.page-hero-content { position: relative; z-index: 1; max-width: 760px; }
.page-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(38px, 4.5vw, 64px);
  font-weight: 300; font-style: italic;
  color: var(--espresso);
  line-height: 1.1;
  margin-top: 16px; margin-bottom: 20px;
}
.page-hero-sub {
  font-size: 16px; font-weight: 300;
  color: var(--mocha); line-height: 1.85;
  max-width: 500px; margin-bottom: 36px;
}

.page-hero-dark { background: var(--espresso); }
.page-hero-dark .page-hero-bg::after {
  background: linear-gradient(135deg, var(--espresso) 30%, rgba(58,46,38,0.7) 100%);
}
.page-hero-dark .page-hero-bg img { opacity: 0.3; }
.page-hero-dark .section-label { color: var(--blush); }
.page-hero-dark .section-label::before { background: var(--blush); }
.page-hero-dark .page-hero-title { color: var(--ivory); }
.page-hero-dark .page-hero-sub { color: rgba(237,230,220,0.8); }

/* ================================================================
   VALUE CARDS (about page)
================================================================ */
.value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 60px;
}
.value-card { padding: 48px 44px; background: var(--linen); transition: background 0.3s; }
.value-card:hover { background: var(--linen-dark); }
.value-card-num {
  font-family: var(--font-serif);
  font-size: 10px; font-weight: 400;
  letter-spacing: 0.2em; color: var(--blush); margin-bottom: 16px;
}
.value-card-title {
  font-family: var(--font-serif);
  font-size: 24px; font-weight: 600;
  color: var(--espresso); margin-bottom: 14px;
}
.value-card-text { font-size: 14px; font-weight: 300; color: var(--mocha); line-height: 1.85; }

/* ================================================================
   INCLUDE BLOCK
================================================================ */
.include-block { background: var(--linen); padding: 100px 80px; }
.include-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 56px;
}
.include-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.include-list li {
  font-size: 14.5px; font-weight: 300;
  color: var(--mocha); line-height: 1.7;
  padding-left: 22px; position: relative;
}
.include-list li::before {
  content: '✦'; position: absolute; left: 0;
  font-size: 8px; color: var(--terra); top: 4px;
}
.include-price {
  font-family: var(--font-serif);
  font-size: 18px; font-weight: 300; font-style: italic;
  color: var(--espresso);
  margin-top: 36px; padding-top: 32px;
  border-top: 0.5px solid var(--linen-dark);
  line-height: 1.4;
}
.include-price strong { font-size: 48px; font-weight: 600; font-style: normal; display: block; margin-top: 4px; }

/* ================================================================
   TIMING BLOCK
================================================================ */
.timing-block { background: var(--espresso); padding: 80px 80px; }
.timing-inner { max-width: 680px; }
.timing-block .section-label { color: var(--blush); }
.timing-block .section-label::before { background: var(--blush); }
.timing-block .section-title { color: var(--ivory); }
.timing-text {
  font-size: 15px; font-weight: 300;
  color: rgba(237,230,220,0.85); line-height: 1.9;
  margin-top: 20px;
}

/* ================================================================
   EXPECT GRID (before / during / after)
================================================================ */
.expect-section { background: var(--ivory); padding: 100px 80px; }
.expect-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 56px;
}
.expect-col { padding: 44px 40px; background: var(--linen); transition: background 0.3s; }
.expect-col:hover { background: var(--linen-dark); }
.expect-col-label {
  font-size: 9px; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--terra); margin-bottom: 16px;
}
.expect-col-title {
  font-family: var(--font-serif);
  font-size: 22px; font-weight: 300; font-style: italic;
  color: var(--espresso); margin-bottom: 16px;
}
.expect-col-text { font-size: 13.5px; font-weight: 300; color: var(--mocha); line-height: 1.85; }

/* ================================================================
   TRUST BLOCK
================================================================ */
.trust-block {
  background: var(--linen);
  padding: 80px 80px;
  display: flex; align-items: center; justify-content: center;
}
.trust-inner { max-width: 680px; text-align: center; }
.trust-stars { color: var(--terra); font-size: 12px; letter-spacing: 4px; margin-bottom: 24px; }
.trust-quote {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 300; font-style: italic;
  color: var(--espresso); line-height: 1.55;
  margin-bottom: 28px;
}
.trust-author {
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--terra);
}
.trust-type { font-size: 11px; font-weight: 300; color: var(--blush); margin-top: 4px; }

/* ================================================================
   HOW STEPS DETAIL
================================================================ */
.steps-detail { background: var(--ivory); padding: 100px 80px; }
.step-detail-list { display: flex; flex-direction: column; gap: 2px; margin-top: 60px; }
.step-detail {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 40px; align-items: start;
  padding: 44px 48px;
  background: var(--linen);
  transition: background 0.3s;
}
.step-detail:hover { background: var(--linen-dark); }
.step-detail-num {
  font-family: var(--font-serif);
  font-size: 52px; font-weight: 300; font-style: italic;
  color: var(--linen-dark); line-height: 1;
  transition: color 0.3s;
}
.step-detail:hover .step-detail-num { color: var(--blush); }
.step-detail-title {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--espresso); margin-bottom: 10px;
}
.step-detail-text { font-size: 14.5px; font-weight: 300; color: var(--mocha); line-height: 1.9; }

/* ================================================================
   FAQ
================================================================ */
.faq-section { background: var(--linen); padding: 100px 80px; }
.faq-list { margin-top: 56px; display: flex; flex-direction: column; gap: 2px; }
.faq-item { background: var(--ivory); overflow: hidden; transition: background 0.3s; }
.faq-q {
  width: 100%; text-align: left;
  padding: 22px 32px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 14px; font-weight: 500;
  letter-spacing: 0.03em; color: var(--espresso);
  cursor: pointer; border: none; background: none;
  font-family: var(--font-sans);
  transition: color 0.3s;
}
.faq-q:hover { color: var(--terra); }
.faq-q-icon {
  width: 18px; height: 18px; flex-shrink: 0;
  position: relative; margin-left: 24px;
}
.faq-q-icon::before, .faq-q-icon::after {
  content: ''; position: absolute;
  background: currentColor; border-radius: 1px;
  transition: transform 0.35s var(--ease-out), opacity 0.3s;
}
.faq-q-icon::before { width: 12px; height: 1px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.faq-q-icon::after  { width: 1px; height: 12px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.faq-item.open .faq-q-icon::after { opacity: 0; transform: translate(-50%,-50%) rotate(90deg); }
.faq-a {
  padding: 0 32px;
  max-height: 0; overflow: hidden;
  transition: max-height 0.45s var(--ease-out), padding 0.3s;
  font-size: 14px; font-weight: 300;
  color: var(--mocha); line-height: 1.9;
}
.faq-item.open .faq-a { max-height: 400px; padding: 0 32px 28px; }

/* ================================================================
   RESPONSIVE — inner pages
================================================================ */
@media (max-width: 1100px) {
  .page-hero     { padding: calc(var(--nav-h) + 60px) 48px 60px; }
  .include-block { padding: 80px 48px; }
  .timing-block  { padding: 60px 48px; }
  .expect-section{ padding: 80px 48px; }
  .trust-block   { padding: 60px 48px; }
  .steps-detail  { padding: 80px 48px; }
  .faq-section   { padding: 80px 48px; }
}

@media (max-width: 860px) {
  .page-hero     { padding: calc(var(--nav-h) + 40px) 24px 48px; min-height: 40vh; }
  .value-grid    { grid-template-columns: 1fr; }
  .include-grid  { grid-template-columns: 1fr; gap: 40px; }
  .include-block { padding: 56px 24px; }
  .timing-block  { padding: 48px 24px; }
  .expect-section{ padding: 64px 24px; }
  .expect-grid   { grid-template-columns: 1fr; }
  .trust-block   { padding: 56px 24px; }
  .steps-detail  { padding: 64px 24px; }
  .step-detail   { grid-template-columns: 56px 1fr; gap: 20px; padding: 32px 24px; }
  .faq-section   { padding: 64px 24px; }
}
