/* ============================================================
   THEA MANAGEMENT — Global Stylesheet
   ============================================================ */

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

/* ---- Design Tokens ---- */
:root {
  --bg:         #09070A;
  --bg-alt:     #110D09;
  --bg-card:    #181210;
  --gold:       #C9A96E;
  --gold-light: #DEC080;
  --gold-dim:   #7A6040;
  --text:       #EDE6DB;
  --text-muted: #877869;
  --border:     #231C16;
  --nav-h:      84px;
  --max-w:      1200px;
  --ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition: 0.4s var(--ease);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Montserrat', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.85;
  font-weight: 300;
  overflow-x: hidden;
}
img  { display: block; max-width: 100%; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
button { background: none; border: none; cursor: pointer; font: inherit; color: inherit; }

/* Film-grain noise overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='250' height='250'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='250' height='250' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.022;
  pointer-events: none;
  z-index: 9999;
}

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0.02em;
  color: var(--text);
}
h1 { font-size: clamp(3.2rem, 7vw, 6.5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.75rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
p  { font-size: 0.92rem; color: var(--text-muted); }

.label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1.1rem;
}

/* ---- Layout ---- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}
@media (min-width: 1024px) { .container { padding: 0 3.5rem; } }

.section { padding: 130px 0; }
@media (max-width: 768px) { .section { padding: 80px 0; } }

.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 72px;
}
.section__title { margin-bottom: 1.25rem; }
.section__sub { font-size: 0.94rem; line-height: 1.95; }

/* ---- Dividers ---- */
.gold-line {
  width: 56px;
  height: 1px;
  background: var(--gold);
  margin: 1.6rem auto;
}
.gold-line--left { margin-left: 0; }

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 1.05rem 2.8rem;
  transition: all var(--transition);
  cursor: pointer;
}
.btn--gold {
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn--gold:hover {
  background: var(--gold);
  color: var(--bg);
}
.btn--solid {
  background: var(--gold);
  color: var(--bg);
  border: 1px solid var(--gold);
}
.btn--solid:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), border-color var(--transition), backdrop-filter var(--transition);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(9, 7, 10, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
}
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 1024px) { .nav__inner { padding: 0 3.5rem; } }

.nav__logo img {
  height: 50px;
  width: auto;
  transition: opacity var(--transition);
}
.nav__logo:hover img { opacity: 0.8; }

.nav__links {
  display: flex;
  gap: 2.75rem;
  align-items: center;
}
.nav__link {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 3px;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav__link:hover,
.nav__link.active { color: var(--gold); }
.nav__link:hover::after,
.nav__link.active::after { width: 100%; }

/* Apply link styled as button */
.nav__link--cta {
  border: 1px solid var(--gold-dim);
  color: var(--gold);
  padding: 0.55rem 1.5rem;
  letter-spacing: 0.2em;
}
.nav__link--cta::after { display: none; }
.nav__link--cta:hover {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}

/* Hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--text);
  transition: all 0.35s;
  transform-origin: center;
}
.nav__toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile nav drawer */
.nav__mobile {
  background: rgba(9, 7, 10, 0.98);
  border-top: 1px solid var(--border);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.nav__mobile.open { max-height: 320px; }
.nav__mobile-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 0.5rem 0;
}
.nav__mobile-links a {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 1.1rem 2rem;
  transition: color var(--transition), background var(--transition);
  border-bottom: 1px solid var(--border);
}
.nav__mobile-links a:last-child { border-bottom: none; }
.nav__mobile-links a:hover { color: var(--gold); background: var(--bg-alt); }

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
}

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

/* ---- Left: content panel ---- */
.hero__left {
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 4rem) 4.5rem 5rem 4.5rem;
  position: relative;
  z-index: 1;
}
.hero__left::after {
  content: '';
  position: absolute;
  right: -1px;
  top: 0; bottom: 0;
  width: 1px;
  background: var(--border);
  z-index: 2;
}

.hero__logo-wrap {
  margin: 0 auto 3rem;
}
.hero__logo-wrap img {
  width: 420px;
  height: auto;
  max-width: 100%;
}
.hero__eyebrow {
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero__title {
  font-size: clamp(2.6rem, 4.5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: 0.03em;
  color: var(--text);
  margin-bottom: 0;
}
.hero__title em {
  font-style: italic;
  color: var(--gold);
  display: block;
}
.hero__rule {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 2rem 0;
}
.hero__sub {
  font-size: 0.93rem;
  line-height: 1.95;
  color: var(--text-muted);
  max-width: 420px;
  margin-bottom: 2.75rem;
}
.hero__cta-group {
  display: flex;
  gap: 1.1rem;
  flex-wrap: wrap;
}
.btn--ghost {
  color: var(--text-muted);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 1.05rem 2.2rem;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.btn--ghost:hover {
  border-color: var(--text-muted);
  color: var(--text);
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 4.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dim);
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold-dim), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 1; }
}

/* ---- Right: photo panel ---- */
.hero__right {
  position: relative;
  overflow: hidden;
}
.hero__right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.78) contrast(1.06) saturate(0.85);
  display: block;
}
.hero__right-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, var(--bg) 0%, transparent 30%),
    linear-gradient(to top, rgba(9,7,10,0.5) 0%, transparent 40%);
}

@media (max-width: 1200px) {
  .hero__left { padding: calc(var(--nav-h) + 3.5rem) 3.5rem 4.5rem; }
}
@media (max-width: 1050px) {
  .hero__left { padding: calc(var(--nav-h) + 3rem) 2.75rem 4rem; }
  .hero__title { font-size: clamp(2.4rem, 4vw, 4.5rem); }
}

/* ---- Mobile: stack vertically, photo as bg ---- */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    position: relative;
    min-height: 100vh;
  }
  .hero__right {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  .hero__right-overlay {
    background: rgba(9, 7, 10, 0.7);
  }
  .hero__left {
    position: relative;
    z-index: 1;
    padding: calc(var(--nav-h) + 3rem) 2rem 4rem;
    background: transparent;
  }
  .hero__left::after { display: none; }
  .hero__rule { margin: 1.75rem 0; }
  .hero__scroll { left: 2rem; }
  .hero__logo-wrap { margin: 0 auto 2rem; }
  .hero__logo-wrap img { width: 220px; }
}

/* ============================================================
   SHOWCASE — 3-PHOTO EDITORIAL STRIP
   ============================================================ */
.showcase {
  background: var(--bg);
  overflow: hidden;
}
.showcase__grid {
  display: grid;
  grid-template-columns: 1fr 1.12fr 1fr;
  gap: 2px;
  background: var(--border);
  height: 540px;
}
@media (max-width: 900px) {
  .showcase__grid {
    grid-template-columns: 1fr 1fr;
    height: 380px;
  }
  .showcase__item:last-child { display: none; }
}
@media (max-width: 560px) {
  .showcase__grid {
    grid-template-columns: 1fr;
    height: 420px;
  }
  .showcase__item:not(:first-child) { display: none; }
}

.showcase__item {
  position: relative;
  overflow: hidden;
}
.showcase__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.9s var(--ease);
  filter: brightness(0.72) contrast(1.05) saturate(0.8);
  display: block;
}
.showcase__item:hover img { transform: scale(1.05); }
.showcase__item-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, transparent 40%, rgba(9,7,10,0.65) 100%);
  pointer-events: none;
}

.showcase__caption {
  text-align: center;
  padding: 2.25rem 2rem;
  border-top: 1px solid var(--border);
}
.showcase__caption-text {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.showcase__caption-text span {
  color: var(--gold-dim);
  margin: 0 0.75rem;
}

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

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}
@media (max-width: 900px) { .services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px)  { .services__grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--bg-alt);
  padding: 3rem 2.5rem;
  transition: background var(--transition);
  position: relative;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.5s var(--ease);
}
.service-card:hover { background: var(--bg-card); }
.service-card:hover::before { width: 100%; }

.service-card__icon {
  width: 36px;
  height: 36px;
  margin-bottom: 1.75rem;
}
.service-card__icon svg {
  width: 100%; height: 100%;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--text);
  margin-bottom: 0.8rem;
}
.service-card__text { font-size: 0.87rem; line-height: 1.85; }

/* ============================================================
   WHY THEA
   ============================================================ */
.why { background: var(--bg); }

.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}
@media (max-width: 768px) { .why__grid { grid-template-columns: 1fr; gap: 3rem; } }

.why-item { text-align: center; }
.why-item__number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  color: var(--gold-dim);
  margin-bottom: 1.4rem;
}
.why-item__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--text);
  letter-spacing: 0.04em;
}
.why-item__text { font-size: 0.88rem; line-height: 1.9; }

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

.how__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
}
@media (max-width: 768px) { .how__steps { grid-template-columns: 1fr; } }

.how__step {
  padding: 3.5rem 2.5rem;
  text-align: center;
  border-right: 1px solid var(--border);
}
.how__step:last-child { border-right: none; }
@media (max-width: 768px) {
  .how__step { border-right: none; border-bottom: 1px solid var(--border); }
  .how__step:last-child { border-bottom: none; }
}

.how__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5.5rem;
  font-weight: 300;
  line-height: 1;
  color: rgba(201, 169, 110, 0.1);
  margin-bottom: 0.75rem;
  display: block;
}
.how__step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.9rem;
  color: var(--text);
}
.how__step-text { font-size: 0.87rem; line-height: 1.9; }

/* ============================================================
   PRIVACY SECTION
   ============================================================ */
.privacy-banner {
  background: var(--bg);
  padding: 140px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Optional background photo */
.privacy-banner__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.privacy-banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.35) contrast(1.1) saturate(0.6);
}
.privacy-banner__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(9,7,10,0.55);
}

.privacy-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse 75% 80% at 50% 50%, rgba(201,169,110,0.05) 0%, transparent 62%);
  pointer-events: none;
}
.privacy-banner__inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 2rem;
}
.privacy-banner__title {
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  margin-bottom: 1.6rem;
  font-weight: 300;
  letter-spacing: 0.04em;
}
.privacy-banner__text {
  font-size: 1rem;
  line-height: 2.05;
  margin-bottom: 2.75rem;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-section {
  padding: 110px 0;
  background: var(--bg-alt);
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-section .container { max-width: 660px; }
.cta-section h2  { margin-bottom: 1.1rem; }
.cta-section p   { font-size: 0.95rem; margin-bottom: 2.75rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg);
  padding: 75px 0 40px;
  border-top: 1px solid var(--border);
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3.5rem;
  padding-bottom: 55px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 35px;
}
@media (max-width: 768px) { .footer__top { grid-template-columns: 1fr; gap: 2.5rem; } }

.footer__logo { margin-bottom: 1.4rem; }
.footer__logo img { height: 60px; width: auto; }
.footer__brand-text {
  font-size: 0.83rem;
  line-height: 1.95;
  color: var(--text-muted);
  max-width: 270px;
}
.footer__heading {
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.6rem;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.footer__links a {
  font-size: 0.84rem;
  color: var(--text-muted);
  transition: color var(--transition);
  letter-spacing: 0.04em;
}
.footer__links a:hover { color: var(--gold); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__copy {
  font-size: 0.74rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}
.footer__legal { display: flex; gap: 1.5rem; }
.footer__legal a {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  transition: color var(--transition);
}
.footer__legal a:hover { color: var(--gold); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  min-height: 72vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 5rem) 2rem 5rem;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

/* Photo background layer */
.page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: brightness(0.3) contrast(1.1) saturate(0.65);
}
.page-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(201,169,110,0.06) 0%, transparent 65%),
    linear-gradient(to bottom, rgba(9,7,10,0.45) 0%, rgba(9,7,10,0.65) 100%);
}

.page-hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.page-hero__title { margin-bottom: 1.3rem; }
.page-hero__sub {
  font-size: 0.98rem;
  line-height: 1.95;
  max-width: 540px;
  margin: 0 auto;
}

/* ---- Photo divider (full-width atmospheric strip) ---- */
.photo-divider {
  height: 420px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) { .photo-divider { height: 280px; } }

.photo-divider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  filter: brightness(0.55) contrast(1.08) saturate(0.75);
  display: block;
  transition: transform 12s linear;
}
.photo-divider:hover img { transform: scale(1.03); }
.photo-divider__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, var(--bg-alt) 0%, transparent 20%, transparent 80%, var(--bg) 100%);
}

/* ---- About story photo (replaces logo column) ---- */
.about-story__photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  max-width: 380px;
  justify-self: center;
}
.about-story__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.78) contrast(1.06) saturate(0.82);
  display: block;
  transition: transform 0.9s var(--ease);
}
.about-story__photo:hover img { transform: scale(1.04); }
.about-story__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 70%, rgba(9,7,10,0.4) 100%);
  pointer-events: none;
}
/* thin gold top border accent */
.about-story__photo::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  z-index: 1;
}

@media (max-width: 768px) { .about-story__photo { max-width: 100%; aspect-ratio: 4 / 3; } }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-story { background: var(--bg-alt); }
.about-story__inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 6rem;
  align-items: center;
}
@media (max-width: 768px) { .about-story__inner { grid-template-columns: 1fr; gap: 3rem; } }

.about-story__logo {
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-story__logo img {
  width: min(220px, 80%);
  height: auto;
}
.about-story__text h2   { margin-bottom: 1.5rem; }
.about-story__text p    { margin-bottom: 1.35rem; line-height: 2.05; font-size: 0.93rem; }
.about-story__text p:last-child { margin-bottom: 0; }

.values { background: var(--bg); }
.values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}
@media (max-width: 900px) { .values__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .values__grid { grid-template-columns: 1fr; } }

.value-card {
  background: var(--bg);
  padding: 3rem 2rem;
  text-align: center;
  transition: background var(--transition);
}
.value-card:hover { background: var(--bg-card); }
.value-card__icon {
  width: 32px; height: 32px;
  margin: 0 auto 1.5rem;
}
.value-card__icon svg {
  width: 100%; height: 100%;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.value-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  color: var(--text);
  margin-bottom: 0.8rem;
  letter-spacing: 0.05em;
}
.value-card__text { font-size: 0.86rem; line-height: 1.85; }

/* ============================================================
   APPLY PAGE
   ============================================================ */
.apply-form-section { background: var(--bg-alt); }

.form-wrapper { max-width: 700px; margin: 0 auto; }
.form-intro { text-align: center; margin-bottom: 4rem; }
.form-intro h2 { margin-bottom: 1.1rem; }
.form-intro p  { font-size: 0.93rem; line-height: 1.95; }

.form { display: flex; flex-direction: column; gap: 1.6rem; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
}
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

.field { display: flex; flex-direction: column; gap: 0.55rem; }
.field label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.field input,
.field select,
.field textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 300;
  padding: 1rem 1.25rem;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23877869' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.25rem center;
  padding-right: 3rem;
  cursor: pointer;
}
.field select option { background: var(--bg-card); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold-dim);
  box-shadow: 0 0 0 1px rgba(201,169,110,0.12);
}
.field input::placeholder,
.field textarea::placeholder { color: var(--text-muted); opacity: 0.45; }
.field textarea { min-height: 140px; resize: vertical; }

.field--check {
  flex-direction: row;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  border: 1px solid var(--border);
  background: var(--bg);
  cursor: pointer;
  transition: border-color var(--transition);
}
.field--check:hover { border-color: var(--gold-dim); }
.field--check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  min-width: 16px;
  border: 1px solid var(--gold-dim);
  background: transparent;
  cursor: pointer;
  padding: 0;
  margin-top: 1px;
  accent-color: var(--gold);
}
.field--check label {
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  text-transform: none;
  font-weight: 300;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1.7;
}

.form-divider {
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-dim);
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
}
.form-submit { text-align: center; padding-top: 0.5rem; }
.form-submit .btn { min-width: 240px; }

.form-success {
  display: none;
  text-align: center;
  padding: 4rem 2.5rem;
  border: 1px solid var(--border);
  background: var(--bg-card);
}
.form-success.visible { display: block; }
.form-success .gold-line { margin: 1rem auto 1.75rem; }
.form-success h3 {
  font-size: 2rem;
  margin-bottom: 0.85rem;
  color: var(--gold);
}
.form-success p { font-size: 0.9rem; }

.form-field-error {
  font-size: 0.72rem;
  color: #c87e6e;
  letter-spacing: 0.06em;
  line-height: 1.5;
  min-height: 1em;
}
.form-field-error:not(:empty) { margin-top: -0.2rem; }

.form-global-error {
  text-align: center;
  font-size: 0.8rem;
  color: #c87e6e;
  padding: 0.8rem 1.25rem;
  border: 1px solid rgba(200, 126, 110, 0.25);
  background: rgba(200, 126, 110, 0.05);
}
.form-global-error:empty { display: none; }

/* What happens next */
.next-steps { background: var(--bg); }
.next-steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}
@media (max-width: 768px) { .next-steps__grid { grid-template-columns: 1fr; } }

.next-step {
  background: var(--bg);
  text-align: center;
  padding: 3rem 2.25rem;
  transition: background var(--transition);
}
.next-step:hover { background: var(--bg-card); }
.next-step__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  line-height: 1;
  color: rgba(201,169,110,0.15);
  margin-bottom: 0.75rem;
  display: block;
}
.next-step__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--text);
  margin-bottom: 0.6rem;
  letter-spacing: 0.04em;
}
.next-step__text { font-size: 0.86rem; line-height: 1.85; }

/* ============================================================
   FAQ PAGE
   ============================================================ */
.faq-section { background: var(--bg-alt); }
.faq-grid { max-width: 820px; margin: 0 auto; }

.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.65rem 0;
  text-align: left;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--text);
  gap: 1.5rem;
  cursor: pointer;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--gold); }

.faq-icon {
  width: 22px; height: 22px;
  min-width: 22px;
  position: relative;
  border: 1px solid var(--gold-dim);
  border-radius: 50%;
  transition: border-color 0.3s, background 0.3s;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--gold-dim);
  transition: all 0.35s;
}
.faq-icon::before { width: 9px; height: 1px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.faq-icon::after  { width: 1px; height: 9px; top: 50%; left: 50%; transform: translate(-50%, -50%); }

.faq-item.open .faq-icon { border-color: var(--gold); background: rgba(201,169,110,0.08); }
.faq-item.open .faq-icon::before,
.faq-item.open .faq-icon::after { background: var(--gold); }
.faq-item.open .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-item.open .faq-question { color: var(--gold); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease);
}
.faq-answer.open { max-height: 350px; }
.faq-answer p {
  font-size: 0.9rem;
  line-height: 1.95;
  padding-bottom: 1.75rem;
  max-width: 680px;
}

/* ---- Contact ---- */
.contact-section { background: var(--bg); }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-item {
  text-align: center;
  padding: 3rem 2rem;
  border: 1px solid var(--border);
  transition: border-color var(--transition), background var(--transition);
}
.contact-item:hover { border-color: var(--gold-dim); background: var(--bg-card); }
.contact-item__icon { margin: 0 auto 1.5rem; width: 36px; height: 36px; }
.contact-item__icon svg {
  width: 100%; height: 100%;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-item__label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
  display: block;
}
.contact-item__value {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in--d1 { transition-delay: 0.08s; }
.fade-in--d2 { transition-delay: 0.18s; }
.fade-in--d3 { transition-delay: 0.28s; }
.fade-in--d4 { transition-delay: 0.38s; }
.fade-in--d5 { transition-delay: 0.48s; }
.fade-in--d6 { transition-delay: 0.58s; }
