/* ============================================================
   Kirstine Munk Smykker — Stylesheet
   Theme: Raw Nature · Holism · Clean Surfaces · Peaceful Minds
   Ginkgo: design element, not decoration — woven through layout
   ============================================================ */

/* ── Reset & Variables ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:    #f7f4ef;
  --sand:     #e8e0d4;
  --stone:    #c5b9a8;
  --pebble:   #9a8e80;
  --charcoal: #2c2921;
  --ink:      #1a1713;
  --white:    #fefefe;
  --sage:     #7a8c6e;       /* ginkgo green — used sparingly */
  --sage-lt:  #a3b596;

  --ff-serif: 'Cormorant Garamond', Georgia, serif;
  --ff-sans:  'Jost', system-ui, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --section-gap: clamp(5rem, 10vw, 9rem);
  --container:   1200px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--ff-sans);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a   { color: inherit; text-decoration: none; }

/* ── Typography ─────────────────────────────────────────────── */
.section-eyebrow {
  font-size: 0.68rem; font-weight: 400;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--sage); margin-bottom: 1rem;
}
.section-title {
  font-family: var(--ff-serif);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300; line-height: 1.15;
  color: var(--ink); margin-bottom: 1.5rem;
}
.section-title em { font-style: italic; color: var(--pebble); }
.section-sub { font-size: 1rem; color: var(--pebble); max-width: 480px; line-height: 1.8; }
.section-header { text-align: center; margin-bottom: clamp(3rem, 6vw, 5rem); }
.section-header .section-sub { margin: 0 auto; }

.container { width: min(var(--container), 100% - 3rem); margin-inline: auto; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--ff-sans); font-size: .72rem; font-weight: 500;
  letter-spacing: .15em; text-transform: uppercase;
  padding: .85rem 2rem; border: 1px solid transparent;
  cursor: pointer; transition: all .35s var(--ease-out);
  white-space: nowrap; position: relative; overflow: hidden;
}
.btn--dark    { background: var(--ink);   color: var(--cream); border-color: var(--ink); }
.btn--dark:hover  { background: var(--charcoal); }
.btn--light   { background: var(--cream); color: var(--ink);   border-color: var(--cream); }
.btn--light:hover { background: var(--white); }
.btn--ghost   { background: transparent; color: var(--cream); border-color: rgba(255,255,255,.5); }
.btn--ghost:hover { background: rgba(255,255,255,.1); border-color: var(--cream); }
.btn--outline { background: transparent; color: var(--ink);   border-color: var(--charcoal); }
.btn--outline:hover { background: var(--ink); color: var(--cream); }
.btn--sm  { font-size: .65rem; padding: .55rem 1.2rem; }
.btn--full { width: 100%; justify-content: center; }

/* ── Navigation ─────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.5rem 2rem;
  transition: background .4s, backdrop-filter .4s, padding .4s;
}
.nav.scrolled {
  background: rgba(247,244,239,.93); backdrop-filter: blur(16px);
  padding: 1rem 2rem; border-bottom: 1px solid var(--sand);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--container); margin: 0 auto;
}
.nav__logo {
  font-family: var(--ff-serif); font-size: 1.4rem;
  font-weight: 400; letter-spacing: .05em; color: var(--ink);
}
.nav.hero-nav:not(.scrolled) .nav__logo { color: var(--white); }

.nav__links { display: flex; align-items: center; gap: 2.5rem; list-style: none; }
.nav__links a {
  font-size: .72rem; font-weight: 400; letter-spacing: .12em;
  text-transform: uppercase; color: var(--ink);
  transition: color .3s, opacity .3s; opacity: .85;
}
.nav.hero-nav:not(.scrolled) .nav__links a { color: var(--white); }
.nav__links a:hover { opacity: 1; }

.nav__cta {
  padding: .55rem 1.4rem; border: 1px solid var(--ink); opacity: 1 !important;
}
.nav__cta:hover { background: var(--ink) !important; color: var(--cream) !important; }
.nav.hero-nav:not(.scrolled) .nav__cta {
  border-color: rgba(255,255,255,.7); color: var(--white) !important;
}

.nav__toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav__toggle span {
  display: block; width: 22px; height: 1px; background: var(--ink); transition: all .3s;
}
.nav.hero-nav:not(.scrolled) .nav__toggle span { background: var(--white); }

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  position: relative; height: 100svh; min-height: 600px;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.hero__media { position: absolute; inset: 0; }
.hero__img   { object-position: center 35%; transition: transform 8s ease; }
.hero:hover .hero__img { transform: scale(1.03); }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26,23,19,.55) 0%,
    rgba(26,23,19,.45) 40%,
    rgba(26,23,19,.52) 70%,
    rgba(26,23,19,.65) 100%
  );
}
.hero__content {
  position: relative; z-index: 2; text-align: center;
  color: var(--white); padding: 2rem; max-width: 780px;
  animation: fadeUp 1.2s var(--ease-out) both;
}
.hero__eyebrow { font-size: .7rem; letter-spacing: .25em; text-transform: uppercase; color: rgba(255,255,255,.82); margin-bottom: 1.5rem; }
.hero__title {
  font-family: var(--ff-serif); font-size: clamp(3.2rem,7vw,6rem);
  font-weight: 300; line-height: 1.1; margin-bottom: 1.5rem;
}
.hero__title em { font-style: italic; color: rgba(255,255,255,.88); }
.hero__sub { font-size: clamp(.95rem,1.5vw,1.05rem); color: rgba(255,255,255,.88); max-width: 500px; margin: 0 auto 2.5rem; line-height: 1.85; }
.hero__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.hero__scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: .5rem;
  color: rgba(255,255,255,.55); animation: fadeUp 1.5s .5s var(--ease-out) both;
}
.hero__scroll-line {
  display: block; width: 1px; height: 50px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.55));
  animation: scrollPulse 2.2s ease-in-out infinite;
}
.hero__scroll-text { font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; }

/* ── Banner ──────────────────────────────────────────────────── */
.banner { background: var(--ink); color: var(--sand); padding: 1.2rem 0; overflow: hidden; }
.banner__inner {
  display: flex; align-items: center; justify-content: center;
  gap: 1.5rem; flex-wrap: wrap; padding: 0 2rem;
}
.banner__item { font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; }
.banner__dot  { color: var(--sage-lt); font-size: .75rem; opacity: 0.7; }

/* ── Collections ─────────────────────────────────────────────── */
.collections { padding: var(--section-gap) 0; position: relative; }

.collections__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1.5rem;
  align-items: start;
}

/* Featured card spans col 1–2 in row 1 */
.product-card--featured { grid-column: 1 / 3; display: grid; grid-template-columns: 1.1fr 1fr; }
.product-card--featured .product-card__media { aspect-ratio: auto; min-height: 420px; }

.product-card {
  background: var(--white); overflow: hidden;
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out);
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(26,23,19,.1); }
.product-card__media { position: relative; overflow: hidden; aspect-ratio: 3/4; }
.product-card__media img { transition: transform .7s var(--ease-out); }
.product-card:hover .product-card__media img { transform: scale(1.04); }
.product-card__badge {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--ink); color: var(--cream);
  font-size: .6rem; letter-spacing: .15em; text-transform: uppercase; padding: .3rem .75rem;
}
.product-card__body { padding: 1.5rem; display: flex; flex-direction: column; justify-content: space-between; }
.product-card--featured .product-card__body { padding: 2rem 2rem; justify-content: center; gap: 1rem; }
.product-card__cat { font-size: .65rem; letter-spacing: .2em; text-transform: uppercase; color: var(--sage); margin-bottom: .3rem; }
.product-card__title { font-family: var(--ff-serif); font-size: 1.5rem; font-weight: 400; color: var(--ink); margin-bottom: .5rem; }
.product-card__desc  { font-size: .88rem; color: var(--pebble); line-height: 1.7; margin-bottom: 1.2rem; flex-grow: 1; }
.product-card__footer { display: flex; align-items: center; justify-content: space-between; gap: .5rem; }
.product-card__price  { font-family: var(--ff-serif); font-size: 1.1rem; color: var(--ink); }

.collections__note { text-align: center; margin-top: 2.5rem; font-size: .88rem; color: var(--pebble); }
.collections__note a { color: var(--charcoal); border-bottom: 1px solid var(--stone); padding-bottom: 1px; transition: border-color .3s; }
.collections__note a:hover { border-color: var(--charcoal); }

/* ── About ────────────────────────────────────────────────────── */
.about { background: var(--sand); padding: var(--section-gap) 0; }
.about__grid { display: grid; grid-template-columns: 1fr 1fr; max-width: var(--container); margin: 0 auto; }
.about__media { position: relative; overflow: hidden; }
.about__media img { height: 100%; min-height: 600px; object-position: center; }
.about__quote-block {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(26,23,19,.85), transparent);
  padding: 3rem 2.5rem 2.5rem; color: var(--cream);
}
.about__quote-block blockquote { font-family: var(--ff-serif); font-size: clamp(1rem,1.5vw,1.25rem); font-style: italic; font-weight: 300; line-height: 1.6; margin-bottom: .75rem; }
.about__quote-block cite { font-size: .7rem; letter-spacing: .1em; color: rgba(255,255,255,.6); }
.about__content { padding: clamp(3rem,5vw,6rem) clamp(2rem,5vw,5rem); display: flex; flex-direction: column; justify-content: center; }
.about__content p { color: var(--charcoal); margin-bottom: 1rem; line-height: 1.85; }
.about__stats { display: flex; gap: 2.5rem; margin: 2.5rem 0; padding: 2rem 0; border-top: 1px solid var(--stone); border-bottom: 1px solid var(--stone); }
.about__stat { display: flex; flex-direction: column; gap: .2rem; }
.about__stat-num { font-family: var(--ff-serif); font-size: 1.5rem; color: var(--ink); }
.about__stat-label { font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; color: var(--pebble); }

/* ── Approach ────────────────────────────────────────────────── */
.approach { padding: var(--section-gap) 0; background: var(--cream); position: relative; overflow: hidden; }
.approach__inner { }
.approach__header { text-align: center; margin-bottom: clamp(3rem,6vw,5rem); }
.approach__header .section-sub { margin: 0 auto; }

.approach__pillars {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 1px;
  background: var(--sand); border: 1px solid var(--sand);
}
.pillar {
  background: var(--cream); padding: 2.5rem 2rem; text-align: center;
  transition: background .3s, transform .3s var(--ease-out);
  position: relative; overflow: hidden;
}
.pillar:hover { background: var(--white); transform: translateY(-3px); }
.pillar__icon {
  width: 40px; height: 40px; margin: 0 auto 1.25rem;
  color: var(--sage);
}
.pillar__icon svg { width: 100%; height: 100%; }
.pillar h3 { font-family: var(--ff-serif); font-size: 1.25rem; font-weight: 400; color: var(--ink); margin-bottom: .5rem; }
.pillar p  { font-size: .82rem; color: var(--pebble); line-height: 1.75; }

/* ── Instagram ───────────────────────────────────────────────── */
.instagram { background: var(--sand); padding: var(--section-gap) 0; }
.instagram__header { text-align: center; margin-bottom: 3rem; }
.instagram__header .section-sub { margin: 0 auto 2rem; }

.instagram__mosaic { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 1fr 1fr; gap: .5rem; height: 520px; }
.insta-tile { position: relative; overflow: hidden; cursor: pointer; }
.insta-tile--lg { grid-row: 1 / 3; }
.insta-tile img { transition: transform .5s var(--ease-out); }
.insta-tile:hover img { transform: scale(1.05); }
.insta-tile__overlay {
  position: absolute; inset: 0;
  background: rgba(26,23,19,0); display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.5rem; opacity: 0; transition: all .3s;
}
.insta-tile:hover .insta-tile__overlay { background: rgba(26,23,19,.4); opacity: 1; }

/* ── Contact ─────────────────────────────────────────────────── */
.contact { padding: var(--section-gap) 0; position: relative; overflow: hidden; }
.contact__grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(3rem,6vw,7rem); align-items: start; }
.contact__info > p { color: var(--charcoal); margin-bottom: 2rem; line-height: 1.85; }
.contact__list { list-style: none; display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2.5rem; }
.contact__list li { display: flex; align-items: center; gap: .75rem; }
.contact__icon { font-size: .9rem; color: var(--sage); width: 1.5rem; }
.contact__list a { font-size: .9rem; color: var(--charcoal); border-bottom: 1px solid transparent; transition: border-color .3s; }
.contact__list a:hover { border-color: var(--charcoal); }
.contact__note { background: var(--sand); padding: 1.5rem; border-left: 2px solid var(--sage); }
.contact__note p { font-size: .82rem; color: var(--pebble); line-height: 1.7; }
.contact__note p + p { margin-top: .5rem; }

/* Form */
.contact__form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label { font-size: .68rem; letter-spacing: .15em; text-transform: uppercase; color: var(--pebble); }
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--ff-sans); font-size: .9rem; font-weight: 300;
  color: var(--ink); background: var(--white);
  border: 1px solid var(--sand); padding: .85rem 1rem;
  outline: none; resize: none; transition: border-color .3s;
  appearance: none; -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--sage); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--stone); }
.form-note { font-size: .72rem; color: var(--pebble); line-height: 1.6; text-align: center; padding-top: .25rem; }

/* ── Footer ──────────────────────────────────────────────────── */
.footer { background: var(--ink); color: var(--sand); padding: 4rem 2rem; }
.footer__inner { max-width: var(--container); margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 2rem; text-align: center; }
.footer__logo { font-family: var(--ff-serif); font-size: 2rem; font-weight: 300; letter-spacing: .05em; }
.footer__tagline { font-size: .75rem; letter-spacing: .15em; color: var(--sage-lt); text-transform: uppercase; }
.footer__nav { display: flex; flex-wrap: wrap; gap: 2rem; justify-content: center; margin: 1rem 0; }
.footer__nav a { font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--stone); transition: color .3s; }
.footer__nav a:hover { color: var(--cream); }
.footer__copy { font-size: .72rem; color: var(--pebble); }

/* ══════════════════════════════════════════════════════════════
   GINKGO — visuelt designelement
   Bladet bruges som gennemgående strukturelt element:
   - Ikke som rekvisit på billeder
   - Ikke som tilfældig dekoration
   - Som et roligt, organisk signal der definerer siden
   ══════════════════════════════════════════════════════════════ */

/* Shared base for all ginkgo instances */
.ginkgo {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  line-height: 0;
}
.ginkgo img {
  object-fit: contain;
  object-position: center;
  /* default: barely there, like a watermark */
  opacity: 0.09;
  filter: saturate(0.4) brightness(0.9);
  transition: opacity 1.2s ease;
}

/* ── 1. HERO — large leaf bottom-right, half off-screen
       Drifts down very slowly on scroll via JS parallax        */
.ginkgo--hero {
  bottom: -8%;
  right: -4%;
  width: clamp(280px, 30vw, 440px);
  transform: rotate(18deg);
}
.ginkgo--hero img { opacity: 0.08; }

/* ── 2. COLLECTIONS divider — centered behind section title
       Very large, centred, ultra-faint — like a watermark      */
.ginkgo--collections-bg {
  top: 0; left: 50%;
  transform: translateX(-50%) rotate(-8deg);
  width: clamp(320px, 38vw, 560px);
  z-index: 0;
  /* sits behind all card content */
}
.ginkgo--collections-bg img { opacity: 0.038; filter: saturate(0.3); }

/* ── 3. APPROACH — right side, mid-height, rotated
       Gives the section a fresh, alive quality               */
.ginkgo--approach {
  top: 50%;
  right: -6%;
  transform: translateY(-50%) rotate(28deg) scaleX(-1);
  width: clamp(200px, 22vw, 340px);
}
.ginkgo--approach img { opacity: 0.07; }

/* ── 4. CONTACT — top-left, small, upright
       A quiet breath of green before the form                */
.ginkgo--contact {
  top: 4rem;
  left: -3%;
  transform: rotate(-14deg);
  width: clamp(160px, 16vw, 260px);
}
.ginkgo--contact img { opacity: 0.07; }

/* ── 5. FOOTER — full-bleed, centred, dark-mode tint
       Echoes the hero leaf, closes the loop                  */
.footer { position: relative; overflow: hidden; }
.ginkgo--footer {
  position: absolute;
  bottom: -15%;
  right: 5%;
  transform: rotate(12deg);
  width: clamp(220px, 28vw, 400px);
  pointer-events: none;
  z-index: 0;
}
.ginkgo--footer img {
  opacity: 0.045;
  filter: saturate(0) brightness(2);
}

/* Leaf in nav logo area — tiny SVG inline ginkgo beside wordmark */
.nav__logo-leaf {
  display: inline-block;
  width: 14px; height: 14px;
  vertical-align: middle;
  margin-right: 6px;
  opacity: 0.7;
  color: var(--sage);
  transition: opacity .3s;
}
.nav.hero-nav:not(.scrolled) .nav__logo-leaf { color: rgba(255,255,255,.7); }

/* Eyebrow line: tiny ginkgo fan SVG before section-eyebrow text */
.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 12px; height: 8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 22'%3E%3Cpath d='M16 20 C16 20 2 14 2 7 C2 3 8 1 16 6 C24 1 30 3 30 7 C30 14 16 20 16 20Z' fill='none' stroke='%237a8c6e' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  margin-right: 7px;
  opacity: 0.55;
}

/* Divider: a single ginkgo fan between sections (used in HTML as <div class="ginkgo-divider">) */
.ginkgo-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 0 0;
  opacity: 0.35;
}
.ginkgo-divider svg { width: 28px; height: 28px; color: var(--sage); }

/* ── Animations ──────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%,100% { transform: scaleY(1);   opacity: 1; }
  50%      { transform: scaleY(.6); opacity: .4; }
}

.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .85s var(--ease-out), transform .85s var(--ease-out);
}
.reveal.visible          { opacity: 1; transform: none; }
.reveal-delay-1          { transition-delay: .1s; }
.reveal-delay-2          { transition-delay: .2s; }
.reveal-delay-3          { transition-delay: .3s; }
.reveal-delay-4          { transition-delay: .4s; }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .collections__grid { grid-template-columns: 1fr 1fr; }
  .product-card--featured { grid-column: 1 / 3; }
  .approach__pillars { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  :root { --section-gap: 4rem; }

  /* Nav */
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed; inset: 0; background: var(--cream);
    flex-direction: column; justify-content: center; gap: 2rem;
    transform: translateX(100%); transition: transform .4s var(--ease-out); z-index: 99;
  }
  .nav__links.open { transform: translateX(0); }
  .nav__links a { font-size: 1.1rem; color: var(--ink) !important; }
  .nav__cta { border-color: var(--ink) !important; color: var(--ink) !important; }

  /* Hero — stærkere overlay på mobil så teksten altid er læsbar */
  .hero__overlay {
    background: linear-gradient(
      to bottom,
      rgba(26,23,19,.65) 0%,
      rgba(26,23,19,.58) 40%,
      rgba(26,23,19,.62) 70%,
      rgba(26,23,19,.75) 100%
    );
  }
  .hero__content { padding: 1.5rem; }
  .hero__title { font-size: clamp(2.4rem, 8vw, 3.6rem); }
  .hero__sub   { font-size: .95rem; }

  /* Collections */
  .collections__grid { grid-template-columns: 1fr; }
  .product-card--featured { grid-column: auto; display: block; }

  /* About */
  .about__grid { grid-template-columns: 1fr; }
  .about__media img { min-height: 320px; }
  .about__text { padding: 2rem 0 0; }

  /* Approach */
  .approach__pillars { grid-template-columns: 1fr 1fr; }

  /* Instagram */
  .instagram__mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: auto; height: auto; }
  .insta-tile--lg { grid-column: 1/3; grid-row: auto; aspect-ratio: 4/3; }
  .insta-tile { aspect-ratio: 1; }

  /* Contact */
  .contact__grid { grid-template-columns: 1fr; }
  .about__stats { gap: 1.5rem; }

  /* Banner */
  .banner__inner { font-size: .7rem; gap: .6rem; }

  /* Ginkgo: smaller on mobile */
  .ginkgo--hero         { width: 180px; opacity: .05; }
  .ginkgo--collections-bg { width: 240px; }
  .ginkgo--approach     { display: none; }
  .ginkgo--contact      { width: 120px; }
  .ginkgo--footer       { width: 160px; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 2.4rem; line-height: 1.15; }
  .hero__sub   { font-size: .9rem; }
  .hero__actions { flex-direction: column; align-items: center; width: 100%; }
  .hero__actions .btn { width: 100%; justify-content: center; }

  .approach__pillars { grid-template-columns: 1fr; }
  .footer__nav { gap: 1rem; flex-wrap: wrap; justify-content: center; }
  .footer__bottom { flex-direction: column; gap: .5rem; text-align: center; }

  /* Lidt mere luft i sektioner */
  .container { width: min(var(--container), 100% - 2rem); }

  /* Product card billede højde */
  .product-card__img { height: 280px; }
}
