/* ░░░░░░░░░░░░░░░░░░░░ Heberleins — black & yellow editorial ░░░░░░░░░░░░░░░░░░░░ */

:root {
  /* Warm, muted palette — beige paper, deep brown ink, antique-gold accent */
  --black: #261d15;          /* deep warm brown (was pure black) */
  --ink: #2e251c;            /* body text — warm dark brown */
  --ink-soft: #4a3e30;
  --yellow: #c39a3f;         /* muted antique gold (was bright #ffcb05) */
  --yellow-deep: #a47f2b;    /* deeper ochre for hover/accent */
  --yellow-soft: #e8d5a8;    /* pale gold for fills */
  --paper: #f1e8d3;          /* warm beige paper */
  --paper-warm: #e6dabe;     /* slightly deeper beige */
  --cream: #faf3e2;          /* light cream for cards */
  --line: #2e251c;
  --rule: rgba(46, 37, 28, 0.16);
  --rule-light: rgba(241, 232, 211, 0.18);
  --serif: "Instrument Serif", "Cormorant Garamond", serif;
  --sans: "Geist", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: "Geist Mono", "JetBrains Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--paper); color: var(--ink); }
body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
em { font-style: italic; font-family: var(--serif); }
.mono { font-family: var(--mono); font-size: 11px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; }
.serif-display { font-family: var(--serif); font-weight: 400; font-size: clamp(40px, 5.6vw, 88px); line-height: 0.96; letter-spacing: -0.02em; }
.serif-display em { font-style: italic; }
.display-mega { font-family: var(--serif); font-weight: 400; font-size: clamp(54px, 8.5vw, 144px); line-height: 0.9; letter-spacing: -0.025em; }
.display-mega.light { color: var(--paper); }
.display-mega em { font-style: italic; }

/* ░░░░░░░░ Ribbon ░░░░░░░░ */
.ribbon {
  background: var(--black);
  color: var(--yellow);
  border-bottom: 1px solid #000;
  overflow: hidden;
  padding: 9px 0;
}
.ribbon-track {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.ribbon-track span { flex: 0 0 auto; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ░░░░░░░░ Top bar ░░░░░░░░ */
.topbar {
  background: var(--cream);
  border-bottom: 1px solid var(--rule);
  color: var(--ink-soft);
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 10px 40px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.005em;
}
.topbar-hours {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.topbar-hours svg {
  width: 14px;
  height: 14px;
  opacity: 0.6;
  flex-shrink: 0;
}
.topbar-social {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.topbar-social a {
  display: inline-flex;
  color: var(--ink-soft);
  transition: color 200ms, transform 200ms;
}
.topbar-social a:hover {
  color: var(--yellow-deep);
  transform: translateY(-1px);
}
.topbar-social svg {
  width: 16px;
  height: 16px;
  display: block;
}
@media (max-width: 720px) {
  .topbar-inner { justify-content: center; padding: 8px 16px; gap: 16px; }
  .topbar-hours { display: none; }
}

/* ░░░░░░░░ Nav ░░░░░░░░ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  padding: 18px 40px;
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  backdrop-filter: saturate(140%) blur(8px);
}
.nav-brand img {
  height: 56px;
  width: auto;
  filter: drop-shadow(0 1px 0 rgba(0,0,0,0.05));
}
.nav-links {
  display: flex;
  gap: 20px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  justify-self: center;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.nav-links a.is-active::after { transform: scaleX(1); }
.nav-links a {
  position: relative;
  padding: 6px 2px;
  transition: color 200ms;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-meta {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-self: end;
  font-size: 14px;
}
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  transition: color 200ms;
}
.nav-phone svg {
  width: 14px;
  height: 14px;
  opacity: 0.7;
  flex-shrink: 0;
}
.nav-phone:hover { color: var(--yellow-deep); }
.nav-phone:hover svg { opacity: 1; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--black);
  color: var(--yellow);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  transition: transform 200ms;
}
.nav-cta:hover { transform: translateX(2px); }

/* ░░░░░░░░ Hero ░░░░░░░░ */
.hero {
  position: relative;
  padding: 56px 40px 80px;
  background: var(--paper);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(10,10,10,0.06) 1px, transparent 0);
  background-size: 28px 28px;
  pointer-events: none;
  opacity: 0.6;
  mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  grid-template-rows: auto auto 1fr auto;
  grid-template-areas:
    "eyebrow eyebrow"
    "title   image"
    "lede    image"
    "cta     image";
  gap: 36px 56px;
  max-width: 1480px;
  margin: 0 auto;
}
.hero-eyebrow {
  grid-area: eyebrow;
  display: flex;
  gap: 14px;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(10,10,10,0.7);
}
.hero-eyebrow .dot { color: var(--yellow-deep); }
.hero-eyebrow .sep { opacity: 0.4; }
.hero-title {
  grid-area: title;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(64px, 10.5vw, 180px);
  line-height: 0.88;
  letter-spacing: -0.035em;
  color: var(--black);
  margin-top: -8px;
}
.hero-title .line { display: block; }
.hero-title em {
  font-style: italic;
  position: relative;
  display: inline-block;
  color: var(--yellow-deep);
  padding: 0 0.05em;
}
.hero-title em::after {
  content: "";
  position: absolute;
  left: 0.05em; right: 0.05em;
  bottom: 0.08em;
  height: 0.12em;
  background: var(--yellow);
  opacity: 0.55;
  z-index: -1;
}
.hero-lede {
  grid-area: lede;
  max-width: 460px;
  font-size: 17px;
  line-height: 1.55;
  color: rgba(20,20,20,0.86);
  align-self: start;
  margin-top: 12px;
}
.hero-image {
  grid-area: image;
  position: relative;
  aspect-ratio: 4 / 5;
  min-height: 100%;
  overflow: hidden;
  border-radius: 4px;
  background: var(--ink);
}
.hero-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s ease;
}
.hero-image:hover img { transform: scale(1.03); }
.hero-stamp {
  position: absolute;
  bottom: 16px; left: 16px;
  display: flex;
  gap: 8px;
  background: var(--paper);
  color: var(--ink);
  padding: 8px 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 3px;
  border: 1px solid var(--rule);
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}
.hero-cta {
  grid-area: cta;
  display: flex;
  gap: 12px;
  align-items: center;
  align-self: end;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: transform 220ms, box-shadow 220ms;
}
.btn--yellow {
  background: var(--yellow);
  color: var(--black);
  box-shadow: 0 0 0 0 var(--yellow);
}
.btn--yellow:hover { transform: translateY(-1px); box-shadow: 0 10px 24px -8px rgba(195,154,63,0.55); }
.btn--ghost { background: transparent; color: var(--black); border-color: var(--black); }
.btn--ghost:hover { background: var(--black); color: var(--paper); }

.hero-hours {
  grid-area: hours;
  align-self: end;
  background: var(--black);
  color: var(--paper);
  padding: 22px 24px;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}
.hero-hours::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--yellow);
}
.hero-hours header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--rule-light);
}
.hero-hours .status {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--yellow);
  text-transform: uppercase;
}
.hero-hours ul { list-style: none; }
.hero-hours li {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 14px;
  border-bottom: 1px dashed var(--rule-light);
}
.hero-hours li:last-child { border-bottom: 0; }
.hero-hours li span { color: rgba(246,241,228,0.7); }
.hero-hours li b { font-weight: 500; font-family: var(--mono); font-size: 13px; letter-spacing: 0.04em; }
.hours-note { margin-top: 12px; font-size: 11px; line-height: 1.5; color: rgba(246,241,228,0.55); }

/* ░░░░░░░░ Subtle word band ( replaces big marquee ) ░░░░░░░░ */
.big-marquee {
  background: var(--paper);
  color: var(--ink);
  overflow: hidden;
  padding: 18px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.big-marquee-track {
  display: flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
  animation: marquee 60s linear infinite;
}
.big-marquee-track span {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--ink);
  flex: 0 0 auto;
}
.big-marquee-track img {
  display: none;
}
.big-marquee-track span + span::before {
  content: "—";
  margin-right: 28px;
  color: rgba(46, 37, 28, 0.35);
  font-style: normal;
}

/* ░░░░░░░░ Section frame ░░░░░░░░ */
.section {
  padding: 80px 40px 80px;
  position: relative;
}
.section-head {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 1480px;
  margin: 0 auto 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--rule);
}
.section-head.dark { border-color: var(--rule-light); }
.section-head.light { border-color: var(--rule-light); color: var(--paper); }
.section-num {
  font-family: var(--mono);
  font-size: 11px;
  background: var(--black);
  color: var(--yellow);
  padding: 4px 8px;
  border-radius: 3px;
  letter-spacing: 0.08em;
}
.section-head.dark .section-num,
.section-head.light .section-num { background: var(--yellow); color: var(--black); }
.section-kicker { color: rgba(10,10,10,0.6); }
.section-head.dark .section-kicker,
.section-head.light .section-kicker { color: rgba(246,241,228,0.7); }

/* ░░░░░░░░ Butiken ░░░░░░░░ */
.section--butiken { background: var(--paper); }
.butiken-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  max-width: 1480px;
  margin: 0 auto;
  align-items: center;
}
.butiken-image {
  position: relative;
  aspect-ratio: 5 / 4;
  overflow: hidden;
  border-radius: 4px;
}
.butiken-image img { width: 100%; height: 100%; object-fit: cover; }
.img-caption {
  position: absolute;
  bottom: 12px; left: 12px;
  background: var(--paper);
  padding: 6px 10px;
  border-radius: 3px;
}
.butiken-text h2 { margin-bottom: 24px; }
.butiken-text p { font-size: 18px; line-height: 1.6; color: rgba(20,20,20,0.84); margin-bottom: 28px; max-width: 460px; }
.butiken-list {
  list-style: none;
  border-top: 1px solid var(--rule);
  margin-bottom: 32px;
}
.butiken-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 17px;
}
.butiken-list .mono {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  background: var(--black);
  color: var(--yellow);
  border-radius: 999px;
  font-size: 11px;
}
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  transition: gap 200ms;
}
.link-arrow:hover { gap: 16px; }
.link-arrow.light { color: var(--paper); }

/* ░░░░░░░░ Charkuteriet ░░░░░░░░ */
.section--chark {
  background: var(--black);
  color: var(--paper);
  padding-bottom: 120px;
}
.chark-intro {
  max-width: 1480px;
  margin: 0 auto 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: end;
}
.chark-intro h2 { color: var(--paper); }
.chark-intro h2 em { color: var(--yellow); font-style: italic; }
.chark-intro .lede { font-size: 18px; line-height: 1.6; color: rgba(246,241,228,0.78); max-width: 520px; }
.chark-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1480px;
  margin: 0 auto;
}
.chark-card {
  background: var(--ink);
  border: 1px solid var(--rule-light);
  border-radius: 6px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  transition: transform 280ms, border-color 200ms;
}
.chark-card:hover { transform: translateY(-4px); border-color: var(--yellow); }
.chark-card-num { color: var(--yellow); margin-bottom: 24px; }
.chark-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 32px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.chark-card p { font-size: 14px; line-height: 1.55; color: rgba(246,241,228,0.7); margin-bottom: auto; }
.chark-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 20px;
}
.chark-tags span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid var(--rule-light);
  border-radius: 999px;
  color: rgba(246,241,228,0.75);
}
.chark-card--yellow { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.chark-card--yellow .chark-card-num { color: var(--yellow-deep); }
.chark-card--yellow p { color: rgba(46,37,28,0.78); }
.chark-card--yellow .chark-tags span { color: var(--ink); border-color: rgba(46,37,28,0.25); }

/* ░░░░░░░░ Leverantörer ░░░░░░░░ */
.section--lev { background: var(--paper-warm); }
.lev-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  max-width: 1480px;
  margin: 0 auto;
  align-items: start;
}
.lev-lead h2 { margin-bottom: 24px; }
.lev-lead h2 em { color: var(--yellow-deep); font-style: italic; }
.lev-lead p { font-size: 18px; line-height: 1.6; max-width: 440px; margin-bottom: 28px; color: rgba(20,20,20,0.82); }
.lev-list { list-style: none; border-top: 1px solid rgba(10,10,10,0.18); }
.lev-list li {
  display: grid;
  grid-template-columns: 1.5fr 2fr auto;
  align-items: center;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(10,10,10,0.18);
  transition: padding-left 220ms, background 220ms;
}
.lev-list li:hover { padding-left: 12px; background: rgba(255,203,5,0.18); }
.lev-list b { font-family: var(--serif); font-size: 28px; font-weight: 400; letter-spacing: -0.01em; }
.lev-list span { font-size: 14px; color: rgba(20,20,20,0.7); }
.lev-list i {
  font-style: normal;
  padding: 4px 10px;
  background: var(--black);
  color: var(--yellow);
  border-radius: 999px;
  font-size: 10px;
}

/* ░░░░░░░░ Historia ░░░░░░░░ */
.section--historia {
  background: var(--black);
  color: var(--paper);
  padding: 100px 40px 120px;
  position: relative;
  overflow: hidden;
}
.section--historia::before {
  content: "HEBERLEINS";
  position: absolute;
  bottom: -40px;
  left: -20px;
  right: -20px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 28vw;
  line-height: 0.8;
  color: rgba(241, 232, 211, 0.05);
  letter-spacing: -0.04em;
  pointer-events: none;
  white-space: nowrap;
}
.hist-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  max-width: 1480px;
  margin: 0 auto;
  align-items: start;
}
.hist-image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 4px;
  position: relative;
}
.hist-image img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(20%) contrast(1.05);
}
.hist-image::after {
  content: "Familjen Heberlein";
  position: absolute;
  top: 16px; left: 16px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--paper);
  background: rgba(38, 29, 21, 0.65);
  backdrop-filter: blur(4px);
  padding: 5px 10px;
  border-radius: 3px;
  border: 1px solid rgba(241, 232, 211, 0.2);
}
.hist-text { padding-top: 8px; }
.hist-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.35;
  color: var(--paper);
  max-width: 640px;
  margin-bottom: 40px;
  position: relative;
}
.quote-mark {
  display: block;
  font-size: 4em;
  line-height: 0.5;
  color: var(--yellow);
  margin-bottom: 16px;
}
.hist-text .display-mega { margin-bottom: 28px; }
.hist-text .display-mega em { color: var(--yellow); font-style: italic; }
.hist-body { font-size: 17px; line-height: 1.65; color: rgba(246,241,228,0.78); max-width: 560px; margin-bottom: 36px; }
.hist-links { display: flex; gap: 28px; flex-wrap: wrap; }

/* ░░░░░░░░ Triptych ░░░░░░░░ */
.section--triptych { background: var(--paper); }
.triptych {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1480px;
  margin: 0 auto;
}
.trip-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: 6px;
  overflow: hidden;
  min-height: 480px;
  transition: transform 280ms, box-shadow 280ms;
}
.trip-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -20px rgba(0,0,0,0.25); }
.trip-img { aspect-ratio: 16 / 11; overflow: hidden; background: var(--ink); }
.trip-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s; }
.trip-card:hover .trip-img img { transform: scale(1.06); }
.trip-body { padding: 28px 24px; display: flex; flex-direction: column; flex: 1; gap: 14px; }
.trip-body h3 {
  font-family: var(--serif); font-weight: 400;
  font-size: 36px; line-height: 1.02; letter-spacing: -0.02em;
}
.trip-body h3 em { font-style: italic; }
.trip-body p { font-size: 14px; line-height: 1.55; color: rgba(20,20,20,0.7); }
.trip-cta {
  margin-top: auto;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
  display: flex; justify-content: space-between; align-items: center;
}
.trip-cta em { font-style: normal; font-family: var(--sans); font-size: 16px; }
.trip-card--yellow { background: var(--paper-warm); border-color: var(--paper-warm); }
.trip-card--yellow .trip-body { padding-top: 56px; }
.trip-card--yellow .trip-cta { border-color: rgba(46,37,28,0.2); }
.trip-card--yellow .trip-body p { color: rgba(46,37,28,0.78); }
.trip-decor { position: absolute; right: 20px; top: 20px; font-size: 36px; opacity: 0.6; }
.trip-card--dark { background: var(--black); color: var(--paper); border-color: var(--black); }
.trip-card--dark .trip-body { padding-top: 56px; flex: 1; }
.trip-card--dark .trip-body p { color: rgba(246,241,228,0.7); }
.trip-card--dark .trip-cta { border-color: var(--rule-light); }
.trip-play { position: absolute; top: 24px; right: 24px; color: var(--yellow); }

/* ░░░░░░░░ News ░░░░░░░░ */
.section--news { background: var(--paper); }
.news-head {
  display: flex; justify-content: space-between; align-items: end; gap: 24px;
  max-width: 1480px; margin: 0 auto 28px;
  padding-bottom: 24px;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1480px;
  margin: 0 auto;
}
.news-card {
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 220px;
  transition: border-color 200ms;
}
.news-card:hover { border-color: var(--black); }
.news-card header { display: flex; align-items: center; gap: 8px; color: rgba(20,20,20,0.6); }
.news-dot { color: var(--yellow-deep); }
.news-card p { font-size: 16px; line-height: 1.55; }
.news-card footer {
  margin-top: auto;
  display: flex; gap: 18px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(20,20,20,0.5);
  padding-top: 16px;
  border-top: 1px solid var(--rule);
}
.news-card--yellow { background: var(--paper-warm); border-color: var(--paper-warm); }
.news-card--yellow header { color: rgba(46,37,28,0.7); }
.news-card--yellow .news-dot { color: var(--yellow-deep); }
.news-card--yellow footer { border-color: rgba(46,37,28,0.2); color: rgba(46,37,28,0.7); }

/* ░░░░░░░░ Kontakt ░░░░░░░░ */
.section--kontakt {
  background: var(--black);
  color: var(--paper);
  padding: 100px 40px;
}
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 1480px;
  margin: 0 auto;
  align-items: start;
}
.kontakt-text .section-kicker { color: var(--yellow); display: block; margin-bottom: 24px; }
.kontakt-text h2 { margin-bottom: 24px; }
.kontakt-text h2 em { color: var(--yellow); font-style: italic; }
.kontakt-text > p { font-size: 17px; line-height: 1.6; color: rgba(246,241,228,0.78); max-width: 460px; margin-bottom: 36px; }
.kontakt-list { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 32px; }
.kontakt-list dt { color: rgba(246,241,228,0.5); margin-bottom: 8px; }
.kontakt-list dd { font-family: var(--serif); font-size: 22px; line-height: 1.3; }
.kontakt-list a { border-bottom: 1px solid transparent; transition: border-color 200ms; }
.kontakt-list a:hover { border-color: var(--yellow); }
.kontakt-map {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid var(--rule-light);
}
.kontakt-map iframe {
  width: 100%; height: 100%;
  border: 0;
  filter: grayscale(70%) contrast(1.1) brightness(0.9);
}
.kontakt-stamp {
  position: absolute;
  bottom: 16px; left: 16px;
  background: var(--paper);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border: 1px solid var(--rule);
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
}

/* ░░░░░░░░ Footer ░░░░░░░░ */
.foot {
  background: var(--paper);
  padding: 80px 40px 40px;
  border-top: 1px solid var(--rule);
}
.foot-top { max-width: 1480px; margin: 0 auto 56px; overflow: hidden; }
.foot-mega {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(120px, 22vw, 360px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--black);
  margin-bottom: -0.1em;
}
.foot-grid {
  max-width: 1480px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 32px;
  padding: 48px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.foot-col h4 { margin-bottom: 16px; color: rgba(10,10,10,0.55); font-weight: 500; }
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; font-size: 15px; }
.foot-col a { transition: color 200ms; }
.foot-col a:hover { color: var(--yellow-deep); }
.foot-logo { height: 48px; width: auto; margin-bottom: 14px; }
.foot-col .mono { color: rgba(10,10,10,0.6); line-height: 1.6; }
.foot-bottom {
  max-width: 1480px;
  margin: 24px auto 0;
  display: flex; justify-content: space-between; gap: 24px;
  color: rgba(10,10,10,0.5);
}

/* ░░░░░░░░ Responsive ░░░░░░░░ */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "eyebrow"
      "title"
      "lede"
      "image"
      "cta";
  }
  .chark-cards, .triptych, .news-grid { grid-template-columns: repeat(2, 1fr); }
  .butiken-grid, .lev-grid, .hist-grid, .kontakt-grid { grid-template-columns: 1fr; gap: 40px; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .nav { grid-template-columns: auto 1fr; }
  .nav-meta { justify-self: end; }
}
@media (max-width: 1100px) {
  .nav-links { display: none; }
}
@media (max-width: 640px) {
  .section, .hero, .section--kontakt, .foot { padding-left: 20px; padding-right: 20px; }
  .nav { padding: 14px 20px; }
  .chark-cards, .triptych, .news-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .kontakt-list { grid-template-columns: 1fr; }
  .foot-bottom { flex-direction: column; }
}


/* ░░░░░░░░░░░░░░░░░░░░ Subpage patterns ░░░░░░░░░░░░░░░░░░░░ */

.subhero {
  position: relative;
  padding: 48px 40px 64px;
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
}
.subhero-inner {
  max-width: 1480px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 56px;
  align-items: end;
}
.crumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(46,37,28,0.6);
  margin-bottom: 28px;
}
.crumb a { transition: color 200ms; }
.crumb a:hover { color: var(--yellow-deep); }
.crumb .sep { opacity: 0.4; }
.crumb .now { color: var(--ink); }
.subhero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(56px, 8.5vw, 140px);
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--black);
  margin-bottom: 28px;
}
.subhero h1 em { color: var(--yellow-deep); font-style: italic; }
.subhero p.lede {
  font-size: 18px;
  line-height: 1.55;
  max-width: 540px;
  color: rgba(46,37,28,0.84);
}
.subhero-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 4px;
  background: var(--ink);
}
.subhero-image img { width: 100%; height: 100%; object-fit: cover; }

/* Generic content block */
.block {
  padding: 80px 40px;
}
.block--dark { background: var(--black); color: var(--paper); }
.block--warm { background: var(--paper-warm); }
.block--cream { background: var(--cream); }
.block-inner { max-width: 1480px; margin: 0 auto; }
.block-head {
  display: grid;
  grid-template-columns: minmax(140px, 1fr) 2.2fr;
  gap: 32px 56px;
  align-items: baseline;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rule);
}
.block--dark .block-head { border-color: var(--rule-light); }
.block-eyebrow { color: rgba(46,37,28,0.55); }
.block--dark .block-eyebrow { color: rgba(241,232,211,0.6); }
.block h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(38px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.025em;
}
.block h2 em { color: var(--yellow-deep); font-style: italic; }
.block--dark h2 em { color: var(--yellow); }

/* Product / chark detail */
.prod-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  padding: 56px 0;
  border-bottom: 1px solid var(--rule);
  align-items: start;
}
.prod-row:last-child { border-bottom: 0; }
.prod-row .num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--yellow-deep);
  margin-bottom: 12px;
}
.prod-row h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.prod-row h3 em { font-style: italic; color: var(--yellow-deep); }
.prod-row p { font-size: 17px; line-height: 1.6; color: rgba(46,37,28,0.82); max-width: 520px; }
.prod-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  margin: 0;
  padding: 0;
}
.prod-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  padding: 16px 20px 16px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 15px;
  min-height: 56px;
}
.prod-list.cols-1 { grid-template-columns: 1fr; }
.prod-list li b { font-family: var(--serif); font-weight: 400; font-size: 20px; }
.prod-list li span { font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(46,37,28,0.55); }

/* Process / 3-step */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule-light);
  border-bottom: 1px solid var(--rule-light);
}
.steps > div {
  padding: 40px 32px;
  border-right: 1px solid var(--rule-light);
}
.steps > div:last-child { border-right: 0; }
.step-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--yellow);
  margin-bottom: 16px;
}
.step-title {
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1.05;
  margin-bottom: 12px;
}
.step-title em { font-style: italic; color: var(--yellow); }
.step-body { font-size: 15px; line-height: 1.6; color: rgba(241,232,211,0.75); }

/* Quote pull */
.pullquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.2;
  max-width: 980px;
  margin: 0 auto;
}
.pullquote-mark { color: var(--yellow-deep); font-size: 1.4em; line-height: 0.6; display: block; margin-bottom: 12px; }

/* Catering menu */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
}
.menu-cat {
  padding: 36px 32px;
  border-bottom: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
  background: var(--cream);
  transition: background 220ms;
}
.menu-cat:nth-child(2n) { border-right: 0; }
.menu-cat:hover { background: var(--paper-warm); }
.menu-cat-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 16px; }
.menu-cat h3 {
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.015em;
}
.menu-cat-num { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; color: var(--yellow-deep); }
.menu-cat ul { list-style: none; }
.menu-cat li {
  padding: 8px 0;
  font-size: 15px;
  border-bottom: 1px dashed var(--rule);
  color: rgba(46,37,28,0.82);
}
.menu-cat li:last-child { border-bottom: 0; }

/* Personal cards */
.team {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.team-card {
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.team-avatar {
  aspect-ratio: 1 / 1;
  background: var(--paper-warm);
  border-radius: 4px;
  margin-bottom: 16px;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 56px;
  color: var(--yellow-deep);
}
.team-card h4 { font-family: var(--serif); font-weight: 400; font-size: 26px; line-height: 1.05; }
.team-card .role { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; color: rgba(46,37,28,0.6); text-transform: uppercase; }

/* Timeline */
.timeline { border-top: 1px solid var(--rule-light); }
.timeline-row {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 56px;
  padding: 32px 0;
  border-bottom: 1px solid var(--rule-light);
  align-items: start;
}
.timeline-year {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1;
  color: var(--yellow);
}
.timeline-body h3 { font-family: var(--serif); font-size: 28px; line-height: 1.15; margin-bottom: 8px; color: var(--paper); }
.timeline-body p { font-size: 16px; line-height: 1.6; color: rgba(241,232,211,0.75); max-width: 640px; }

/* Form */
.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  max-width: 720px;
}
.form .full { grid-column: 1 / -1; }
.form label {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(241,232,211,0.7);
  margin-bottom: 8px;
}
.form input, .form textarea, .form select {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(241,232,211,0.3);
  padding: 12px 0;
  color: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  transition: border-color 200ms;
}
.form input:focus, .form textarea:focus, .form select:focus {
  outline: 0;
  border-color: var(--yellow);
}
.form textarea { min-height: 100px; resize: vertical; }
.form button {
  background: var(--yellow);
  color: var(--black);
  padding: 16px 28px;
  border: 0;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  justify-self: start;
  transition: transform 200ms;
}
.form button:hover { transform: translateY(-1px); }

/* Big address card */
.addr-card {
  background: var(--paper);
  color: var(--ink);
  padding: 40px;
  border-radius: 4px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.addr-card dt { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(46,37,28,0.55); margin-bottom: 8px; }
.addr-card dd { font-family: var(--serif); font-size: 24px; line-height: 1.3; }

/* Sub-CTA */
.sub-cta {
  background: var(--black);
  color: var(--paper);
  padding: 80px 40px;
  text-align: center;
}
.sub-cta h2 {
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 88px);
  line-height: 1;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
}
.sub-cta h2 em { color: var(--yellow); font-style: italic; }
.sub-cta p { font-size: 17px; line-height: 1.55; color: rgba(241,232,211,0.78); max-width: 540px; margin: 0 auto 32px; }
.sub-cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.sub-cta .btn--yellow { color: var(--ink); }
.sub-cta .btn--ghost { color: var(--paper); border-color: var(--paper); }
.sub-cta .btn--ghost:hover { background: var(--paper); color: var(--ink); }

@media (max-width: 900px) {
  .subhero-inner, .block-head, .prod-row { grid-template-columns: 1fr; gap: 32px; }
  .menu-grid { grid-template-columns: 1fr; }
  .menu-cat { border-right: 0; }
  .steps { grid-template-columns: 1fr; }
  .steps > div { border-right: 0; border-bottom: 1px solid var(--rule-light); }
  .team { grid-template-columns: repeat(2, 1fr); }
  .timeline-row { grid-template-columns: 1fr; gap: 16px; }
  .addr-card, .form { grid-template-columns: 1fr; }
  .prod-list { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .subhero, .block, .sub-cta { padding-left: 20px; padding-right: 20px; }
  .team { grid-template-columns: 1fr; }
}


/* ░░░░░░░░░░░░░░░░░░░░ Extra subpage components ░░░░░░░░░░░░░░░░░░░░ */

/* Subhero header banner image */
.subhero--banner {
  position: relative;
  padding: 0;
  background: var(--black);
  overflow: hidden;
  min-height: clamp(360px, 44vw, 560px);
  display: flex;
  align-items: stretch;
}
.subhero--banner .banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.75);
}
.subhero--banner .banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(38,29,21,0.85) 0%, rgba(38,29,21,0.3) 50%, rgba(38,29,21,0.6) 100%);
}
.subhero--banner .banner-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1480px;
  margin: auto;
  padding: 56px 40px 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-self: end;
}
.subhero--banner h1 {
  font-size: clamp(44px, 6.5vw, 104px);
  line-height: 0.95;
  letter-spacing: -0.025em;
}
.subhero--banner p.lede { max-width: 640px; }
.subhero--banner .crumb { color: rgba(241,232,211,0.7); margin-bottom: 20px; }
.subhero--banner .crumb a:hover { color: var(--yellow); }
.subhero--banner .crumb .now { color: var(--paper); }
.subhero--banner h1 { color: var(--paper); margin-bottom: 0; }
.subhero--banner h1 em { color: var(--yellow); }
.subhero--banner p.lede { color: rgba(241,232,211,0.85); font-size: 17px; max-width: 480px; }
@media (max-width: 900px) {
  .subhero--banner { min-height: clamp(320px, 60vw, 480px); }
  .subhero--banner .banner-content { grid-template-columns: 1fr; padding: 40px 20px 32px; }
  .subhero--banner h1 { font-size: clamp(38px, 9vw, 64px); }
}

/* Image gallery (Butiken) */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.gallery a {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 4px;
  background: var(--ink);
  position: relative;
}
.gallery img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery a:hover img { transform: scale(1.04); }
@media (max-width: 900px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .gallery { grid-template-columns: 1fr; }
}

/* Suppliers grid */
.suppliers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
.supplier {
  display: grid;
  grid-template-columns: 180px 1fr;
  align-items: center;
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid var(--rule);
}
.supplier:nth-last-child(-n+2) { border-bottom: 0; }
.supplier:nth-child(2n-1) { padding-right: 36px; border-right: 1px solid var(--rule); }
.supplier:nth-child(2n)   { padding-left: 36px; }
.supplier-logo {
  height: 80px;
  display: grid;
  place-items: center;
  padding: 12px;
  background: var(--cream);
  border-radius: 4px;
}
.supplier-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.supplier-body h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.05;
  margin-bottom: 6px;
}
.supplier-body p {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(46,37,28,0.7);
  margin-bottom: 10px;
}
.supplier-body a {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--yellow-deep);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}
@media (max-width: 900px) {
  .suppliers { grid-template-columns: 1fr; }
  .supplier:nth-child(2n-1) { padding-right: 0; border-right: 0; }
  .supplier:nth-child(2n)   { padding-left: 0; }
  .supplier { grid-template-columns: 100px 1fr; gap: 20px; padding: 24px 0; }
  .supplier-logo { height: 60px; }
}

/* Awards grid */
.awards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.award {
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 20px;
  aspect-ratio: 3 / 4;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.award img { max-width: 100%; max-height: 100%; object-fit: contain; }
@media (max-width: 900px) { .awards { grid-template-columns: repeat(2, 1fr); } }

/* Video grid */
.videos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.video-card {
  display: block;
  background: var(--cream);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--rule);
  transition: transform 280ms, box-shadow 280ms;
}
.video-card:hover { transform: translateY(-3px); box-shadow: 0 16px 36px -16px rgba(0,0,0,0.2); }
.video-thumb {
  aspect-ratio: 16 / 10;
  position: relative;
  overflow: hidden;
  background: var(--ink);
}
.video-thumb img { width: 100%; height: 100%; object-fit: cover; }
.video-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.4));
}
.video-play {
  position: absolute;
  bottom: 12px; left: 12px;
  width: 44px; height: 44px;
  border-radius: 999px;
  background: var(--yellow);
  display: grid;
  place-items: center;
  color: var(--ink);
  z-index: 1;
}
.video-body {
  padding: 18px 20px 22px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}
.video-body h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.1;
}
.video-body .mono { color: rgba(46,37,28,0.55); }
@media (max-width: 900px) { .videos { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .videos { grid-template-columns: 1fr; } }

/* Gåvor (gift) cards */
.gifts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gift {
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  min-height: 380px;
}
.gift:nth-child(2) { background: var(--paper-warm); border-color: var(--paper-warm); }
.gift-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--yellow-deep);
  margin-bottom: 24px;
}
.gift h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 34px;
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin-bottom: 16px;
}
.gift h3 em { font-style: italic; }
.gift p { font-size: 15px; line-height: 1.6; color: rgba(46,37,28,0.78); margin-bottom: 24px; }
.gift .price {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(46,37,28,0.6);
}
.gift .price b { color: var(--ink); font-size: 18px; font-family: var(--serif); font-weight: 400; }
@media (max-width: 900px) { .gifts { grid-template-columns: 1fr; } }

/* Personal team — with photos */
.team {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.team-card {
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.team-photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--paper-warm);
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card-body { padding: 20px 22px 24px; }
.team-card h4 { font-family: var(--serif); font-weight: 400; font-size: 26px; line-height: 1.05; margin-bottom: 6px; }
.team-card .role { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; color: rgba(46,37,28,0.6); text-transform: uppercase; display: block; margin-bottom: 14px; }
.team-card a {
  font-size: 13px;
  color: var(--yellow-deep);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}
@media (max-width: 900px) { .team { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .team { grid-template-columns: 1fr; } }

/* Two-co (two companies) split */
.twoco {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 12px;
}
.twoco-card {
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.twoco-card.twoco-card--dark { background: var(--black); border-color: var(--black); color: var(--paper); }
.twoco-card.twoco-card--dark p { color: rgba(241,232,211,0.78); }
.twoco-card .label {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(46,37,28,0.55);
}
.twoco-card.twoco-card--dark .label { color: var(--yellow); }
.twoco-card h3 { font-family: var(--serif); font-weight: 400; font-size: 32px; line-height: 1.05; letter-spacing: -0.015em; }
.twoco-card p { font-size: 15px; line-height: 1.6; color: rgba(46,37,28,0.78); }
.twoco-card .contact {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.twoco-card.twoco-card--dark .contact { border-color: var(--rule-light); }
.twoco-card.twoco-card--dark .contact a { color: var(--yellow); }
@media (max-width: 900px) { .twoco { grid-template-columns: 1fr; } }

/* Signature products */
.signatures {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.signature {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 24px 22px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.signature:nth-child(1) { background: var(--paper-warm); border-color: var(--paper-warm); }
.signature .label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--yellow-deep); margin-bottom: 12px; }
.signature h4 { font-family: var(--serif); font-weight: 400; font-size: 32px; line-height: 1; letter-spacing: -0.02em; }
.signature p { font-size: 13px; line-height: 1.55; color: rgba(46,37,28,0.75); margin-top: 12px; }
@media (max-width: 900px) { .signatures { grid-template-columns: repeat(2, 1fr); } }

/* Philosophy callout */
.philo {
  background: var(--paper-warm);
  border-radius: 4px;
  padding: 40px 44px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
}
.philo h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 36px;
  line-height: 1.02;
  letter-spacing: -0.015em;
}
.philo h3 em { font-style: italic; color: var(--yellow-deep); }
.philo ul { list-style: none; padding: 0; margin: 0; }
.philo li { padding: 12px 0; border-bottom: 1px solid rgba(46,37,28,0.18); font-size: 15px; line-height: 1.55; display: flex; gap: 12px; align-items: baseline; }
.philo li::before { content: "✓"; color: var(--yellow-deep); font-weight: 600; flex: 0 0 auto; }
.philo li.no::before { content: "✗"; color: #8a4a32; }
.philo li:last-child { border-bottom: 0; }
@media (max-width: 900px) { .philo { grid-template-columns: 1fr; padding: 28px 24px; } }

/* Generic helpers */
.block-lede {
  font-size: 18px;
  line-height: 1.65;
  max-width: 820px;
  color: rgba(46,37,28,0.84);
  margin-bottom: 32px;
}
.block--dark .block-lede { color: rgba(241,232,211,0.82); }


/* ░░░░░░░░ Nav dropdown ░░░░░░░░ */
.nav-dropdown { position: relative; }
.nav-drop-trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  position: relative;
  padding: 6px 2px;
  font-weight: 500;
  transition: color 200ms;
}
.nav-drop-caret {
  font-size: 9px;
  transition: transform 200ms;
  margin-left: 2px;
  color: var(--yellow-deep);
}
.nav-dropdown:hover .nav-drop-caret { transform: rotate(180deg); }
.nav-drop-trigger::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}
.nav-dropdown:hover .nav-drop-trigger::after,
.nav-dropdown.is-active .nav-drop-trigger::after { transform: scaleX(1); }

.nav-drop-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 220px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 8px;
  box-shadow: 0 16px 36px -16px rgba(0,0,0,0.18), 0 4px 12px -4px rgba(0,0,0,0.08);
  opacity: 0;
  visibility: hidden;
  transition: opacity 180ms, transform 220ms ease, visibility 0s linear 200ms;
  display: flex;
  flex-direction: column;
  gap: 2px;
  z-index: 60;
}
.nav-dropdown:hover .nav-drop-menu,
.nav-dropdown:focus-within .nav-drop-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  transition: opacity 180ms, transform 220ms ease, visibility 0s;
}
.nav-drop-menu::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 0; right: 0;
  height: 8px;
}
.nav-drop-menu a {
  padding: 10px 14px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
  transition: background 160ms, color 160ms, padding-left 160ms;
}
.nav-drop-menu a:hover {
  background: var(--paper-warm);
  color: var(--yellow-deep);
  padding-left: 18px;
}


/* ░░░░░░░░ Philosophy elevated section ░░░░░░░░ */
.philo-block { padding: 100px 40px 80px; }
.philo-hero {
  max-width: 880px;
  margin-bottom: 56px;
}
.philo-eyebrow {
  display: block;
  color: var(--yellow);
  margin-bottom: 24px;
}
.philo-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(56px, 8vw, 128px);
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--paper);
  margin-bottom: 28px;
}
.philo-title em { font-style: italic; color: var(--yellow); }
.philo-lede {
  font-size: 19px;
  line-height: 1.6;
  color: rgba(241,232,211,0.82);
  max-width: 640px;
}
.philo-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-bottom: 64px;
  padding: 32px 0;
  border-top: 1px solid var(--rule-light);
  border-bottom: 1px solid var(--rule-light);
}
.philo-stats > div {
  padding: 8px 24px;
  border-right: 1px solid var(--rule-light);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.philo-stats > div:first-child { padding-left: 0; }
.philo-stats > div:last-child { border-right: 0; padding-right: 0; }
.philo-stats b {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 1;
  color: var(--yellow);
  letter-spacing: -0.02em;
}
.philo-stats span {
  font-size: 13px;
  line-height: 1.4;
  color: rgba(241,232,211,0.65);
  max-width: 140px;
}
.philo-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-bottom: 40px;
}
.philo-col-label {
  display: block;
  color: rgba(241,232,211,0.55);
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rule-light);
}
.philo-col--yes .philo-col-label { color: var(--yellow); }
.philo-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.philo-col li {
  position: relative;
  padding: 12px 0 12px 28px;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(241,232,211,0.92);
  border-bottom: 1px solid rgba(241,232,211,0.08);
}
.philo-col li:last-child { border-bottom: 0; }
.philo-col--yes li::before {
  content: "";
  position: absolute;
  left: 0; top: 22px;
  width: 14px; height: 2px;
  background: var(--yellow);
}
.philo-col--no li {
  color: rgba(241,232,211,0.55);
  text-decoration: line-through;
  text-decoration-color: rgba(241,232,211,0.25);
  text-decoration-thickness: 1px;
}
.philo-col--no li::before {
  content: "✕";
  position: absolute;
  left: 0; top: 12px;
  color: rgba(255,255,255,0.3);
  font-size: 14px;
  text-decoration: none;
}
.philo-sign {
  color: rgba(241,232,211,0.45);
  text-align: right;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--rule-light);
}
@media (max-width: 900px) {
  .philo-block { padding: 60px 20px; }
  .philo-stats { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .philo-stats > div { border-right: 0; padding: 8px 0; }
  .philo-stats > div:nth-child(odd) { border-right: 1px solid var(--rule-light); padding-right: 16px; }
  .philo-stats > div:nth-child(even) { padding-left: 16px; }
  .philo-split { grid-template-columns: 1fr; gap: 32px; }
}


/* Light variant of sub-CTA */
.sub-cta--light {
  background: var(--paper-warm);
  color: var(--ink);
}
.sub-cta--light h2 { color: var(--ink); }
.sub-cta--light h2 em { color: var(--yellow-deep); }
.sub-cta--light p { color: rgba(46,37,28,0.75); }
.sub-cta--light .btn--ghost { color: var(--ink); border-color: var(--ink); }
.sub-cta--light .btn--ghost:hover { background: var(--ink); color: var(--paper); }


/* Consolidated kontakt card */
.addr-card--full {
  background: var(--paper);
  color: var(--ink);
  padding: 32px 36px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--rule);
}
.addr-card--full .addr-row {
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
}
.addr-card--full .addr-row:first-child { padding-top: 0; }
.addr-card--full .addr-row:last-child { border-bottom: 0; padding-bottom: 0; }
.addr-card--full dt {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(46,37,28,0.55);
  margin-bottom: 8px;
}
.addr-card--full dd {
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.35;
  margin: 0;
}
.addr-card--full a {
  border-bottom: 1px solid rgba(46,37,28,0.2);
  transition: border-color 200ms, color 200ms;
}
.addr-card--full a:hover { color: var(--yellow-deep); border-color: var(--yellow-deep); }
.addr-hours {
  list-style: none;
  padding: 0;
  margin: 0;
}
.addr-hours li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 6px 0;
  font-family: var(--sans);
  font-size: 14px;
}
.addr-hours li span { color: rgba(46,37,28,0.65); }
.addr-hours li b { font-family: var(--mono); font-weight: 500; font-size: 12px; letter-spacing: 0.04em; color: var(--ink); }
.addr-foot {
  margin-top: 8px;
  font-family: var(--sans);
  font-size: 12px;
  color: rgba(46,37,28,0.55);
  line-height: 1.5;
}
