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

:root {
  --navy: #12263a;
  --navy-deep: #0b1824;
  --navy-soft: #1c3a52;
  --teal: #2f6f6a;
  --ivory: #f6f1e8;
  --paper: #fbf8f3;
  --sand: #e8dcc8;
  --gold: #b8956a;
  --gold-soft: #d4c0a0;
  --ink: #1a1714;
  --muted: #6b645c;
  --stone: #8a8278;
  --display: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Outfit", ui-sans-serif, system-ui, sans-serif;
  --shadow: 0 0 0 1px rgba(18, 38, 58, 0.08), 0 10px 28px -18px rgba(18, 38, 58, 0.28);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.02rem;
  line-height: 1.55;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-underline-offset: 3px; }
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--navy);
  text-wrap: balance;
  line-height: 0.98;
  margin: 0;
}
p { text-wrap: pretty; }
button, [type="submit"], .btn { cursor: pointer; font-family: var(--sans); }
.wrap { width: min(1120px, calc(100% - 2rem)); margin-inline: auto; }
.kicker {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
}
.rule { width: 3.5rem; height: 1px; background: var(--gold); margin: 1.4rem 0; }

.topbar {
  background: var(--navy-deep);
  color: var(--ivory);
  font-size: 0.72rem;
}
.topbar .wrap { display: flex; justify-content: space-between; gap: 1rem; padding: 0.5rem 0; }
.topbar a { color: var(--ivory); text-decoration: none; }
.topbar a:hover { color: var(--gold-soft); }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--paper) 92%, white);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(18, 38, 58, 0.08);
}
.site-header .bar {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 0.75rem 0;
}
.brand { display: flex; align-items: baseline; gap: 0.5rem; text-decoration: none; color: var(--navy); }
.brand .name { font-family: var(--display); font-size: 1.7rem; line-height: 1; }
.brand .sub { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase; color: var(--teal); }
.nav { display: flex; gap: 1.2rem; align-items: center; }
.nav a {
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.04em;
  text-transform: uppercase; text-decoration: none; color: var(--navy);
}
.nav a:hover, .nav a.current { color: var(--teal); }
.nav-toggle { display: none; background: none; border: 0; width: 44px; height: 44px; color: var(--navy); }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 44px; padding: 0 1.3rem; border-radius: 8px;
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; text-decoration: none; border: 0;
}
.btn-gold { background: var(--gold); color: var(--navy-deep); }
.btn-navy { background: var(--navy); color: var(--ivory); }
.btn-outline { background: transparent; color: var(--ivory); box-shadow: inset 0 0 0 1px rgba(246,241,232,0.45); }

.hero {
  position: relative; min-height: 78vh; color: var(--ivory);
  display: flex; align-items: flex-end; overflow: hidden; background: var(--navy-deep);
}
.hero img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero .shade {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(11,24,36,.9), rgba(18,38,58,.45) 55%, rgba(18,38,58,.2));
}
.hero .content { position: relative; padding: 6rem 0 3.5rem; max-width: 42rem; }
.hero h1 { color: var(--ivory); font-size: clamp(3rem, 8vw, 5.6rem); }
.hero h1 em { font-style: italic; color: var(--gold-soft); }
.hero p { color: rgba(246,241,232,.85); font-size: 1.1rem; }
.hero .actions { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.6rem; }

.stats { background: var(--navy); display: grid; grid-template-columns: repeat(4, 1fr); }
.stats div { text-align: center; padding: 2rem 1rem; }
.stats strong { display: block; font-family: var(--display); font-size: 2.4rem; color: var(--ivory); font-weight: 500; }
.stats span { display: block; margin-top: 0.4rem; font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-soft); }

.section { padding: 4.5rem 0; }
.section h2 { font-size: clamp(2.2rem, 5vw, 3.4rem); margin-top: 0.8rem; }
.muted { color: var(--muted); }
.split { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 900px) { .split-2 { grid-template-columns: 5fr 7fr; } .split-equal { grid-template-columns: 1fr 1fr; } }

.card {
  background: var(--ivory); border-radius: 18px; overflow: hidden; box-shadow: var(--shadow);
  text-decoration: none; color: inherit; display: block;
}
.card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.card .pad { padding: 1.6rem; }
.grid-2 { display: grid; gap: 1.5rem; }
.grid-4 { display: grid; gap: 1.1rem; }
@media (min-width: 700px) { .grid-2 { grid-template-columns: 1fr 1fr; } .grid-4 { grid-template-columns: repeat(4, 1fr); } }

.band { background: var(--navy); color: var(--ivory); }
.band h2, .band p { color: var(--ivory); }
.frame { overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.frame img { width: 100%; height: 100%; object-fit: cover; }

form.inquiry { display: grid; gap: 0.9rem; position: relative; }
form.inquiry label { display: grid; gap: 0.35rem; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(246,241,232,.7); }
.row-2 { display: grid; gap: 0.8rem; }
@media (min-width: 640px) { .row-2 { grid-template-columns: 1fr 1fr; } }
.input, select, textarea {
  width: 100%; min-height: 44px; border: 0; border-radius: 8px;
  padding: 0.7rem 0.9rem; font-size: 16px; font-family: var(--sans);
  background: color-mix(in srgb, var(--paper) 70%, white); color: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(18,38,58,.14);
}
textarea { min-height: 6rem; }
.hp { position: absolute; left: -9999px; height: 0; overflow: hidden; }
.inquiry-success { color: var(--ivory); }
.inquiry-success h3 { color: var(--ivory); font-size: 2rem; margin: 0.4rem 0 0.6rem; }
.inquiry-success p { color: rgba(246,241,232,.75); }

.site-footer { background: var(--navy); color: var(--ivory); padding: 3.5rem 0 0; }
.site-footer a { color: rgba(246,241,232,.8); text-decoration: none; }
.site-footer a:hover { color: var(--gold-soft); }
.foot-grid { display: grid; gap: 2rem; }
@media (min-width: 900px) { .foot-grid { grid-template-columns: 1.3fr .8fr .7fr 1.2fr; } }
.legal { border-top: 1px solid rgba(246,241,232,.1); margin-top: 2rem; padding: 1.2rem 0 1.6rem; font-size: 0.72rem; color: rgba(246,241,232,.5); line-height: 1.5; }
.logo-row { display: flex; flex-wrap: wrap; gap: 1.2rem; align-items: center; margin-top: 1.4rem; }
.logo-row img.team { width: 7rem; height: 7rem; object-fit: cover; border-radius: 8px; }
.logo-row img.broker { height: 2.8rem; width: auto; }

.mobile-cta {
  display: none; position: fixed; inset: auto 0 0 0; z-index: 40;
  padding: 0.7rem; background: color-mix(in srgb, var(--paper) 95%, white);
  border-top: 1px solid rgba(18,38,58,.1);
}
.mobile-cta .btn { width: 100%; }

article.post { max-width: 42rem; margin: 0 auto; padding: 3rem 1rem 4rem; }
article.post p { color: var(--muted); font-size: 1.05rem; }

@media (max-width: 1024px) {
  .nav { display: none; }
  .nav.open {
    display: grid; position: absolute; left: 0; right: 0; top: 100%;
    background: var(--paper); padding: 1rem 1.2rem 1.4rem; gap: 0.4rem;
    border-bottom: 1px solid rgba(18,38,58,.08);
  }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .stats { grid-template-columns: 1fr 1fr; }
  .mobile-cta { display: block; }
  main { padding-bottom: 5.2rem; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}
