:root {
  --navy: #0a1f44;
  --navy-mid: #0d2b55;
  --navy-deep: #071428;
  --gold: #d4af37;
  --gold-dark: #c9a227;
  --gold-soft: #e8c872;
  --ivory: #f8f5f0;
  --cream: #f5f0e6;
  --paper: #fbf8f2;
  --ink: #1c1c1c;
  --muted: #5a5a5a;
  --line: #e5dcc8;
  --white: #ffffff;
  --shadow-gold: 0 8px 30px rgba(212, 175, 55, 0.25);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Montserrat", "Helvetica Neue", sans-serif;
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--navy);
  font-weight: 600;
  line-height: 1.15;
  text-wrap: balance;
}
button, [role="button"] { cursor: pointer; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.eyebrow {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}
.gold-rule { width: 3rem; height: 1px; background: var(--gold); display: inline-block; }
.gold-divider { display: flex; align-items: center; justify-content: center; gap: 12px; }
.gold-divider span:first-child,
.gold-divider span:last-child { height: 1px; width: 48px; background: rgba(212,175,55,0.8); }
.gold-divider i { width: 6px; height: 6px; background: var(--gold); transform: rotate(45deg); display: block; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 48px; padding: 0 28px;
  font-family: "Montserrat", sans-serif; font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  border: none; transition: 0.15s ease;
}
.btn-gold { background: var(--gold); color: var(--navy); box-shadow: var(--shadow-gold); }
.btn-gold:hover { background: var(--gold-soft); }
.btn-outline { background: transparent; border: 1px solid rgba(10,31,68,0.2); color: var(--navy); }
.btn-outline:hover { border-color: var(--gold); }
.btn-lg { height: 56px; padding: 0 32px; }
.btn-full { width: 100%; }

/* Header */
.utility-mobile {
  display: flex; height: 36px; align-items: center; justify-content: center;
  background: var(--navy); color: var(--ivory); font-size: 0.75rem; font-weight: 500;
}
.utility-mobile a { display: flex; align-items: center; gap: 8px; }
.utility-bar {
  display: none; border-bottom: 1px solid rgba(212,175,55,0.25); background: var(--paper);
}
.utility-inner {
  display: flex; height: 48px; align-items: center; justify-content: space-between; gap: 16px;
  font-size: 0.875rem; font-weight: 600; color: var(--navy);
}
.utility-left { display: flex; gap: 32px; min-width: 0; }
.utility-left span, .utility-left a { display: inline-flex; align-items: center; gap: 8px; }
.utility-left a:hover { color: var(--gold); }
.utility-motto { font-size: 0.75rem; font-weight: 400; font-style: italic; color: var(--muted); }

.navbar {
  position: sticky; top: 0; z-index: 50;
  border-bottom: 1px solid rgba(212,175,55,0.2);
  background: rgba(255,255,255,0.95); backdrop-filter: blur(8px);
}
.nav-inner { display: flex; height: 64px; align-items: center; gap: 12px; }
.logo img { height: 48px; width: auto; }
.nav-links { display: none; list-style: none; flex: 1; justify-content: center; gap: 20px; }
.nav-links a {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(10,31,68,0.8); padding: 8px 0; position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--navy); }
.nav-links a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px; background: var(--gold);
}
.nav-cta { display: none; }
.hamburger {
  margin-left: auto; width: 44px; height: 44px; border: none; background: none;
  display: flex; flex-direction: column; justify-content: center; gap: 5px; padding: 10px;
}
.hamburger span { display: block; height: 2px; background: var(--navy); }
.mobile-menu { display: none; border-bottom: 1px solid var(--line); background: var(--white); }
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: flex; min-height: 44px; align-items: center;
  border-bottom: 1px solid rgba(229,220,200,0.7);
  font-size: 0.875rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--navy);
}
.mobile-menu .btn { margin: 16px 0; }

@media (min-width: 1024px) {
  .utility-mobile { display: none; }
  .utility-bar { display: block; }
  .nav-inner { height: 96px; }
  .logo img { height: 80px; }
  .hamburger { display: none; }
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; margin-left: 0; }
}

/* Hero */
.hero {
  position: relative; isolation: isolate; overflow: hidden;
  color: var(--ivory); background: var(--navy-deep);
}
@media (min-width: 1024px) {
  .hero { display: grid; grid-template-columns: 1fr 1fr; min-height: calc(100dvh - 100px); }
}
.hero-left {
  position: relative; min-height: 70vh; display: flex; align-items: flex-end;
  padding: 40px 0 56px;
}
@media (min-width: 1024px) {
  .hero-left { min-height: 0; align-items: center; }
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0; opacity: 0; transition: opacity 0.9s ease;
  background-size: cover; background-position: center;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(7,20,40,0.9) 0%, rgba(7,20,40,0.5) 70%, rgba(10,31,68,0.2) 100%);
}
.hero-content { position: relative; max-width: 1200px; margin: 0 auto; width: 100%; padding-left: 20px; padding-right: 20px; }
.hero-portrait {
  display: flex; align-items: center; justify-content: center;
  background: var(--navy-deep); padding: 32px 24px;
}
.hero-portrait img { max-height: 78vh; width: 100%; object-fit: contain; }
.hero-kicker { display: flex; align-items: center; gap: 12px; }
.hero h1 { color: var(--ivory); font-size: clamp(2.6rem, 6vw, 4.5rem); margin: 24px 0 20px; max-width: 48rem; }
.hero p { max-width: 36rem; font-size: 1.05rem; color: rgba(248,245,240,0.85); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.hero .btn-outline { border-color: rgba(212,175,55,0.6); color: var(--ivory); }
.hero .btn-outline:hover { border-color: var(--gold); color: var(--gold); background: rgba(212,175,55,0.1); }

.motto-banner, .cta-dark, .philosophy {
  position: relative; isolation: isolate; overflow: hidden;
  background: var(--navy); color: var(--ivory); text-align: center; padding: 80px 0;
}
.motto-banner img, .cta-dark img, .philosophy img, .page-hero img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.22;
}
.motto-banner .shade, .cta-dark .shade, .philosophy .shade, .page-hero .shade {
  position: absolute; inset: 0; background: rgba(10,31,68,0.8);
}
.motto-inner, .cta-inner, .philosophy-inner, .page-hero-inner { position: relative; }
.motto-banner h2, .cta-dark h2, .philosophy h2, .page-hero h1 { color: var(--ivory); }
.motto-quote { font-family: "Cormorant Garamond", serif; font-style: italic; font-size: clamp(1.4rem, 3vw, 2.25rem); color: var(--gold-soft); max-width: 56rem; margin: 28px auto 16px; }
.motto-sub { font-family: "Cormorant Garamond", serif; font-style: italic; font-size: clamp(1.1rem, 2vw, 1.5rem); color: rgba(248,245,240,0.85); }

.stats { background: var(--navy); border-top: 1px solid rgba(212,175,55,0.3); border-bottom: 1px solid rgba(212,175,55,0.3); }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; }
.stat { padding: 32px 16px; text-align: center; border-right: 1px solid rgba(212,175,55,0.2); }
.stat:nth-child(even) { border-right: none; }
.stat .num { font-family: "Cormorant Garamond", serif; font-size: 2rem; color: var(--gold); }
.stat .lbl { margin-top: 8px; font-size: 0.7rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(248,245,240,0.75); }
@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .stat { border-right: 1px solid rgba(212,175,55,0.2); }
  .stat:last-child { border-right: none; }
}

.section { padding: 80px 0; }
.bg-ivory { background: var(--ivory); }
.bg-cream { background: var(--cream); }
.bg-paper { background: var(--paper); }
.section-head { text-align: center; max-width: 40rem; margin: 0 auto 48px; }
.section-head h2 { font-size: clamp(2rem, 4vw, 3rem); margin: 16px 0 12px; }
.section-head p { color: var(--muted); }
.split { display: grid; gap: 48px; align-items: center; }
.split p { color: var(--muted); margin-top: 16px; }
.lead { font-size: 1.125rem; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
@media (min-width: 1024px) {
  .split { grid-template-columns: 1fr 1fr; gap: 64px; }
  .section { padding: 112px 0; }
}

.photo-frame { position: relative; }
.photo-frame img { width: 100%; object-fit: contain; background: #f8f5f0; outline: 1px solid rgba(10,31,68,0.1); outline-offset: -1px; }
.photo-portrait { object-position: center; }
.photo-wide { object-position: center; }
@media (min-width: 768px) {
  .photo-frame::before {
    content: ""; position: absolute; top: -16px; left: -16px;
    height: calc(100% - 8px); width: calc(100% - 8px); border: 1px solid var(--gold); pointer-events: none;
  }
}
.founder-badge {
  position: absolute; z-index: 2; left: 16px; right: 16px; bottom: 16px;
  background: rgba(10,31,68,0.92); color: var(--ivory); padding: 16px 20px;
}
.founder-badge .role { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.founder-badge .name { font-family: "Cormorant Garamond", serif; font-size: 1.5rem; }
.founder-badge .creds { font-size: 0.75rem; color: rgba(248,245,240,0.7); }
.years-badge {
  position: absolute; z-index: 2; right: 8px; bottom: -24px;
  background: var(--navy); color: var(--ivory); padding: 24px 28px;
}
.years-badge .num { font-family: "Cormorant Garamond", serif; font-size: 2.25rem; color: var(--gold); }
.years-badge .txt { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; }

.service-row {
  display: grid; overflow: hidden; border: 1px solid var(--line); background: var(--white); margin-bottom: 32px;
}
.service-row img { width: 100%; max-height: 420px; object-fit: contain; background: #f8f5f0; }
.service-body { padding: 32px; display: flex; flex-direction: column; justify-content: center; }
.service-body h3 { font-size: 1.75rem; }
.service-body p { color: var(--muted); margin-top: 16px; }
.service-body a { margin-top: 24px; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--navy); }
.service-body a:hover { color: var(--gold); }
@media (min-width: 768px) {
  .service-row { grid-template-columns: 1fr 1fr; }
  .service-row.reverse .svc-img { order: 2; }
  .service-body { padding: 48px; }
}

.values-grid { display: grid; gap: 1px; background: var(--line); }
.value-card { background: var(--white); padding: 28px; }
.value-card .letter { font-family: "Cormorant Garamond", serif; font-size: 1.75rem; color: var(--gold); }
.value-card h3 { font-size: 1.5rem; margin: 8px 0; }
.value-card p { color: var(--muted); font-size: 0.9rem; }
@media (min-width: 640px) { .values-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .values-grid.four { grid-template-columns: repeat(4, 1fr); } }

.slideshow { position: relative; background: var(--navy); overflow: hidden; }
.slideshow .slide { display: none; position: relative; }
.slideshow .slide.active { display: block; }
.slideshow img { width: 100%; max-height: 480px; height: auto; object-fit: contain; background: var(--navy); padding: 24px; }
.slide-cap {
  position: relative; left: auto; right: auto; bottom: auto; padding: 24px 32px;
  background: var(--navy-deep);
  color: var(--ivory);
}
.slide-cap h4 { color: var(--gold); font-family: "Montserrat", sans-serif; font-size: 0.7rem; letter-spacing: 0.28em; text-transform: uppercase; }
.slide-cap p { font-family: "Cormorant Garamond", serif; font-size: 1.5rem; color: var(--ivory); margin-top: 8px; }
.slide-nav {
  position: absolute; top: 50%; left: 16px; right: 16px; transform: translateY(-50%);
  display: flex; justify-content: space-between; pointer-events: none;
}
.slide-nav button {
  pointer-events: auto; width: 44px; height: 44px; border-radius: 50%;
  border: none; background: rgba(10,31,68,0.5); color: var(--ivory); font-size: 1.4rem;
}
.slide-dots { position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; }
.slide-dots button { width: 24px; height: 6px; border: none; border-radius: 99px; background: rgba(248,245,240,0.4); }
.slide-dots button.active { background: var(--gold); }

.page-hero { position: relative; isolation: isolate; overflow: hidden; min-height: 320px; background: var(--navy); color: var(--ivory); display: flex; align-items: center; }
.page-hero .shade { background: linear-gradient(90deg, rgba(7,20,40,0.92), rgba(10,31,68,0.55)); }
.crumb { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 16px; }
.crumb a:hover { color: var(--gold); }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); max-width: 48rem; }
.page-hero p { margin-top: 16px; max-width: 36rem; color: rgba(248,245,240,0.8); }

.mv-grid { display: grid; gap: 24px; }
.mv-card { border: 1px solid var(--line); background: var(--white); padding: 40px; }
.mv-card.navy { background: var(--navy); color: var(--ivory); border-color: rgba(212,175,55,0.3); }
.mv-card.navy h3 { color: var(--ivory); }
.mv-card.navy p { color: rgba(248,245,240,0.75); }
.mv-card p { color: var(--muted); margin-top: 20px; }
@media (min-width: 1024px) { .mv-grid { grid-template-columns: 1fr 1fr; } }

.value-row { display: flex; gap: 20px; border: 1px solid var(--line); background: var(--white); padding: 24px; }
.value-row .letter { font-family: "Cormorant Garamond", serif; font-size: 2.25rem; color: var(--gold); }
.values-list { display: grid; gap: 20px; }
@media (min-width: 768px) { .values-list { grid-template-columns: 1fr 1fr; } }

.theory { border: 1px solid rgba(212,175,55,0.35); background: var(--navy); color: var(--ivory); padding: 24px; margin-bottom: 16px; }
.theory h3 { color: var(--gold); font-size: 1.4rem; }
.theory p { color: rgba(248,245,240,0.75); margin-top: 8px; font-size: 0.9rem; }

.model-frame { border: 1px solid rgba(212,175,55,0.4); background: var(--navy); padding: 16px; }
.model-frame img { width: 100%; background: var(--navy); }
.model-frame figcaption { color: rgba(248,245,240,0.6); font-size: 0.75rem; font-style: italic; text-align: center; margin-top: 16px; padding-bottom: 4px; }

.offer-grid { display: grid; gap: 1px; background: var(--line); }
.offer { background: var(--white); padding: 32px; }
.offer h3 { font-size: 1.5rem; }
.offer p { color: var(--muted); font-size: 0.9rem; margin-top: 12px; }
@media (min-width: 768px) { .offer-grid { grid-template-columns: 1fr 1fr; } }

.faq-item { border-bottom: 1px solid var(--line); }
.faq-item button {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  min-height: 44px; padding: 20px 0; background: none; border: none; text-align: left;
  font-family: "Cormorant Garamond", serif; font-size: 1.25rem; color: var(--navy);
}
.faq-item .ans { display: none; padding-bottom: 20px; color: var(--muted); font-size: 0.9rem; }
.faq-item.open .ans { display: block; }
.faq-item button span { color: var(--gold); }

.contact-grid { display: grid; gap: 48px; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.detail { display: flex; gap: 16px; margin-top: 24px; }
.detail-icon { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(212,175,55,0.4); color: var(--gold); flex-shrink: 0; }
.detail .lbl { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--navy); }
.detail p, .detail a { font-size: 0.9rem; color: var(--muted); }
.portal {
  margin-top: 40px; background: var(--navy); color: var(--ivory); padding: 28px; border-left: 2px solid var(--gold);
}
.portal h4 { font-size: 0.75rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.portal p { color: rgba(248,245,240,0.75); font-size: 0.9rem; margin-bottom: 16px; }

.form { border: 1px solid var(--line); border-top: 2px solid var(--gold); background: var(--white); padding: 32px; }
.form h3 { font-size: 1.75rem; }
.form .hint { color: var(--muted); font-size: 0.9rem; margin: 8px 0 24px; }
.form-row { display: grid; gap: 20px; margin-bottom: 20px; }
@media (min-width: 640px) { .form-row.two { grid-template-columns: 1fr 1fr; } }
label { display: block; margin-bottom: 8px; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--navy); }
input, select, textarea {
  width: 100%; height: 48px; border: 1px solid var(--line); background: var(--paper);
  padding: 0 16px; font-family: "Montserrat", sans-serif; font-size: 0.9rem; color: var(--ink);
}
textarea { height: 128px; padding: 12px 16px; resize: vertical; }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--gold); }
.form .fine { font-size: 0.75rem; color: var(--muted); margin-top: 16px; }
.success { border: 1px solid var(--line); background: var(--paper); padding: 40px 24px; text-align: center; display: none; }
.success h3 { margin: 12px 0; }

footer { background: var(--navy-deep); color: var(--ivory); }
.footer-grid { display: grid; gap: 48px; padding: 64px 0; }
.footer-brand img { height: 64px; width: auto; filter: brightness(0) invert(1); }
.footer-brand p { margin-top: 20px; max-width: 20rem; font-size: 0.9rem; color: rgba(248,245,240,0.7); }
.footer-col h5 { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; font-size: 0.9rem; color: rgba(248,245,240,0.75); }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(212,175,55,0.15);
  padding: 24px 0; font-size: 0.75rem; color: rgba(248,245,240,0.55);
  display: flex; flex-direction: column; gap: 8px;
}
.footer-bottom em { font-style: italic; }
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

.center { text-align: center; }
.mt-8 { margin-top: 32px; }
