*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink: #0e0d0b;
  --paper: #f5f2ed;
  --cream: #ede9e2;
  --gold: #b8913a;
  --gold-light: #d4aa5a;
  --muted: #6b6560;
  --rule: #d0c9be;
}

html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* ========== NAV ========== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(245,242,237,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
}

.nav-inner {
  display: flex;
  align-items: center;
  height: 64px;
  padding: 0 3rem;
}

/* Logo anchored left, immediately before the nav links */
.logo-zone {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
  margin-right: 2.5rem;
  text-decoration: none;
}

.logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
}

/* Nav links flow right from logo */
.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
  flex: 1;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1a1916;
  font-weight: 500;
  transition: color 0.25s;
  white-space: nowrap;
  line-height: 32px;
}

.nav-links a:hover { color: var(--gold); }

/* CTA pinned to far right */
.nav-cta {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.5rem 1.4rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  transition: all 0.25s;
  white-space: nowrap;
  flex-shrink: 0;
  font-weight: 500;
}

.nav-cta:hover { background: var(--gold); color: var(--paper); }

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 64px;
  overflow: hidden;
}

.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 6rem 5rem 6rem 6rem;
}

.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  display: flex; align-items: center; gap: 1rem;
  opacity: 0; animation: fadeUp 0.7s ease 0.2s forwards;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 40px; height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.2rem, 5.5vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 2rem;
  opacity: 0; animation: fadeUp 0.7s ease 0.35s forwards;
}

.hero h1 em { font-style: italic; color: var(--gold); }

.hero-desc {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 38ch;
  margin-bottom: 3rem;
  opacity: 0; animation: fadeUp 0.7s ease 0.5s forwards;
}

.hero-actions {
  display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.7s ease 0.65s forwards;
}

/*.hero-right {
  position: relative;
  overflow: hidden;
}*/

.hero-centered {
  grid-template-columns: 1fr;
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-centered .hero-left {
  padding: 6rem 2rem;
  align-items: center;
  text-align: center;
  max-width: 720px;
}

.hero-centered .hero-eyebrow {
  justify-content: center;
}

.hero-centered .hero-desc {
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
}

.hero-centered .hero-actions {
  justify-content: center;
}

.hero-image-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  image-rendering: -webkit-optimize-contrast;
}

/* Dark gradient at bottom so badge is readable */
.hero-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,13,11,0.6) 0%, rgba(14,13,11,0.1) 45%, transparent 70%);
  pointer-events: none;
}

/* Badge overlaid bottom-left */
.hero-years-badge {
  position: absolute;
  right: 2.5rem;
  bottom: 2.5rem;
  left: auto;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  gap: 1rem;
  background: rgba(14,13,11,0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(184,145,58,0.45);
  padding: 1rem 1.6rem 1rem;
}

.hero-years-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.8rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
}

.hero-years-num sup {
  font-size: 1.5rem;
  vertical-align: super;
  line-height: 0;
}

.hero-years-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding-bottom: 0.35rem;
}

.hero-years-text strong {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--paper);
}

.hero-years-text span {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,242,237,0.5);
}

.btn-primary {
  padding: 0.9rem 2.2rem;
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: background 0.25s;
}

.btn-primary:hover { background: var(--gold); }

.btn-ghost {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.25s;
}

.btn-ghost:hover { color: var(--gold); border-color: var(--gold); }

.btn-outline-dark {
  padding: 0.9rem 2.2rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.25s;
  white-space: nowrap;
}

.btn-outline-dark:hover {
  background: var(--gold);
  color: var(--paper);
}

.hero-right {
  background: var(--cream);
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
/* ========== LEGAL PAGES (terms & privacy) ========== */

.sec-num {
  font-size: 0.95rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-right: 0.4rem;
  vertical-align: middle;
}

.legal-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--paper);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.legal-hero h1 em { font-style: italic; color: var(--gold-light); }

.legal-meta {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: rgba(245,242,237,0.35);
  text-transform: uppercase;
}

.legal-firm-info {
  font-size: 0.9rem;
  line-height: 1.9;
  color: var(--muted);
  border: 1px solid var(--rule);
  border-left: 3px solid var(--gold);
  padding: 1.5rem 2rem;
  margin-bottom: 3rem;
}

.legal-firm-info strong {
  font-weight: 600;
  color: var(--ink);
}

.legal-note strong {
  font-weight: 600;
  color: var(--gold);
}

.legal-firm-info a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(184,145,58,0.3);
  transition: border-color 0.2s;
}

.legal-firm-info a:hover { border-color: var(--gold); }

.legal-body {
  max-width: 1000px;
  margin: 0 auto;
  padding: 6rem 2rem 8rem;
}

.legal-body p strong{
  font-weight: 590;
  color: var(--ink);
}

.legal-body h2 .sec-num,
.legal-body h2 {
  font-size: 1.3rem;
}

.legal-body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--ink);
  margin: 3rem 0 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--rule);
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 3rem;
  transition: color 0.2s;
}

.legal-back::before { content: '←'; font-size: 1rem; }
.legal-back:hover { color: var(--gold); }

.legal-note {
  background: var(--cream);
  border-left: 3px solid var(--gold);
  padding: 1.2rem 1.5rem;
  margin-bottom: 3rem;
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--muted);
}

.legal-body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--ink);
  margin: 3rem 0 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--rule);
}

.legal-body h2:first-of-type { margin-top: 0; }

.legal-body h3 strong{
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 1000;
  color: var(--ink);
  margin: 2rem 0 0.75rem;
}
.legal-body h3{
  font-weight: 580;
}
.legal-body p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 1.2rem;
}

.legal-body ul {
  margin: 0 0 1.2rem 1.5rem;
}

.legal-body ul li {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.legal-body ul li strong{
  font-weight: 580;
  color: var(--ink);
}

.legal-body a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(184,145,58,0.3);
  transition: border-color 0.2s;
}

.legal-body a:hover { border-color: var(--gold); }

@media (max-width: 900px) {
  .legal-hero-inner { padding: 4rem 2rem 3rem; }
  .legal-body { padding: 4rem 2rem 6rem; }
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0 2rem;
  font-size: 0.9rem;
}

.data-table th {
  background: var(--ink);
  color: var(--paper);
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 500;
  letter-spacing: 0.05em;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.data-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--rule);
  color: var(--muted);
  line-height: 1.6;
}

.data-table tr:last-child td { border-bottom: none; }
.data-table tr:nth-child(even) td { background: var(--cream); }

/* ========== ABOUT PAGE ========== */

.about-page-hero-inner h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--paper);
  line-height: 1.1;
}

.about-page-hero-inner h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.about-page-body {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 6rem;
  align-items: start;
  padding: 8rem 6rem;
  border-top: 1px solid var(--rule);
}

.about-page-left h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(4rem, 3.5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 3rem;
}

.about-page-left h2 em { font-style: italic; color: var(--gold); }

.about-page-right p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.about-page-right p:last-child { margin-bottom: 0; }

@media (max-width: 900px) {
  .about-page-hero-inner { padding: 4rem 2rem 3rem; }
  .about-page-body { grid-template-columns: 1fr; gap: 3rem; padding: 4rem 2rem; }
}

.hero-graphic { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.geo-bg { position: absolute; inset: 0; background: linear-gradient(135deg, #ede9e2 0%, #e2dbd0 100%); }
.geo-circle-1 { position: absolute; width: 480px; height: 480px; border-radius: 50%; border: 1px solid rgba(184,145,58,0.25); top: 50%; left: 50%; transform: translate(-50%,-50%); animation: rotate 30s linear infinite; }
.geo-circle-2 { position: absolute; width: 360px; height: 360px; border-radius: 50%; border: 1px solid rgba(184,145,58,0.4); top: 50%; left: 50%; transform: translate(-50%,-50%); animation: rotate 20s linear infinite reverse; }
.geo-circle-3 { position: absolute; width: 220px; height: 220px; border-radius: 50%; background: rgba(184,145,58,0.08); border: 1px solid rgba(184,145,58,0.5); top: 50%; left: 50%; transform: translate(-50%,-50%); }
.geo-line-h { position: absolute; height: 1px; width: 100%; top: 50%; background: rgba(184,145,58,0.2); }
.geo-line-v { position: absolute; width: 1px; height: 100%; left: 50%; background: rgba(184,145,58,0.2); }
.geo-corner { position: absolute; width: 60px; height: 60px; border-color: rgba(184,145,58,0.5); border-style: solid; }
.geo-corner.tl { top: 2rem; left: 2rem; border-width: 1px 0 0 1px; }
.geo-corner.tr { top: 2rem; right: 2rem; border-width: 1px 1px 0 0; }
.geo-corner.bl { bottom: 2rem; left: 2rem; border-width: 0 0 1px 1px; }
.geo-corner.br { bottom: 2rem; right: 2rem; border-width: 0 1px 1px 0; }

.hero-stat-stack { position: relative; z-index: 2; text-align: center; }
.hero-stat { font-family: 'Cormorant Garamond', serif; font-size: 4.5rem; font-weight: 300; color: var(--ink); line-height: 1; }
.hero-stat-label { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }

@keyframes rotate {
  from { transform: translate(-50%,-50%) rotate(0deg); }
  to   { transform: translate(-50%,-50%) rotate(360deg); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ========== MARQUEE ========== */
.marquee-bar { background: var(--ink); padding: 0.85rem 0; overflow: hidden; white-space: nowrap; }
.marquee-track { display: inline-block; animation: marquee 28s linear infinite; }
.marquee-track span { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--paper); opacity: 0.7; margin-right: 4rem; }
.marquee-track span.dot { color: var(--gold); opacity: 1; margin-right: 4rem; font-size: 1rem; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ========== SHARED ========== */
section { padding: 8rem 6rem; }

.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

/* ========== ABOUT ========== */
.about { display: grid; grid-template-columns: 1fr 1.5fr; gap: 6rem; align-items: center; border-top: 1px solid var(--rule); }
.about-left h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.2rem, 3.5vw, 3.2rem); font-weight: 300; line-height: 1.2; color: var(--ink); }
.about-left h2 em { font-style: italic; color: var(--gold); }
.about-right p { font-size: 1rem; line-height: 1.9; color: var(--muted); margin-bottom: 1.5rem; }
.about-right p:last-child { margin-bottom: 0; }
.about-numbers { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3rem; padding-top: 2.5rem; border-top: 1px solid var(--rule); }
.about-num { display: flex; flex-direction: column; gap: 0.3rem; }
.about-num-val { font-family: 'Cormorant Garamond', serif; font-size: 4rem; font-weight: 300; color: var(--ink); line-height: 1; }
.about-num-val span { color: var(--gold); }
.about-num-label { font-size: 1.1rem; letter-spacing: 0.1em; color: var(--muted); text-transform: uppercase; }

/* ========== SERVICES ========== */
.services { background: var(--ink); padding: 8rem 6rem; }
.services-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 5rem; }
.services-header .section-label { color: var(--gold-light); }
.services-header h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.5rem, 4vw, 3.5rem); font-weight: 300; color: var(--paper); line-height: 1.15; }
.services-header h2 em { font-style: italic; color: var(--gold-light); }
.services-header p { max-width: 36ch; font-size: 0.95rem; line-height: 1.8; color: rgba(245,242,237,0.5); text-align: right; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid rgba(255,255,255,0.1); }
.service-card { padding: 3rem 2.5rem; border-right: 1px solid rgba(255,255,255,0.1); border-bottom: 1px solid rgba(255,255,255,0.1); transition: background 0.35s; position: relative; overflow: hidden; }
.service-card:nth-child(3n) { border-right: none; }
.service-card:nth-last-child(-n+3) { border-bottom: none; }
.service-card::before { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--gold); transition: width 0.4s ease; }
.service-card:hover::before { width: 100%; }
.service-card:hover { background: rgba(184,145,58,0.05); }
.service-num { font-family: 'Cormorant Garamond', serif; font-size: 0.9rem; color: var(--gold); margin-bottom: 1.5rem; letter-spacing: 0.1em; }
.service-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 400; color: var(--paper); margin-bottom: 1rem; line-height: 1.2; }
.service-card p { font-size: 0.88rem; line-height: 1.8; color: rgba(245,242,237,0.5); }

/* ========== CLIENT FIT ========== */
.fit { border-top: 1px solid var(--rule); }
.fit-header { text-align: center; margin-bottom: 5rem; }
.fit-header h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.5rem, 4vw, 3.5rem); font-weight: 560; line-height: 1.15; margin-bottom: 1rem; }
.fit-header h2 em { font-style: italic; color: var(--gold); }
.fit-header p { max-width: 65ch; margin: 0 auto; font-size: 1rem; line-height: 1.8; color: var(--muted); }
.fit-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; background: var(--rule); border: 1px solid var(--rule); max-width: 900px; margin: 0 auto; }
.fit-card { background: var(--paper); padding: 3rem; display: flex; flex-direction: column; gap: 0.8rem; transition: background 0.3s; }
.fit-card:hover { background: var(--cream); }
.fit-icon { width: 36px; height: 36px; border: 1px solid var(--gold); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 1rem; margin-bottom: 0.5rem; }
.fit-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 700; color: var(--ink); }
.fit-card p { font-size: 0.95rem; line-height: 1.8; color: var(--muted); }
.fit-note { max-width: 900px; margin: 3rem auto 0; padding: 2rem; border: 1px solid var(--rule); display: flex; gap: 1.5rem; align-items: flex-start; }
.fit-note-label { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); white-space: nowrap; padding-top: 0.2rem; }
.fit-note p { font-size: 0.9rem; line-height: 1.8; color: var(--muted); }

/* ========== PROCESS ========== */
.process { background: var(--cream); border-top: 1px solid var(--rule); }
.process-label { text-align: center; margin-bottom: 1rem; }
.process h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 300; margin-bottom: 4rem; text-align: center; line-height: 1.15; }
.process h2 em { font-style: italic; color: var(--gold); }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); position: relative; }
.process-steps::before { content: ''; position: absolute; top: 1.75rem; left: 2rem; right: 2rem; height: 1px; background: var(--gold); opacity: 0.3; z-index: 0; }
.process-step { padding: 0 2rem; position: relative; }
.step-dot { width: 3.5rem; height: 3.5rem; border-radius: 50%; border: 1px solid var(--gold); background: var(--cream); display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--gold); margin-bottom: 1.5rem; position: relative; z-index: 1; }
.process-step h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 560; color: var(--ink); margin-bottom: 0.6rem; }
.process-step p { font-size: .95rem; line-height: 1.8; color: var(--muted); }

/* ========== CTA ========== */
.cta { background: var(--ink); text-align: center; padding: 9rem 6rem; position: relative; overflow: hidden; }
.cta::before { content: ''; position: absolute; top: -200px; left: 50%; transform: translateX(-50%); width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(184,145,58,0.12) 0%, transparent 70%); pointer-events: none; }
.cta .section-label { color: var(--gold-light); margin-bottom: 2rem; }
.cta h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.8rem, 5vw, 4.5rem); font-weight: 300; color: var(--paper); line-height: 1.15; margin-bottom: 1.5rem; position: relative; }
.cta h2 em { font-style: italic; color: var(--gold-light); }
.cta p { font-size: 1rem; line-height: 1.8; color: rgba(245,242,237,0.5); max-width: 50ch; margin: 0 auto 3rem; position: relative; }
.cta-actions { display: flex; justify-content: center; gap: 1.5rem; position: relative; }
.btn-gold { padding: 1rem 2.5rem; background: var(--gold); color: var(--ink); text-decoration: none; font-size: 0.82rem; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 500; transition: background 0.25s; }
.btn-gold:hover { background: var(--gold-light); }
.btn-outline-light { padding: 1rem 2.5rem; border: 1px solid rgba(245,242,237,0.3); color: var(--paper); text-decoration: none; font-size: 0.82rem; letter-spacing: 0.15em; text-transform: uppercase; transition: all 0.25s; }
.btn-outline-light:hover { border-color: var(--paper); }

/* ========== FOOTER ========== */
footer {
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 3rem 6rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  position: relative;
}

.footer-logo { 
  font-family: 'Cormorant Garamond', serif; 
  font-size: 1.1rem; 
  letter-spacing: 0.15em; 
  text-transform: uppercase; 
  color: rgba(245,242,237,0.4); 
}

footer p {
  font-size: 0.78rem;
  color: rgba(245,242,237,0.3);
  letter-spacing: 0.08em;
  justify-self: start;
}

footer .footer-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  justify-self: center;
  position: static;
  transform: none;
  left: auto;
  flex-wrap: wrap;
  justify-content: center;
}

footer .footer-links a { 
  font-size: 0.75rem; 
  letter-spacing: 0.1em; 
  text-transform: uppercase; 
  color: rgba(245,242,237,0.35); 
  text-decoration: none; 
  transition: color 0.2s;
}
footer .footer-links a:hover { color: var(--gold-light); }

.footer-address {
  justify-self: end;
  text-align: right;
  font-size: 0.75rem;
  line-height: 1.8;
  color: rgba(245,242,237,0.3);
  letter-spacing: 0.05em;
}

.footer-address strong {
  color: rgba(245,242,237,0.5);
  font-weight: 500;
}

.footer-address a {
  color: rgba(245,242,237,0.3);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-address a:hover { color: var(--gold-light); }

/* ========== SCROLL REVEAL ========== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .nav-inner { padding: 0 1.5rem; }
  .nav-links, .nav-cta { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { padding: 4rem 2rem; }
  section { padding: 5rem 2rem; }
  .about { grid-template-columns: 1fr; gap: 3rem; }
  .services { padding: 5rem 2rem; }
  .services-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .services-header p { text-align: left; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { border-right: none !important; }
  .fit-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .process-steps::before { display: none; }
  .cta { padding: 5rem 2rem; }
  footer { flex-direction: column; gap: 1.5rem; text-align: center; padding: 2.5rem 2rem; }
}

/* ========== NAV DROPDOWN ========== */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
}

.nav-chevron {
  font-size: 0.75rem;
  line-height: 1;
  margin-top: 1px;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 0;
  min-width: 190px;
  background: rgba(245,242,237,0.98);
  backdrop-filter: blur(12px);
  border: 1px solid var(--rule);
  list-style: none;
  padding: 0.4rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 200;
}

.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 1.2rem;
  width: 8px;
  height: 8px;
  background: var(--paper);
  border-left: 1px solid var(--rule);
  border-top: 1px solid var(--rule);
  transform: rotate(45deg);
}

.nav-dropdown-menu li a {
  display: block;
  padding: 0.65rem 1.2rem;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1a1916;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
  line-height: normal;
}

.nav-dropdown-menu li a:hover {
  color: var(--gold);
  background: var(--cream);
}

/* Show dropdown on hover */
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ========== SHARED PAGE HEADER (used by about, terms, privacy) ========== */
.page-hero {
  padding-top: 64px;
  background: var(--ink);
  opacity: 0;
  animation: fadeUp 0.7s ease 0.2s forwards;
}

.page-hero-inner {
  padding: 5rem 6rem 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.page-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.2s forwards;
}

.page-eyebrow::before {
  content: '';
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.page-hero-inner h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.2rem, 5.5vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--paper);
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.35s forwards;
}

.page-hero-inner h1 em { font-style: italic; color: var(--gold-light); }

.page-meta {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: rgba(245,242,237,0.35);
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.5s forwards;
}

.page-body {
  padding: 8rem 6rem;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.5s forwards;
}

.page-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 3rem;
  transition: color 0.2s;
}

.page-back::before { content: '←'; font-size: 1rem; }
.page-back:hover { color: var(--gold); }

@media (max-width: 900px) {
  .page-hero-inner { padding: 4rem 2rem 3rem; }
  .page-body { padding: 4rem 2rem 6rem; }
}
