/* ── RESET & ROOT ────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:        #161616;
  --gold:        #C8A558;
  --gold-lt:     #DDB96A;
  --off-white:   #F4F1EC;
  --mid-grey:    #6B7280;
  --light-rule:  #E2DDD4;
  --header-grey: #111111;
  --body-text:   #2D3748;
  --body-light:  #4A5568;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--off-white);
  color: var(--body-text);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

/* ── SCROLL REVEAL ───────────────────────────────── */
/* Elements start hidden; JS adds .is-visible to trigger the transition */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* Staggered children inside a reveal parent */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-stagger.is-visible > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.25s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.35s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.45s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.55s; }
/* Slide from left / right variants */
.reveal-left  { opacity: 0; transform: translateX(-40px); transition: opacity 0.75s ease, transform 0.75s ease; }
.reveal-right { opacity: 0; transform: translateX( 40px); transition: opacity 0.75s ease, transform 0.75s ease; }
.reveal-left.is-visible,
.reveal-right.is-visible { opacity: 1; transform: translateX(0); }

/* ── NAV ─────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  height: 72px;
  background: var(--header-grey);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 1px 12px rgba(0,0,0,0.06);
  transition: box-shadow 0.3s;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; font-weight: 600; letter-spacing: 0.04em;
  color: white; text-decoration: none;
  display: flex; align-items: center; gap: 4px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo span { color: var(--gold-lt); }
.nav-m-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem; font-weight: 600; color: #fff;
  line-height: 1;
  border: 1.5px solid #fff;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: #fff; line-height: 1.2;
}
.nav-logo-text span { display: block; color: var(--gold-lt); font-size: 0.65rem; letter-spacing: 0.22em; font-weight: 400; }
.nav-links { display: flex; gap: 2.2rem; list-style: none; }
.nav-links a { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255, 255, 255, 0.7); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: var(--gold); }
.nav-links a.nav-gold { color: white; }
.nav-links a.nav-gold:hover { color: var(--gold); }
.nav-cta {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: #fff;
  background: var(--navy); border: none; padding: 10px 22px;
  cursor: pointer; text-decoration: none; transition: background 0.2s;
}
.nav-cta:hover { background: var(--gold); }

/* ── HERO ─────────────────────────────────────────── */
#home {
  min-height: 100vh;
  background: var(--navy);
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2e2e2e 50%, #1a1a1a 100%);
}
.hero-inner {
  position: relative; z-index: 2;
  flex: 1; display: flex; align-items: center; justify-content: center;
  padding: 60px 8% 40px;
  gap: 30%;
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
}
.hero-text { flex: 1; max-width: 560px; }
.hero-eyebrow {
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.6rem;
  display: flex; align-items: center; gap: 12px;
}
.hero-eyebrow::before {
  content: ''; display: block; width: 32px; height: 1px; background: var(--gold);
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 5.2rem);
  font-weight: 300; line-height: 1.07;
  color: #fff; margin-bottom: 1.8rem;
}
.hero-title em { font-style: italic; color: var(--gold-lt); }
.hero-sub {
  font-size: 1rem; font-weight: 300; line-height: 1.8;
  color: rgba(255,255,255,0.72);
  max-width: 460px; margin-bottom: 2.6rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  background: var(--gold); color: var(--navy);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; padding: 14px 32px;
  text-decoration: none; transition: background 0.2s;
  border: none; cursor: pointer; display: inline-block;
}
.btn-primary:hover { background: var(--gold-lt); }
.btn-ghost {
  background: transparent; color: rgba(255,255,255,0.85);
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; padding: 14px 32px;
  text-decoration: none; border: 1px solid rgba(255,255,255,0.3);
  transition: border-color 0.2s, color 0.2s; display: inline-block;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-lt); }

.hero-image-col {
  flex: 0 0 520px; max-width: 520px;
  position: relative;
}
.hero-photo-frame {
  width: 100%; aspect-ratio: 3/4;
  background: #f0ede8;
  border: 1px solid rgba(200,165,88,0.3);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 12px;
  color: rgba(0,0,0,0.3);
  overflow: hidden;
}
.hero-photo-frame .photo-icon { font-size: 2.5rem; opacity: 0.3; }
.hero-photo-frame .photo-label { opacity: 0.5; font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; }
.hero-photo-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-corner {
  position: absolute; bottom: -16px; left: -16px;
  width: 120px; height: 120px;
  border-left: 2px solid var(--gold); border-bottom: 2px solid var(--gold);
  pointer-events: none;
}
.hero-bar {
  position: relative; z-index: 2;
  background: var(--gold);
  padding: 18px 5%;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.hero-bar-text {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--navy);
}
.hero-bar-phone {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 600; color: var(--navy);
  text-decoration: none;
}

/* ── SECTION BASE ────────────────────────────────── */
section { padding: 96px 5%; }
.section-eyebrow {
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 0.9rem;
  display: flex; align-items: center; gap: 12px;
}
.section-eyebrow::before { content: ''; display: block; width: 24px; height: 1px; background: var(--gold); }
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 300; line-height: 1.15;
  color: var(--navy); margin-bottom: 3.5rem;
}

/* ── SERVICES ────────────────────────────────────── */
#services { background: var(--navy); }
#services .section-title { color: #fff; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  justify-content: center;
  gap: 1px;
  background: rgba(184,146,58,0.2);
  border: 1px solid rgba(184,146,58,0.2);
}
.service-card {
  background: var(--navy);
  padding: 2.4rem;
  text-decoration: none;
  display: block;
  border-bottom: 3px solid transparent;
  transition: border-color 0.25s, background 0.25s;
}
.service-card:hover {
  background: rgba(255,255,255,0.04);
  border-bottom-color: var(--gold);
}
.service-number {
  font-size: 0.62rem; font-weight: 500; letter-spacing: 0.2em;
  color: var(--gold); margin-bottom: 1.4rem; display: block;
}
.service-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.65rem; font-weight: 400; color: #fff;
  margin-bottom: 0.9rem; line-height: 1.2;
}
.service-desc {
  font-size: 0.88rem; font-weight: 400; line-height: 1.75;
  color: rgba(255,255,255,0.62);
  margin-bottom: 1.8rem;
}
.service-link {
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 8px;
}
.service-link::after { content: '→'; transition: transform 0.2s; }
.service-card:hover .service-link::after { transform: translateX(4px); }

/* ── ABOUT ───────────────────────────────────────── */
#about { background: var(--off-white); }
.about-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8%;
  align-items: center;
}
.about-image-wrap { position: relative; }
.about-photo {
  width: 100%; aspect-ratio: 4/5;
  background: #ddd;
  border: 1px solid var(--light-rule);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 12px;
  color: rgba(0,0,0,0.25); overflow: hidden;
}
.about-photo .photo-icon { font-size: 2.5rem; opacity: 0.2; }
.about-photo .photo-label { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; opacity: 0.4; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-accent {
  position: absolute; top: -20px; right: -20px;
  width: 100px; height: 100px;
  border-top: 2px solid var(--gold); border-right: 2px solid var(--gold);
  pointer-events: none;
}
.about-text .section-title { margin-bottom: 1.4rem; }
.about-body {
  font-size: 0.97rem; font-weight: 400; line-height: 1.9;
  color: var(--body-text); margin-bottom: 1.3rem;
}
.about-rule { width: 40px; height: 2px; background: var(--gold); margin: 2rem 0; }
.about-tags { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 2rem; }
.about-tag {
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 6px 14px;
  border: 1px solid var(--light-rule); color: var(--mid-grey);
}

/* ── FOUNDER SPOTLIGHT ───────────────────────────── */
#team { background: #fff; }
.founder-wrap {
  display: grid; grid-template-columns: 380px 1fr; gap: 7%;
  align-items: start;
}
.founder-photo-wrap { position: relative; }
.founder-photo {
  width: 100%; aspect-ratio: 3/4;
  background: #e8e8e8;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 10px;
  color: rgba(0,0,0,0.2); overflow: hidden;
  border: 1px solid var(--light-rule);
}
.founder-photo .photo-icon { font-size: 2.5rem; opacity: 0.2; }
.founder-photo .photo-label { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; opacity: 0.35; }
.founder-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
.founder-photo-accent {
  position: absolute; bottom: -16px; right: -16px;
  width: 90px; height: 90px;
  border-right: 2px solid var(--gold); border-bottom: 2px solid var(--gold);
  pointer-events: none;
}
.founder-info { padding-top: 0.5rem; }
.founder-eyebrow {
  font-size: 0.65rem; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 0.6rem;
  display: flex; align-items: center; gap: 10px;
}
.founder-eyebrow::before { content: ''; display: block; width: 20px; height: 1px; background: var(--gold); }
.founder-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 300; line-height: 1.1;
  color: var(--navy); margin-bottom: 0.4rem;
}
.founder-title {
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--mid-grey);
  margin-bottom: 2rem;
}
.founder-rule { width: 40px; height: 2px; background: var(--gold); margin-bottom: 2rem; }
.founder-bio {
  font-size: 0.97rem; font-weight: 400; line-height: 1.9;
  color: var(--body-text); margin-bottom: 1.2rem;
}
.founder-credentials {
  margin-top: 2.4rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.credential {
  padding: 1.2rem 1.4rem;
  border: 1px solid var(--light-rule);
  border-top: 2px solid var(--gold);
}
.credential-label {
  font-size: 0.62rem; font-weight: 500; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.4rem;
}
.credential-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 400; color: var(--navy);
}
.founder-contact {
  margin-top: 2.4rem; display: flex; gap: 1rem; flex-wrap: wrap;
}

/* ── CONTACT ─────────────────────────────────────── */
#contact { background: var(--navy); }
#contact .section-title { color: #fff; }
.contact-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 8%; align-items: start; }
.contact-info .body-text {
  font-size: 0.97rem; font-weight: 400; line-height: 1.85;
  color: rgba(255,255,255,0.72); margin-bottom: 2.4rem;
}
.contact-detail {
  display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.6rem;
}
.contact-detail-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  border: 1px solid rgba(184,146,58,0.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; color: var(--gold);
}
.contact-detail-text { font-size: 0.92rem; line-height: 1.6; color: rgba(255,255,255,0.75); }
.contact-detail-text a { color: rgba(255,255,255,0.9); text-decoration: none; }
.contact-detail-text a:hover { color: var(--gold-lt); }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label {
  font-size: 0.65rem; font-weight: 500; letter-spacing: 0.15em;
  text-transform: uppercase; color: rgba(255,255,255,0.55);
}
.form-field input, .form-field textarea {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14);
  padding: 12px 16px; color: #fff; font-family: 'Inter', sans-serif;
  font-size: 0.92rem; outline: none; transition: border-color 0.2s;
}
.form-field input:focus, .form-field textarea:focus { border-color: var(--gold); }
.form-field textarea { resize: vertical; min-height: 130px; }
.form-field input::placeholder, .form-field textarea::placeholder { color: rgba(255,255,255,0.28); }

/* ── FOOTER ──────────────────────────────────────── */
footer {
  background: #080f17;
  padding: 28px 5%;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
  border-top: 1px solid rgba(184,146,58,0.2);
}
.footer-copy {
  font-size: 0.78rem; color: rgba(255,255,255,0.38); line-height: 1.7;
}
.footer-links { display: flex; gap: 1.4rem; }
.footer-links a {
  font-size: 0.72rem; color: rgba(255,255,255,0.42);
  text-decoration: none; letter-spacing: 0.08em; transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }

/* ── MOBILE ──────────────────────────────────────── */
.ham { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.ham span { display: block; width: 24px; height: 1.5px; background: rgba(255,255,255,0.7); margin: 5px 0; transition: 0.25s; }

@media (max-width: 960px) {
  .founder-wrap { grid-template-columns: 1fr; }
  .founder-photo-wrap { max-width: 340px; }
  .founder-credentials { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .ham { display: block; }
  .hero-inner { flex-direction: column; padding-top: 100px; }
  .hero-image-col { display: none; }
  .about-inner { grid-template-columns: 1fr; }
  .about-image-wrap { display: none; }
  .contact-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  section { padding: 64px 5%; }
  .founder-credentials { grid-template-columns: 1fr; }
}