:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-soft: #f7f8fb;
  --text: #1d2430;
  --muted: #677184;
  --border: #dfe5ef;
  --primary: #0d2a52;
  --primary-strong: #091d39;
  --accent: #bb9457;
  --shadow: 0 18px 50px rgba(13, 42, 82, 0.10);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(223,229,239,0.85);
}

.topbar-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand-logo {
  width: 62px;
  height: 62px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
  border: 3px solid #fff;
}

.brand-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-name {
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.25;
}

.brand-sub {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.08em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.nav a {
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 600;
}

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

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0.3rem;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  margin: 5px 0;
  border-radius: 10px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 4.8rem 0 3rem;
  background:
    radial-gradient(circle at 10% 10%, rgba(187,148,87,0.16), transparent 22%),
    radial-gradient(circle at 90% 20%, rgba(13,42,82,0.08), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  pointer-events: none;
}

.hero::before {
  width: 320px;
  height: 320px;
  background: rgba(13, 42, 82, 0.05);
  top: -80px;
  right: -60px;
}

.hero::after {
  width: 240px;
  height: 240px;
  background: rgba(187, 148, 87, 0.09);
  bottom: -80px;
  left: -40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow,
.section-kicker {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.hero h1,
.section h2,
.cta-band h2,
.footer h3 {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 4.45rem);
  color: var(--primary-strong);
  max-width: 13ch;
}

.hero-message {
  margin: 1.1rem 0 0.4rem;
  font-size: clamp(1.08rem, 2vw, 1.4rem);
  font-weight: 700;
  color: var(--text);
  max-width: 36rem;
}

.hero-location {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.7rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  color: #fff;
  box-shadow: 0 14px 28px rgba(13,42,82,0.18);
}

.btn-secondary {
  background: #fff;
  border: 1px solid var(--border);
  color: var(--primary);
}

.btn-light {
  background: #fff;
  color: var(--primary-strong);
}

.hero-card,
.content-card,
.statement-card,
.info-card,
.location-panel,
.identity-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 1.25rem;
}

.hero-logo-wrap {
  background: linear-gradient(180deg, #f9fbff 0%, #f3f6fb 100%);
  border-radius: calc(var(--radius-lg) - 4px);
  min-height: 520px;
  display: grid;
  place-items: center;
  padding: 1.5rem;
}

.hero-logo {
  width: min(100%, 520px);
  object-fit: contain;
}

.section {
  padding: 4.2rem 0;
}

.section-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.5rem;
  align-items: start;
}

.section-heading h2,
.statement-card h2,
.identity-card h2,
.cta-band h2 {
  font-size: clamp(2rem, 3vw, 3.2rem);
  color: var(--primary-strong);
}

.section-heading.center,
.section-kicker.center {
  text-align: center;
}

.content-card {
  padding: 2rem;
}

.content-card p {
  margin: 0 0 0.8rem;
  font-size: 1.05rem;
}

.content-card .lead {
  font-size: 1.28rem;
  font-weight: 700;
  color: var(--primary);
}

.statement-section {
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
}

.statement-card {
  text-align: center;
  padding: 2.2rem;
}

.statement-seal {
  display: flex;
  justify-content: center;
  margin-top: 1.3rem;
}

.statement-seal img {
  width: 190px;
  height: 190px;
  object-fit: cover;
  border-radius: 50%;
  border: 8px solid #fff;
  box-shadow: 0 16px 30px rgba(13,42,82,0.14);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 2rem;
}

.info-card {
  padding: 1.6rem;
}

.card-label {
  display: inline-block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 0.9rem;
}

.info-card h3,
.location-panel h3 {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.4;
}

.text-link {
  display: inline-block;
  margin-top: 0.9rem;
  color: var(--primary);
  font-weight: 700;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.3rem;
  align-items: stretch;
}

.location-copy {
  padding-right: 1rem;
}

.location-line {
  margin: 0 0 1rem;
  font-size: 1.05rem;
}

.location-panel {
  padding: 1.7rem;
  display: flex;
  align-items: center;
}

.mini-brand {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1rem;
  align-items: center;
}

.mini-brand img,
.identity-card img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 12px 25px rgba(13,42,82,0.15);
}

.identity-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1.4rem;
  align-items: center;
  padding: 1.8rem;
}

.cta-band {
  padding: 3rem 0;
  background: linear-gradient(135deg, var(--primary-strong), var(--primary));
  color: #fff;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.section-kicker.light { color: #f4d5a4; }

.footer {
  background: #f7f9fc;
  border-top: 1px solid var(--border);
  padding: 2rem 0 3rem;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer p {
  margin: 0.25rem 0;
  color: var(--muted);
}

@media (max-width: 980px) {
  .hero-grid,
  .section-grid,
  .location-grid,
  .cards-grid,
  .identity-card,
  .cta-inner,
  .footer-grid {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 0.8rem 1rem 1.2rem;
    flex-direction: column;
    align-items: flex-start;
    display: none;
  }

  .nav.is-open { display: flex; }
  .menu-toggle { display: block; }
  .brand-name { font-size: 0.82rem; }
  .hero-logo-wrap { min-height: 380px; }
}

@media (max-width: 640px) {
  .topbar-inner { min-height: 78px; }
  .container { width: min(var(--container), calc(100% - 1.2rem)); }
  .brand-logo { width: 52px; height: 52px; }
  .hero { padding-top: 3.6rem; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .statement-seal img { width: 150px; height: 150px; }
  .mini-brand { grid-template-columns: 1fr; text-align: center; }
  .identity-card { grid-template-columns: 1fr; text-align: center; }
}
