:root {
  --paper: #f6f6f4;
  --surface: #ffffff;
  --ink: #1b1e21;
  --muted: #6a7076;
  --line: #dbdbd7;
  --accent: #3c4a57;
  --radius: 2px;
  --wrap: 1140px;
  --gap: 1.5rem;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --font-head: "Source Serif 4", Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.005em;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 0.75rem;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2rem, 4.4vw, 3.05rem);
}

h2 {
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
}

h3 {
  font-size: 1.09rem;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0;
}

p {
  margin: 0 0 1rem;
  text-wrap: pretty;
}

p:last-child {
  margin-bottom: 0;
}

ul {
  margin: 0 0 1rem;
  padding-left: 1.1rem;
}

li {
  margin-bottom: 0.4rem;
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.eyebrow {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.85rem;
}

.lede {
  font-size: 1.09rem;
  color: var(--ink);
  max-width: 62ch;
}

.muted {
  color: var(--muted);
}

.small {
  font-size: 0.86rem;
}

.rule {
  height: 1px;
  background: var(--line);
  border: 0;
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(246, 246, 244, 0.94);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink);
}

.brand:hover {
  text-decoration: none;
}

.brand-logo {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border: 1px solid var(--line);
  background: var(--surface);
  object-fit: cover;
}

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

.brand-name {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.15;
}

.brand-sub {
  font-size: 0.66rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  font-size: 1.3rem;
  cursor: pointer;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav li {
  margin: 0;
}

.site-nav a {
  display: inline-block;
  padding: 0.35rem 0;
  font-size: 0.88rem;
  color: var(--ink);
  border-bottom: 1px solid transparent;
}

.site-nav a:hover {
  text-decoration: none;
  border-bottom-color: var(--muted);
}

.site-nav a[aria-current="page"] {
  border-bottom-color: var(--ink);
}

section {
  padding: 4.5rem 0;
  border-bottom: 1px solid var(--line);
}

section:last-of-type {
  border-bottom: 0;
}

.section-head {
  max-width: 68ch;
  margin-bottom: 2.25rem;
}

.hero {
  padding: 0;
  border-bottom: 1px solid var(--line);
}

.hero-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0;
}

.hero-copy {
  flex: 1 1 440px;
  padding: 5rem 3rem 5rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-copy p {
  max-width: 54ch;
}

.hero-figure {
  flex: 1 1 380px;
  position: relative;
  min-height: 380px;
  border-left: 1px solid var(--line);
}

.hero-figure img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(105%);
}

.facts {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.fact {
  flex: 1 1 220px;
  padding: 1.5rem 1.5rem;
  border-right: 1px solid var(--line);
}

.fact:last-child {
  border-right: 0;
}

.fact dt {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.fact dd {
  margin: 0;
  font-family: var(--font-head);
  font-size: 1.02rem;
}

.grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.grid > * {
  flex: 1 1 300px;
}

.grid-2 > * {
  flex: 1 1 420px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
}

.card i {
  font-size: 22px;
  color: var(--accent);
  display: block;
  margin-bottom: 0.9rem;
}

.card p {
  color: var(--muted);
  font-size: 0.94rem;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: flex-start;
}

.split > .split-main {
  flex: 1 1 460px;
}

.split > .split-side {
  flex: 1 1 300px;
}

.figure-frame {
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 0.5rem;
}

.figure-frame img {
  filter: grayscale(100%) contrast(104%);
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.figure-frame figcaption {
  font-size: 0.78rem;
  color: var(--muted);
  padding: 0.7rem 0.25rem 0.15rem;
}

.list-plain {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-plain li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.94rem;
}

.list-plain li:last-child {
  border-bottom: 0;
}

.list-plain i {
  color: var(--accent);
  font-size: 18px;
  line-height: 1.5;
}

.area {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 2.1rem 0;
  border-bottom: 1px solid var(--line);
}

.area:last-child {
  border-bottom: 0;
}

.area-label {
  flex: 0 0 220px;
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.area-label i {
  font-size: 20px;
  color: var(--accent);
}

.area-label h3 {
  margin: 0;
}

.area-body {
  flex: 1 1 420px;
  color: var(--muted);
  font-size: 0.95rem;
}

.faq {
  border-top: 1px solid var(--line);
}

.faq details {
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  padding: 1.15rem 1.25rem;
  font-weight: 600;
  font-size: 0.97rem;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary i {
  color: var(--muted);
  font-size: 18px;
  flex: 0 0 auto;
}

.faq details[open] summary i {
  transform: rotate(45deg);
}

.faq .faq-body {
  padding: 0 1.25rem 1.3rem;
  color: var(--muted);
  font-size: 0.94rem;
  max-width: 78ch;
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-list li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.contact-list li:last-child {
  border-bottom: 0;
}

.contact-list i {
  font-size: 20px;
  color: var(--accent);
}

.contact-list span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.2rem;
}

.map-frame {
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 0.5rem;
}

.map-frame figcaption {
  padding: 0.7rem 0.25rem 0.15rem;
}

.map-frame address {
  font-style: normal;
}

.contact-list address {
  font-style: normal;
}

.map-frame img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  filter: grayscale(100%);
}

.notice {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.legal {
  max-width: 78ch;
}

.legal h2 {
  margin-top: 2.5rem;
  font-size: 1.25rem;
}

.legal h2:first-of-type {
  margin-top: 1.5rem;
}

.legal table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin: 0 0 1.25rem;
}

.legal th,
.legal td {
  text-align: left;
  vertical-align: top;
  padding: 0.7rem 0.8rem;
  border: 1px solid var(--line);
  background: var(--surface);
}

.legal th {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding: 3.5rem 0 1.5rem;
}

.footer-cols {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
}

.footer-col {
  flex: 1 1 260px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.footer-col a {
  color: var(--ink);
}

.footer-col address {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  align-items: center;
  margin-top: 3rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
  color: var(--muted);
}

.cookie {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  max-width: 560px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(27, 30, 33, 0.12);
  padding: 1.35rem 1.4rem;
}

.cookie[hidden] {
  display: none;
}

.cookie h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  margin: 0 0 0.5rem;
}

.cookie p {
  font-size: 0.86rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.62rem 1.15rem;
  border-radius: var(--radius);
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  font-size: 0.86rem;
  font-family: inherit;
  cursor: pointer;
}

.btn:hover {
  text-decoration: none;
  background: var(--accent);
  border-color: var(--accent);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.btn-outline:hover {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--muted);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem 1.25rem 1rem;
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .site-nav a {
    display: block;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:hover {
    border-bottom-color: var(--line);
  }

  .hero-copy {
    padding: 3.25rem 0 2.75rem;
  }

  .hero-figure {
    border-left: 0;
    border-top: 1px solid var(--line);
    min-height: 260px;
    flex-basis: 100%;
  }

  section {
    padding: 3.25rem 0;
  }

  .fact {
    flex-basis: 100%;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .fact:last-child {
    border-bottom: 0;
  }

  .area-label {
    flex-basis: 100%;
  }
}
