
:root {
  --bg: #f6f5f1;
  --surface: #fffdf9;
  --surface-soft: #f3eee1;
  --text: #17233c;
  --muted: #5f6672;
  --line: #e6e1d6;
  --accent: #14325f;
  --accent-strong: #10284c;
  --accent-2: #b69446;
  --accent-2-soft: #f5efdf;
  --shadow: 0 12px 28px rgba(17, 47, 103, 0.035);
  --radius: 20px;
  --radius-sm: 12px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
p { margin-top: 0; margin-bottom: 1rem; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(calc(100% - 2rem), var(--max)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(247, 247, 244, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 100px;
}
.brand, .brand-image { display: inline-flex; align-items: center; }
.brand.brand-image {
  padding: 0.35rem 0.5rem 0.35rem 0.1rem;
}
.brand-logo { width: min(100%, 320px); height: auto; }
.brand-mark { display:none; }
.brand-text { display:flex; flex-direction:column; line-height:1.05; }
.brand-text small { font-size: 0.78rem; color: var(--muted); font-weight: 600; letter-spacing: 0.03em; }

.nav-toggle {
  display: none;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.6rem 0.75rem;
  font: inherit;
  color: var(--text);
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: nowrap;
}
.site-nav a {
  padding: 0.5rem 0.2rem;
  color: var(--muted);
  font-weight: 600;
  border-bottom: 2px solid transparent;
  font-size: 0.95rem;
  white-space: nowrap;
}
.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.active {
  color: var(--accent);
  border-color: var(--accent-2);
}
.site-nav a.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 46px;
  padding: 0.82rem 1.08rem;
  border-radius: 999px;
  color: white !important;
  background: var(--accent);
  border: 1px solid rgba(16, 40, 76, 0.28);
  box-shadow: 0 8px 20px rgba(16, 40, 76, 0.12);
  font-weight: 800;
  font-size: 0.94rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.site-nav a.header-cta:hover,
.site-nav a.header-cta:focus-visible,
.site-nav a.header-cta.active {
  color: white !important;
  background: var(--accent-strong);
  border-color: rgba(16, 40, 76, 0.42);
  transform: translateY(-1px);
}

.page-hero { padding: 5.2rem 0 2.8rem; }
.hero-grid {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 1.75rem;
  align-items: stretch;
}
.hero-copy,
.hero-panel,
.card,
.feature,
.cta-panel,
.contact-card,
.form-card,
.info-panel,
.value-list,
.list-card,
.page-section {
  background: rgba(255, 253, 249, 0.96);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-copy { padding: 2.25rem 3.4rem 3.4rem; position: relative; overflow: hidden; }
.hero-panel { padding: 2.25rem; display: grid; gap: 1.2rem; align-content: start; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1.15rem;
  padding: 0.36rem 0;
  border-radius: 0;
  background: transparent;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.88rem;
}
.hero-copy h1, .page-intro h1 {
  margin: 0 0 1.1rem;
  font-size: clamp(1.9rem, 2.7vw, 2.5rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}
.hero-copy h1.hero-two-line {
  font-size: clamp(1.9rem, 2.7vw, 2.5rem);
  line-height: 1.08;
}
.hero-copy h1.hero-two-line .hero-line {
  display: block;
}
@media (min-width: 980px) {
  .hero-copy h1.hero-two-line .hero-line {
    white-space: nowrap;
  }
}
.lead { font-size: 1.1rem; color: var(--muted); max-width: 60ch; margin-bottom: 0; }
.hero-subtwo { margin: 0; max-width: 41ch; line-height: 1.35; font-size: 1.03rem; }
.hero-subtwo .hero-line { display: block; }
@media (min-width: 980px) {
  .hero-subtwo .hero-line { white-space: nowrap; }
}
.hero-tagline { margin: 0.7rem 0 0; max-width: 54ch; color: var(--muted); font-size: 1rem; }
.hero-actions, .button-row {
  display:flex; flex-wrap:wrap; gap:0.85rem; margin-top:1.9rem;
}
.button, .button-secondary, .button-ghost {
  display: inline-flex; align-items:center; justify-content:center; gap:0.5rem;
  min-height: 50px; padding: 0.92rem 1.2rem; border-radius: 999px; font-weight: 700;
  transition: background-color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
  white-space: nowrap;
  line-height: 1.1;
  flex: 0 0 auto;
}
.button:hover, .button-secondary:hover, .button-ghost:hover { transform: translateY(-1px); }
.button { color:white; background: var(--accent); box-shadow: 0 8px 18px rgba(16, 40, 76, 0.08); }
.button-secondary { color: var(--accent); background: transparent; border: 1px solid rgba(20, 50, 95, 0.18); }
.button-ghost { color: var(--text); background: transparent; border: 1px solid var(--line); }

.stat-grid, .card-grid, .feature-grid, .values-grid, .three-grid { display:grid; gap:1.25rem; }
.stat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.stat {
  padding: 1.2rem;
  border-radius: var(--radius-sm);
  background: #fbfaf7;
  border: 1px solid var(--line);
}
.stat strong { display:block; margin-bottom:0.35rem; font-size:1.02rem; }
.section { padding: 1.75rem 0 4rem; }
.section-tight { padding-top: 0; }
.brand-story .section-heading { margin-bottom: 1.15rem; }
.brand-story p + p { margin-top: 0.8rem; }
.section-heading, .page-intro { margin-bottom: 1.7rem; }
.section-heading h2, .page-section h2, .cta-panel h2 {
  margin: 0 0 0.6rem;
  font-size: clamp(1.55rem, 2vw, 2.25rem);
  line-height: 1.15;
}
.section-heading p, .page-intro p, .page-section p, .feature p, .card p, .cta-panel p, .contact-card p, .info-panel p { color: var(--muted); }
.section-heading p, .page-intro p { max-width: 68ch; }
.card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: stretch; }
.feature-grid, .values-grid, .three-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: stretch; }
.card, .feature, .value-list, .list-card, .contact-card, .form-card, .info-panel { padding: 1.8rem; }
.card p:last-of-type, .feature p:last-of-type, .cta-panel p:last-of-type, .contact-card p:last-of-type, .statement-band-copy p:last-of-type, .highlight-panel p:last-of-type, .page-section p:last-of-type { margin-bottom: 0; }
.feature, .value-list, .list-card, .info-panel { height: 100%; }
.stat { height: 100%; }
.card { display:flex; flex-direction:column; }
.card .button-ghost { margin-top:auto; align-self:flex-start; }
.card h3, .feature h3, .value-list h3, .list-card h3, .contact-card h3, .info-panel h3 {
  margin-top:0; margin-bottom:0.6rem; font-size:1.2rem;
}
.icon-badge {
  width: 32px; height: 32px; display:grid; place-items:center; border-radius:999px;
  margin-bottom: 0.9rem; color: var(--accent); background: var(--surface-soft); font-weight: 800; font-size:0.78rem;
}
.brand-story {
  background: transparent;
  color: var(--text);
}
.brand-story p, .brand-story h2, .brand-story .section-heading p { color: inherit; }
.brand-story .section-inner {
  display:grid; grid-template-columns: 1fr 0.85fr; gap:1.45rem; align-items:start;
}
.highlight-panel {
  padding: 2rem;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fcfbf7, #f6f1e6);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.list-clean, ul { padding-left: 1.2rem; }
.list-clean li, ul li { margin-bottom: 0.55rem; }
.cta-panel { padding: 2.35rem; display:grid; gap:0.6rem; align-items:center; }
.page-shell { padding: 3rem 0 4rem; }
.page-intro { max-width: 78ch; }
.page-layout { display:grid; gap:1.25rem; }
.page-section { padding: 2rem; }
.contact-layout { display:grid; grid-template-columns: 0.95fr 1.05fr; gap: 1.25rem; }
.contact-card ul { list-style:none; padding:0; margin:1rem 0 0; }
.contact-card li { padding:0.8rem 0; border-bottom:1px solid var(--line); }
.contact-card li:last-child { border-bottom:0; }
.contact-note { margin-top:1rem; padding:1rem; border-radius:14px; background:#faf9f6; border:1px solid var(--line); }
form { display:grid; gap:1.25rem; }
label { display:grid; gap:0.45rem; font-weight:600; }
input, select, textarea {
  width:100%; padding:0.9rem 1rem; border-radius:12px; border:1px solid #d6d8d2; background:white; font:inherit; color:var(--text);
}
textarea { min-height:150px; resize:vertical; }
.site-footer {
  padding: 2.95rem 0 3.25rem;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(243,238,225,0.12), rgba(243,238,225,0.38));
}
.footer-grid { display:grid; grid-template-columns: 1.15fr 0.85fr; gap:1.5rem; align-items:start; }
.footer-grid-rich { grid-template-columns: 1.15fr 0.85fr; }
.footer-brand { margin-bottom: 1rem; }
.footer-logo { width: min(100%, 296px); height:auto; }
.footer-links { display:grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap:0.45rem 1.5rem; }
.footer-links a { color: var(--muted); line-height: 1.55; }
.footer-links a:hover, .footer-links a:focus-visible { color: var(--accent); }
.muted { color: var(--muted); }
.kicker {
  letter-spacing: 0.01em; font-size: 1rem; font-weight: 700; color: var(--accent);
}
.hero-panel-polished { position:relative; overflow:hidden; }
.hero-copy::before,
.hero-panel-polished::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(182,148,70,0.85), rgba(182,148,70,0));
}
.hero-copy, .hero-panel { backdrop-filter: blur(2px); }
.section-heading { max-width: 47rem; }
.section-heading-wide { max-width: none; }
.card h3, .feature h3 { letter-spacing: -0.015em; }
.cta-panel { text-align: left; }
.cta-panel h2, .statement-band-copy h2 { max-width: 24ch; }
.site-footer .muted { max-width: 48ch; }
.contact-logo { width: 220px; height:auto; margin-bottom: 0.75rem; }

.contact-layout { align-items: stretch; }
.contact-card, .form-card { height: 100%; }
.contact-note p { margin: 0.45rem 0 0; }
input::placeholder, textarea::placeholder { color: #8a9099; }
input:focus, select:focus, textarea:focus {
  outline: 2px solid rgba(20, 50, 95, 0.12);
  outline-offset: 1px;
  border-color: rgba(20, 50, 95, 0.28);
}

a:focus-visible, button:focus-visible, .button:focus-visible, .button-secondary:focus-visible, .button-ghost:focus-visible, .nav-toggle:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid rgba(182,148,70,0.35);
  outline-offset: 3px;
}



@media (max-width: 1140px) {
  .brand-logo { width: min(100%, 292px); }
  .footer-logo { width: min(100%, 236px); }
  .site-nav { gap: 0.65rem; }
  .site-nav a { font-size: 0.91rem; }
  .site-nav a.header-cta { padding: 0.78rem 0.98rem; }
}

@media (max-width: 960px) {
  .hero-grid, .brand-story .section-inner, .contact-layout, .footer-grid, .footer-grid-rich { grid-template-columns: 1fr; }
  .feature-grid, .values-grid, .three-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 820px) {
  .header-inner { flex-wrap: wrap; padding: 0.95rem 0; min-height: 0; }
  .brand.brand-image { padding: 0.2rem 0.3rem 0.2rem 0.05rem; }
  .brand-logo { width: min(100%, 270px); }
  .footer-logo { width: min(100%, 252px); }
  .nav-toggle { display:inline-flex; }
  .site-nav {
    display:none; width:100%; flex-direction:column; align-items:flex-start; gap:0; padding:0.25rem 0 0.75rem;
  }
  .site-nav.open { display:flex; }
  .site-nav a { width:100%; }
  .site-nav a.header-cta { margin-top: 0.45rem; }
  .hero-copy, .page-section, .cta-panel, .contact-card, .form-card, .info-panel, .hero-panel { padding:1.5rem; }
}
@media (max-width: 680px) {
  .card-grid, .feature-grid, .values-grid, .three-grid, .stat-grid { grid-template-columns:1fr; }
  .page-hero { padding-top: 3rem; }
  .hero-copy h1, .page-intro h1 { font-size: 2.2rem; }
  .lead { font-size: 1rem; }
}

@media (max-width: 520px) {
  .button, .button-secondary, .button-ghost, .site-nav a.header-cta {
    padding: 0.88rem 1rem;
    font-size: 0.92rem;
  }
}


.statement-band {
  position: relative;
  overflow: hidden;
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
}
.statement-band .container {
  position: relative;
}
.statement-band-copy {
  position: relative;
  max-width: 50rem;
  padding: clamp(1.7rem, 2.8vw, 2.45rem) clamp(1.35rem, 2.7vw, 2.25rem);
  border-radius: var(--radius);
  border: 1px solid rgba(20, 50, 95, 0.08);
  background: linear-gradient(135deg, rgba(255,253,249,0.96), rgba(249,247,241,0.92));
  box-shadow: var(--shadow);
}
.highlight-panel,
.cta-panel,
.statement-band-copy {
  position: relative;
  overflow: hidden;
}

.highlight-panel::before,
.cta-panel::before,
.statement-band-copy::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(182,148,70,0.85), rgba(182,148,70,0));
}
@media (max-width: 960px) {
  .statement-band-copy {
    max-width: none;
    padding-right: clamp(1.15rem, 4vw, 1.5rem);
  }
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.42rem 0.6rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 249, 0.96);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  white-space: nowrap;
}
.lang-switch a {
  color: var(--muted);
}
.lang-switch a:hover,
.lang-switch a:focus-visible {
  color: var(--accent);
}
.lang-switch .active-lang {
  color: var(--accent);
}
.lang-switch .sep {
  color: #9ca2ab;
}
.language-note {
  margin-top: 0.9rem;
}
@media (max-width: 820px) {
  .lang-switch {
    margin-left: auto;
  }
}
