:root {
  --pine: #132017;
  --pine-2: #1b2c22;
  --pine-3: #24362a;
  --birch: #e8ebe3;
  --birch-2: #d5dccf;
  --wax: #c9a227;
  --wax-deep: #8d7016;
  --ink: #172018;
  --muted: #4e5b50;
  --line: rgba(201, 162, 39, 0.35);
  --serif: "Instrument Serif", "Iowan Old Style", Georgia, serif;
  --sans: "Schibsted Grotesk", "Segoe UI", system-ui, sans-serif;
  --pad: clamp(1.25rem, 4vw, 2.75rem);
  --wide: 70rem;
  --measure: 38rem;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 4.6rem;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--birch);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.55;
  letter-spacing: -0.011em;
}

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

a { color: inherit; }

.skip {
  position: absolute;
  left: 0.75rem;
  top: -3rem;
  background: var(--wax);
  color: var(--pine);
  padding: 0.5rem 0.85rem;
  z-index: 80;
}
.skip:focus { top: 0.75rem; }

.wrap {
  width: min(var(--wide), calc(100% - 2 * var(--pad)));
  margin-inline: auto;
}

/* Header */
.top {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(19, 32, 23, 0.94);
  color: var(--birch);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--birch);
  min-width: 0;
}

.brand svg {
  width: 1.7rem;
  height: 1.7rem;
  color: var(--wax);
  flex: none;
}

.brand-name {
  font-family: var(--serif);
  font-size: 1.22rem;
  line-height: 1;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

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

.nav a {
  text-decoration: none;
  font-size: 0.95rem;
  color: var(--birch);
}

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

.nav-cta {
  background: var(--wax);
  color: var(--pine) !important;
  padding: 0.45rem 0.85rem;
  font-weight: 600;
  text-decoration: none;
}

.nav-cta:hover { filter: brightness(1.05); }

.nav-toggle {
  display: none;
  background: transparent;
  color: var(--birch);
  border: 1px solid var(--line);
  padding: 0.4rem 0.7rem;
  font: inherit;
  font-size: 0.9rem;
}

.nav-toggle:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--wax);
  outline-offset: 3px;
}

/* Hero */
.hero {
  background: var(--pine);
  color: var(--birch);
  padding: 3.2rem 0 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: start;
  padding-bottom: 2.2rem;
}

.kicker {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--wax);
  margin: 0 0 0.85rem;
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.45rem, 6.2vw, 4.6rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 0 0 1.2rem;
  max-width: 11ch;
}

.lede {
  max-width: 34rem;
  color: #d5dccf;
  font-size: 1.08rem;
  margin: 0 0 1.6rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 2.4rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  padding: 0.55rem 1.1rem;
  text-decoration: none;
  font-weight: 600;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
}

.btn-wax {
  background: var(--wax);
  color: var(--pine);
}

.btn-ghost {
  background: transparent;
  color: var(--birch);
  border: 1px solid var(--line);
}

.btn:hover { filter: brightness(1.06); }

.print {
  margin: 0;
  background: #e6dfcc;
  padding: 0.7rem 0.7rem 0;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.print img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: 50% 58%;
}

.print figcaption {
  font-size: 0.75rem;
  color: var(--muted);
  padding: 0.45rem 0.2rem 0.55rem;
}

/* Facts strip */
.facts {
  background: var(--pine-2);
  color: var(--birch);
  border-top: 1px solid var(--line);
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.fact {
  padding: 1.15rem 1.1rem 1.25rem;
  border-left: 1px solid var(--line);
}

.facts-grid .fact:first-child { border-left: 0; }

.fact b {
  display: block;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--wax);
  margin-bottom: 0.2rem;
}

.fact span {
  font-size: 0.82rem;
  color: #c5cec0;
}

/* Sections */
section {
  padding: 4.4rem 0;
  scroll-margin-top: 4.6rem;
}

.section-head {
  margin-bottom: 1.8rem;
  max-width: var(--measure);
}

.section-head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 0.7rem;
}

.section-head p { margin: 0; color: var(--muted); }

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 2.4rem;
  align-items: start;
}

.split-copy p { margin: 0 0 1rem; max-width: 36rem; }

.note {
  font-size: 0.95rem;
  color: var(--muted);
}

.dark {
  background: var(--pine);
  color: var(--birch);
}

.dark .section-head p,
.dark .note { color: #c5cec0; }

.dark .split-copy p { color: #dfe4d8; }

.place-print img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.comb-print img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: 50% 45%;
}

.feature-print {
  width: min(100%, 40rem);
  margin-inline: auto;
}
.feature-print.wide { width: 100%; }

/* Pickup */
.addr {
  font-family: var(--serif);
  font-size: 1.55rem;
  line-height: 1.3;
  margin: 0 0 1rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  margin-top: 2rem;
  border: 1px solid var(--line);
}

.step {
  background: var(--pine-2);
  padding: 1.2rem 1.15rem 1.35rem;
}

.step strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--wax);
  margin-bottom: 0.4rem;
}

.step p { margin: 0; color: #d5dccf; font-size: 0.98rem; }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2.5rem;
}

.dl {
  display: grid;
  grid-template-columns: 12rem minmax(0, 1fr);
  gap: 0.55rem 1rem;
  margin: 1.4rem 0 0;
  font-size: 0.98rem;
}

.dl dt { color: var(--muted); }
.dl dd { margin: 0; }

.slot {
  background:
    linear-gradient(180deg, rgba(19, 32, 23, 0.15), rgba(19, 32, 23, 0.55)),
    var(--pine-3);
  color: var(--birch);
  min-height: 18rem;
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--line);
  position: relative;
}
.slot::before {
  content: "";
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  width: 2.4rem;
  height: 2.4rem;
  background: url("/img/mark.svg") center / contain no-repeat;
  color: var(--wax);
  opacity: 0.7;
}

.slot p { margin: 0.35rem 0 0; color: #c5cec0; font-size: 0.95rem; }
.slot strong { font-family: var(--serif); font-size: 1.4rem; font-weight: 400; color: var(--wax); }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 2.4rem;
  align-items: start;
}

.contact-aside h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  margin: 0 0 0.8rem;
}

.ph {
  font-family: var(--sans);
  color: var(--wax-deep);
  background: #efe6c4;
  padding: 0.05rem 0.28rem;
}

.form {
  background: #f4f6f0;
  border: 1px solid var(--birch-2);
  padding: 1.4rem;
}

.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin: 0.7rem 0 0.3rem;
}

input, select, textarea {
  width: 100%;
  font: inherit;
  color: var(--ink);
  background: #fff;
  border: 1px solid #c5cec0;
  padding: 0.55rem 0.65rem;
  border-radius: 0;
}

textarea { min-height: 7.2rem; resize: vertical; }

.form .btn { margin-top: 1rem; width: 100%; }

.confirm {
  background: var(--pine);
  color: var(--birch);
  padding: 1.6rem 1.4rem;
}

.confirm h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.8rem;
  margin: 0 0 0.5rem;
}

.confirm p { margin: 0; color: #d5dccf; }

/* Footer */
.foot {
  background: var(--pine);
  color: var(--birch);
  padding: 2.2rem 0 5.6rem;
  border-top: 1px solid var(--line);
}

.foot-inner {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-items: end;
}

.foot a { color: var(--wax); text-decoration: none; }
.foot a:hover { text-decoration: underline; }

.foot-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--serif);
  font-size: 1.2rem;
}

.foot-brand svg { width: 1.3rem; height: 1.3rem; color: var(--wax); }

.foot small { display: block; color: #c5cec0; margin-top: 0.35rem; font-size: 0.82rem; }

.foot nav { display: flex; flex-wrap: wrap; gap: 0.9rem 1.2rem; }

.mobile-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 45;
  background: var(--pine);
  border-top: 1px solid var(--line);
  grid-template-columns: 1fr 1fr;
}

.mobile-bar a {
  text-align: center;
  padding: 0.85rem 0.5rem calc(0.85rem + env(safe-area-inset-bottom));
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.mobile-bar a:first-child {
  background: var(--wax);
  color: var(--pine);
}

.mobile-bar a:last-child { color: var(--birch); }

body:has(.nav.open) .mobile-bar { display: none; }

@media (max-width: 860px) {
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--pine);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid var(--line);
    padding: 0.4rem 0 0.8rem;
  }
  .nav.open {
    display: flex;
    min-height: calc(100dvh - 4.1rem);
    padding-bottom: 5rem;
  }
  .nav a { padding: 0.7rem var(--pad); }
  .nav-cta { margin: 0.4rem var(--pad); text-align: center; }
  .nav-toggle { display: inline-flex; }
  .hero-grid,
  .split,
  .about-grid,
  .contact-grid,
  .steps {
    grid-template-columns: 1fr;
  }
  .facts-grid { grid-template-columns: 1fr 1fr; }
  .facts-grid .fact {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .facts-grid .fact:nth-child(odd) { border-right: 1px solid var(--line); }
  .facts-grid .fact:nth-child(-n+2) { border-top: 0; }
  .actions { flex-direction: column; align-items: stretch; }
  .actions .btn { width: 100%; }
  .hero { padding-top: 2rem; }
  .hero h1 { max-width: none; }
  .dl { grid-template-columns: 1fr; gap: 0.15rem; }
  .dl dt { margin-top: 0.55rem; }
  .row { grid-template-columns: 1fr; }
  .mobile-bar { display: grid; }
  .foot { padding-bottom: 6.2rem; }
  .top { position: sticky; }
}

@media (max-width: 430px) {
  .hero h1 { font-size: 2.35rem; }
  .print { padding: 0.45rem 0.45rem 0; }
}
