:root {
  --navy-900: #0b1f33;
  --navy-800: #0f2a44;
  --navy-700: #16395c;
  --navy-100: #e6ecf3;
  --cream-50:  #fbf8f3;
  --cream-100: #f4eee2;
  --cream-200: #e9e0cc;
  --gold-500:  #c9a961;
  --gold-600:  #b29148;
  --ink-900:   #15202b;
  --ink-700:   #38454f;
  --ink-500:   #5a6772;
  --ink-300:   #97a3ad;
  --line:      rgba(15, 42, 68, 0.12);

  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;

  --shadow-sm: 0 1px 2px rgba(11,31,51,.04), 0 2px 6px rgba(11,31,51,.04);
  --shadow:    0 4px 14px rgba(11,31,51,.06), 0 18px 40px rgba(11,31,51,.07);
  --shadow-lg: 0 12px 24px rgba(11,31,51,.08), 0 28px 60px rgba(11,31,51,.12);

  --font-display: "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
  --font-sans:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-900);
  background: var(--cream-50);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--gold-600); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy-800);
  color: #fff;
  padding: 10px 14px;
  border-radius: 0 0 8px 0;
  z-index: 1000;
}
.skip-link:focus { left: 0; }

/* Typography */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--navy-900);
  line-height: 1.15;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.4rem, 5.2vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.85rem); }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.1rem; }
p  { margin: 0 0 1em; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold-600);
  margin: 0 0 14px;
  font-family: var(--font-sans);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--gold-500);
  color: var(--navy-900);
  box-shadow: 0 6px 16px rgba(201,169,97,.35);
}
.btn-primary:hover { background: var(--gold-600); color: var(--navy-900); }
.btn-ghost {
  background: transparent;
  border-color: rgba(255,255,255,.4);
  color: #fff;
}
.btn-ghost:hover { background: rgba(255,255,255,.08); color: #fff; }
.btn-dark {
  background: var(--navy-800);
  color: var(--cream-50);
}
.btn-dark:hover { background: var(--navy-900); color: var(--cream-50); }
.btn-block { width: 100%; }

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background .25s ease, box-shadow .25s ease, padding .25s ease;
}
.site-header.scrolled {
  background: rgba(251, 248, 243, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  box-shadow: 0 1px 0 var(--line);
  padding: 12px 0;
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}
.site-header.scrolled .brand { color: var(--navy-900); }
.brand-mark {
  width: 52px; height: 52px;
  border-radius: 50%;
  overflow: hidden;
  display: grid; place-items: center;
  background: rgba(255,255,255,.10);
  border: 1.5px solid rgba(255,255,255,.35);
  color: currentColor;
  box-shadow: 0 2px 10px rgba(0,0,0,.18);
  transition: border-color .25s ease, transform .25s ease;
}
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
}
.brand:hover .brand-mark { transform: scale(1.04); }
.site-header.scrolled .brand-mark {
  background: var(--cream-100);
  border-color: var(--gold-500);
  color: var(--navy-800);
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.01em;
}
.brand-sub {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-top: 4px;
}

.primary-nav { display: flex; align-items: center; gap: 28px; }
.primary-nav a {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
}
.site-header.scrolled .primary-nav a { color: var(--ink-700); }
.primary-nav a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 1px;
  background: currentColor; transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.primary-nav a:not(.nav-cta):hover::after { transform: scaleX(1); }
.nav-cta {
  background: var(--gold-500);
  color: var(--navy-900) !important;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  transition: background .2s ease;
}
.nav-cta:hover { background: var(--gold-600); }

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 40px; height: 40px;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block; height: 2px; background: #fff;
  margin: 5px 0; transition: all .25s ease;
}
.site-header.scrolled .nav-toggle span { background: var(--navy-900); }

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--cream-50);
  border-top: 1px solid var(--line);
  padding: 8px 24px 18px;
}
.mobile-nav a {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-900);
}
.mobile-nav a:last-child { border-bottom: 0; }
.mobile-nav .nav-cta {
  margin-top: 12px;
  align-self: flex-start;
  padding: 10px 22px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  color: #fff;
  overflow: hidden;
  padding: 140px 0 100px;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.92);
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(1200px 600px at 70% 30%, rgba(11,31,51,0.25), transparent 60%),
    linear-gradient(180deg, rgba(11,31,51,0.60) 0%, rgba(11,31,51,0.78) 60%, rgba(11,31,51,0.92) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.hero .eyebrow { color: var(--gold-500); }
.hero h1 {
  color: #fff;
  margin-bottom: 24px;
}
.hero-lede {
  font-size: 1.15rem;
  color: rgba(255,255,255,.85);
  max-width: 620px;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}
.hero-credit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 36px;
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,.72);
  font-weight: 400;
}
.hero-credit-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-500);
  box-shadow: 0 0 0 4px rgba(201,169,97,.18);
  flex-shrink: 0;
  animation: heroDotPulse 2.4s ease-in-out infinite;
}
@keyframes heroDotPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(201,169,97,.18); }
  50%      { box-shadow: 0 0 0 7px rgba(201,169,97,.10); }
}
.trust-row {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 28px 40px;
  border-top: 1px solid rgba(255,255,255,.18);
  padding-top: 28px;
  font-size: 0.95rem;
  color: rgba(255,255,255,.85);
}
.trust-row strong { color: #fff; font-weight: 600; }

.scroll-cue {
  position: absolute;
  left: 50%; bottom: 28px;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 14px;
  z-index: 2;
}
.scroll-cue span {
  display: block;
  width: 2px; height: 8px;
  background: #fff;
  border-radius: 2px;
  margin: 8px auto 0;
  animation: scrollCue 1.6s ease-in-out infinite;
}
@keyframes scrollCue {
  0%   { transform: translateY(0); opacity: 1; }
  60%  { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* Sections */
.section { padding: 110px 0; }
.section-head { max-width: 720px; margin-bottom: 64px; }
.section-head-center { margin-left: auto; margin-right: auto; text-align: center; }
.section-lede { color: var(--ink-500); font-size: 1.08rem; }

/* Services */
.section-services { background: var(--cream-50); }
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(201,169,97,.4);
}
.card-feature {
  background: var(--navy-800);
  color: var(--cream-50);
  border-color: var(--navy-800);
}
.card-feature h3 { color: #fff; }
.card-feature .card-icon {
  background: rgba(255,255,255,.08);
  color: var(--gold-500);
}
.card-feature .card-list li::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23c9a961'><ellipse cx='7' cy='9' rx='2' ry='2.6'/><ellipse cx='12' cy='6' rx='2' ry='2.6'/><ellipse cx='17' cy='9' rx='2' ry='2.6'/><ellipse cx='3.5' cy='14' rx='1.7' ry='2.2'/><ellipse cx='20.5' cy='14' rx='1.7' ry='2.2'/><path d='M6 18.5c0-3 2.7-5 6-5s6 2 6 5-2.7 3.8-6 3.8-6-.8-6-3.8z'/></svg>");
}
.card-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--cream-100);
  color: var(--navy-800);
  display: grid; place-items: center;
  margin-bottom: 22px;
}
.card h3 { margin-bottom: 12px; }
.card p { color: inherit; opacity: .85; }
.card-list {
  list-style: none; padding: 0; margin: 18px 0 0;
}
.card-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  font-size: 0.95rem;
}
.card-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 4px;
  width: 16px; height: 16px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23b29148'><ellipse cx='7' cy='9' rx='2' ry='2.6'/><ellipse cx='12' cy='6' rx='2' ry='2.6'/><ellipse cx='17' cy='9' rx='2' ry='2.6'/><ellipse cx='3.5' cy='14' rx='1.7' ry='2.2'/><ellipse cx='20.5' cy='14' rx='1.7' ry='2.2'/><path d='M6 18.5c0-3 2.7-5 6-5s6 2 6 5-2.7 3.8-6 3.8-6-.8-6-3.8z'/></svg>");
  background-repeat: no-repeat;
  background-size: contain;
}
.badge {
  position: absolute;
  top: 18px; right: 18px;
  background: var(--gold-500);
  color: var(--navy-900);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Approach */
.section-approach {
  background: var(--cream-100);
}
.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.approach-copy h2 { margin-bottom: 20px; }
.approach-copy p { color: var(--ink-700); }
.approach-copy .btn { margin-top: 16px; }

.pillars {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.pillars li {
  background: var(--cream-50);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.pillars h4 {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 10px;
}
.pillars p { color: var(--ink-700); margin: 0; font-size: 0.95rem; }

/* About */
.section-about { background: var(--cream-50); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.about-media-logo img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center 35%;
  background: var(--navy-800);
}
.about-copy h2 { margin-bottom: 20px; }
.about-copy p { color: var(--ink-700); }
.signature-block {
  display: flex;
  flex-direction: column;
  margin: 28px 0 0;
  line-height: 1;
}
.signature {
  font-family: "Homemade Apple", "Brush Script MT", cursive;
  font-size: 2.6rem;
  color: var(--navy-800);
  letter-spacing: -0.01em;
  line-height: 1;
  transform: rotate(-2deg);
  transform-origin: left center;
  margin-bottom: 6px;
}
.signature-sub {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-600);
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 36px 0 0;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.stats div { display: flex; flex-direction: column; }
.stats dt {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-500);
  margin-bottom: 8px;
  order: 2;
}
.stats dd {
  font-family: var(--font-display);
  font-size: 2.2rem;
  margin: 0;
  color: var(--navy-900);
  font-weight: 600;
  order: 1;
}

/* Testimonials */
.section-testimonials {
  background: var(--navy-800);
  color: var(--cream-50);
}
.section-testimonials h2 { color: #fff; }
.section-testimonials .eyebrow { color: var(--gold-500); }
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.quote {
  margin: 0;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  position: relative;
}
.quote::before {
  content: "\201C";
  position: absolute;
  top: 12px; left: 22px;
  font-family: var(--font-display);
  font-size: 4.2rem;
  line-height: 1;
  color: var(--gold-500);
  opacity: .8;
}
.quote blockquote {
  margin: 36px 0 18px;
  font-size: 1.02rem;
  line-height: 1.7;
  color: rgba(255,255,255,.92);
  font-style: italic;
}
.quote figcaption {
  color: var(--gold-500);
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  font-weight: 500;
}

/* FAQ */
.section-faq { background: var(--cream-100); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.faq-grid > div:first-child h2 { margin-bottom: 16px; }
.faq-list { display: grid; gap: 10px; }
.faq-list details {
  background: var(--cream-50);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 6px 22px;
  transition: box-shadow .2s ease, border-color .2s ease;
}
.faq-list details[open] {
  box-shadow: var(--shadow-sm);
  border-color: rgba(201,169,97,.35);
}
.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 0;
  font-weight: 600;
  color: var(--navy-900);
  font-size: 1.02rem;
  position: relative;
  padding-right: 32px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--gold-600);
  transition: transform .2s ease;
}
.faq-list details[open] summary::after {
  content: "−";
}
.faq-list details p {
  margin: 0 0 16px;
  color: var(--ink-700);
  font-size: 0.98rem;
}

/* Contact */
.section-contact { background: var(--cream-50); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.contact-copy h2 { margin-bottom: 18px; }
.contact-copy p { color: var(--ink-700); }
.contact-list {
  list-style: none; padding: 0; margin: 36px 0 0;
  display: grid; gap: 18px;
}
.contact-list li {
  display: flex;
  flex-direction: column;
  padding: 18px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.contact-label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  color: var(--ink-500);
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.field { display: flex; flex-direction: column; margin-bottom: 18px; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: var(--ink-700);
  margin-bottom: 8px;
}
.field input,
.field select,
.field textarea {
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink-900);
  background: var(--cream-50);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  width: 100%;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(201,169,97,.18);
}
.field textarea { resize: vertical; min-height: 120px; }
.contact-form .btn { margin-top: 8px; }
.form-note {
  margin: 14px 0 0;
  font-size: 0.92rem;
  color: var(--navy-800);
  background: var(--cream-100);
  border: 1px solid var(--cream-200);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
}
.form-note.error { color: #8a2330; background: #fbeaec; border-color: #f1c1c8; }

/* Footer */
.site-footer {
  background: var(--navy-900);
  color: rgba(255,255,255,.78);
  padding: 80px 0 24px;
  font-size: 0.94rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.brand-footer { color: #fff; }
.brand-footer .brand-mark {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.18);
}
.footer-tag {
  margin-top: 18px;
  max-width: 340px;
  color: rgba(255,255,255,.6);
}
.site-footer h5 {
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.site-footer a:hover { color: var(--gold-500); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 24px;
  font-size: 0.85rem;
  color: rgba(255,255,255,.55);
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 980px) {
  .cards { grid-template-columns: 1fr; }
  .approach-grid,
  .about-grid,
  .faq-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .quotes { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .section { padding: 80px 0; }
}

@media (max-width: 720px) {
  .primary-nav { display: none; }
  .nav-toggle { display: block; }
  .mobile-nav.open { display: flex; }
  .hero { padding: 130px 0 90px; min-height: auto; }
  .hero-actions .btn { flex: 1; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .contact-form { padding: 28px 22px; }
  .section-head { margin-bottom: 44px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  html { scroll-behavior: auto; }
}
