:root {
  --bg: #f5f0e8;
  --bg-soft: #fbf8f3;
  --surface: #fffdf9;
  --surface-2: #f2ece3;
  --text: #171717;
  --muted: #5e5c59;
  --line: rgba(23, 23, 23, 0.12);
  --line-strong: rgba(23, 23, 23, 0.18);
  --shadow: 0 12px 38px rgba(0, 0, 0, 0.06);
  --black: #111111;
  --max: 1240px;
  --radius-xl: 32px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
  line-height: 1.6;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.container { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }

.skip-link { position: absolute; left: -9999px; top: 0; }
.skip-link:focus { left: 16px; top: 16px; z-index: 1000; background: #fff; padding: 10px 14px; border-radius: 999px; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(251, 248, 243, 0.9);
  border-bottom: 1px solid rgba(23, 23, 23, 0.06);
}

.header-inner {
  min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 20px;
}

.brand { display: flex; align-items: center; gap: 16px; min-width: 0; }
.brand-logo { width: 68px; height: 68px; object-fit: contain; flex-shrink: 0; }
.brand-copy { min-width: 0; }

.brand-name, .section-title, .hero h1, .footer-name, .mission-card h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
}

.brand-name {
  font-size: 30px; line-height: 0.95; font-weight: 700;
}

.brand-sub {
  margin-top: 5px; color: var(--muted); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
}

.nav {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap; justify-content: flex-end;
}

.nav a {
  padding: 10px 14px; border-radius: 999px; font-size: 14px; font-weight: 500; color: var(--muted);
  transition: background 0.2s ease, color 0.2s ease;
}

.nav a:hover, .nav a:focus-visible {
  background: rgba(23, 23, 23, 0.06); color: var(--text); outline: none;
}

.nav-toggle {
  display: none; width: 44px; height: 44px; padding: 0; border: 1px solid var(--line);
  border-radius: 12px; background: rgba(255, 255, 255, 0.9);
  align-items: center; justify-content: center; gap: 4px; flex-direction: column;
  cursor: pointer; color: var(--black);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.nav-toggle:hover, .nav-toggle:focus-visible {
  background: #fff; border-color: var(--line-strong); outline: none;
}

.nav-toggle span {
  width: 16px; height: 1.8px; border-radius: 999px; background: currentColor; display: block;
}

.hero { padding: 30px 0 22px; }

.hero-shell {
  background: linear-gradient(180deg, #fffdfa 0%, #f7f2e9 100%);
  border: 1px solid var(--line);
  border-radius: 38px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-grid {
  display: grid; grid-template-columns: 1fr 0.92fr; gap: 28px; align-items: center; padding: 56px;
}

.eyebrow, .section-kicker {
  display: inline-block; color: #7a6752; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600;
}

.hero h1 {
  margin: 18px 0 0; font-size: clamp(50px, 6vw, 74px); line-height: 0.96; letter-spacing: -0.03em; font-weight: 700; max-width: 10ch;
}

.hero-lead {
  margin: 22px 0 0; max-width: 700px; font-size: 20px; line-height: 1.76; color: #232323;
}

.hero-support {
  margin: 16px 0 0; max-width: 680px; font-size: 15px; line-height: 1.86; color: var(--muted);
}

.hero-actions { margin-top: 28px; display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
  min-height: 48px; padding: 0 22px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 600; transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn-primary { background: var(--black); color: #fff; border: 1px solid var(--black); }
.btn-primary:hover, .btn-primary:focus-visible { transform: translateY(-1px); outline: none; }

.btn-secondary { background: transparent; color: var(--black); border: 1px solid var(--line-strong); }
.btn-secondary:hover, .btn-secondary:focus-visible { background: rgba(23, 23, 23, 0.04); outline: none; }

.hero-visual-wrap { display: flex; align-items: center; justify-content: center; }
.hero-visual { width: 100%; max-width: 560px; object-fit: contain; }

.section { padding: 22px 0; }

.panel {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-xl); box-shadow: var(--shadow); padding: 40px;
}

.two-col { display: grid; grid-template-columns: 0.38fr 0.62fr; gap: 34px; align-items: start; }

.section-title {
  margin: 14px 0 0; font-size: clamp(34px, 4vw, 46px); line-height: 1.02; letter-spacing: -0.02em; font-weight: 700;
}

.body-copy, .body-copy p { font-size: 17px; line-height: 1.92; color: var(--muted); }
.body-copy p:first-child { margin-top: 0; }
.body-copy p:last-child { margin-bottom: 0; }

.mission-grid {
  margin-top: 28px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}

.mission-card {
  min-height: 220px; padding: 24px; border: 1px solid var(--line); border-radius: 24px;
  background: linear-gradient(180deg, #fffefb 0%, var(--surface-2) 100%);
}

.mission-card-number {
  font-size: 12px; font-weight: 700; letter-spacing: 0.16em; color: #8f6e44;
}

.mission-card h3 {
  margin: 16px 0 0; font-size: 34px; line-height: 0.98; font-weight: 700;
}

.mission-card p {
  margin: 14px 0 0; font-size: 15px; line-height: 1.82; color: var(--muted);
}

.future-grid {
  display: grid; grid-template-columns: 0.58fr 0.42fr; gap: 22px; align-items: stretch;
}

.future-panel {
  border: 1px solid var(--line); border-radius: 28px; background: linear-gradient(180deg, #fffdf8 0%, #f5efe6 100%);
  display: flex; align-items: center; justify-content: center; min-height: 100%;
}

.future-panel-inner { padding: 30px; text-align: center; }
.future-logo { width: min(100%, 260px); margin: 0 auto; }
.future-label { margin-top: 18px; font-size: 12px; text-transform: uppercase; letter-spacing: 0.18em; color: #8f6e44; font-weight: 700; }
.future-text { margin-top: 12px; font-size: 15px; line-height: 1.82; color: var(--muted); }

.contact-panel { text-align: center; }
.contact-copy { max-width: 780px; margin: 18px auto 0; }

.contact-grid {
  margin-top: 28px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}

.contact-item {
  border: 1px solid var(--line); border-radius: 22px; padding: 20px; background: linear-gradient(180deg, #fffefb 0%, var(--surface-2) 100%);
}

.contact-label { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: #8f6e44; font-weight: 700; }
.contact-value { margin-top: 10px; font-size: 15px; line-height: 1.76; color: var(--text); }

.site-footer { padding: 24px 0 40px; }

.footer-panel {
  display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 24px;
  border-radius: 24px; border: 1px solid var(--line); background: var(--surface); box-shadow: var(--shadow);
}

.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-logo { width: 56px; height: 56px; object-fit: contain; }
.footer-name { font-size: 28px; line-height: 0.98; font-weight: 700; }
.footer-tag, .footer-copy { font-size: 14px; color: var(--muted); }

@media (max-width: 1080px) {
  .hero-grid, .two-col, .mission-grid, .future-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-grid, .panel { padding: 32px; }
  .footer-panel { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 28px), 1240px); }
  .header-inner { min-height: 78px; position: relative; }
  .brand-logo { width: 60px; height: 60px; }
  .brand-name { font-size: 24px; }
  .brand-sub { display: none; }

  .nav-toggle { display: inline-flex; flex-shrink: 0; }

  .nav {
    position: absolute; left: 0; right: 0; top: calc(100% + 8px); padding: 12px; border: 1px solid var(--line);
    border-radius: 20px; background: rgba(255, 253, 249, 0.98); box-shadow: var(--shadow);
    display: none; flex-direction: column; align-items: stretch; gap: 4px;
  }

  .nav.is-open { display: flex; }
  .nav a { padding: 12px 14px; }

  .hero { padding-top: 16px; }
  .hero-grid, .panel { padding: 24px; }
  .hero-shell { border-radius: 28px; }
  .hero h1 { max-width: 12ch; font-size: clamp(42px, 10vw, 58px); }
  .hero-lead { font-size: 17px; }
  .hero-support { font-size: 14px; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .section-title { font-size: 34px; }
  .body-copy, .body-copy p { font-size: 16px; }
  .footer-name { font-size: 24px; }
}


.footer-copy-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.footer-contact {
  font-size: 14px;
  color: var(--muted);
}

.footer-contact a {
  text-decoration: none;
}

.footer-contact a:hover,
.footer-contact a:focus-visible {
  text-decoration: underline;
  outline: none;
}

@media (max-width: 1080px) {
  .footer-copy-wrap {
    align-items: flex-start;
  }
}
