/* =========================================================
   STRANDHUNDE — Et lille hundehotel ved Solrød Strand
   Editorial Scandinavian Coastal stylesheet
   ========================================================= */

:root {
  /* Palette — Solrød = "sun-red" in Danish, the terracotta is the anchor */
  --cream: #f1ebdd;
  --cream-deep: #ebe2cf;
  --cream-paper: #f7f1e3;
  --sand: #d6bf99;
  --sand-dark: #b69b6c;
  --terracotta: #c2502b;
  --terracotta-deep: #9a3d1f;
  --moss: #6f7e54;
  --moss-light: #95a37a;
  --moss-deep: #4d5a38;
  --ocean: #21464a;
  --ocean-pale: #d8e2dd;
  --ink: #1a2826;
  --ink-soft: #3a4845;

  /* Type */
  --display: "Fraunces", "Times New Roman", serif;
  --sans: "Bricolage Grotesque", system-ui, -apple-system, sans-serif;

  /* Layout */
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --max: 1440px;
  --rule: 1px solid var(--ink);
  --rule-soft: 1px solid rgba(26, 40, 38, 0.18);
}

/* =========================================================
   RESET
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--cream);
  font-variation-settings: "opsz" 14, "wght" 380;
  /* Subtle paper grain */
  background-image:
    radial-gradient(rgba(154, 61, 31, 0.025) 1px, transparent 1px),
    radial-gradient(rgba(33, 70, 74, 0.025) 1px, transparent 1px);
  background-size: 3px 3px, 5px 5px;
  background-position: 0 0, 1px 1px;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; }
a { color: inherit; }

::selection { background: var(--terracotta); color: var(--cream); }

/* =========================================================
   TOP STRIP
   ========================================================= */
.topstrip {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  padding: 0.55rem var(--gutter);
  background: var(--ink);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}
.topstrip__item { display: inline-flex; align-items: center; gap: 0.5rem; }
.topstrip__center { justify-self: center; font-style: italic; font-family: var(--display); text-transform: none; letter-spacing: 0.04em; opacity: 0.9; }
.topstrip__contact { justify-self: end; }
.topstrip__contact a { text-decoration: none; border-bottom: 1px dotted rgba(241, 235, 221, 0.5); padding-bottom: 1px; }

.dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--terracotta);
  box-shadow: 0 0 0 0 var(--terracotta);
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(194, 80, 43, 0.6); }
  70%  { box-shadow: 0 0 0 8px rgba(194, 80, 43, 0); }
  100% { box-shadow: 0 0 0 0 rgba(194, 80, 43, 0); }
}

/* =========================================================
   NAV
   ========================================================= */
.nav {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 2rem;
  padding: 1.4rem var(--gutter);
  border-bottom: var(--rule);
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: inherit;
}
.nav__brand-mark { width: 46px; height: 46px; color: var(--ink); flex: none; }
.nav__brand-text { display: flex; flex-direction: column; line-height: 1; }
.nav__brand-name {
  font-family: var(--display);
  font-size: 1.55rem;
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 96, "wght" 480, "SOFT" 50, "WONK" 1;
}
.nav__brand-tag {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 0.35rem;
  color: var(--ink-soft);
}

.nav__links { justify-self: center; display: flex; gap: 1.8rem; flex-wrap: wrap; }
.nav__links a {
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  position: relative;
  padding: 0.35rem 0;
}
.nav__links a::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--terracotta);
  transition: width 0.4s ease;
}
.nav__links a:hover::after { width: 100%; }
.nav__links a.is-current { color: var(--terracotta); }
.nav__links a.is-current::after { width: 100%; }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.1rem;
  background: var(--ink);
  color: var(--cream);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  border-radius: 999px;
  transition: background 0.3s ease, transform 0.3s ease;
}
.nav__cta svg { width: 14px; height: 14px; }
.nav__cta:hover { background: var(--terracotta); transform: translateX(2px); }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.95rem 1.5rem;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  font-weight: 500;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--cream);
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}
.btn svg { width: 16px; height: 16px; }
.btn:hover { background: var(--terracotta); border-color: var(--terracotta); transform: translateY(-1px); }
.btn--primary { background: var(--terracotta); border-color: var(--terracotta); color: var(--cream-paper); }
.btn--primary:hover { background: var(--ink); border-color: var(--ink); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--cream); }
.btn--block { width: 100%; justify-content: center; padding: 1.1rem 1.5rem; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto auto;
  gap: 1.4rem 1.4rem;
  padding: 3rem var(--gutter) 5rem;
  max-width: var(--max);
  margin: 0 auto;
}

.hero__meta {
  grid-column: 1 / span 5;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-soft);
  padding-top: 0.5rem;
}
.hero__meta-line {
  position: relative;
  padding-left: 1.2rem;
}
.hero__meta-line::before {
  content: "—";
  position: absolute; left: 0;
  color: var(--terracotta);
}
.hero__meta-line a {
  color: var(--terracotta-deep);
  text-decoration: none;
  border-bottom: 1px dotted var(--terracotta-deep);
  padding-bottom: 1px;
}

.hero__title {
  grid-column: 1 / span 12;
  grid-row: 2;
  margin: 0;
  font-family: var(--display);
  font-weight: 380;
  font-size: clamp(3rem, 10.5vw, 11rem);
  line-height: 0.88;
  letter-spacing: -0.035em;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "wght" 360, "SOFT" 30, "WONK" 1;
  position: relative;
  z-index: 2;
}
.hero__title-eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: clamp(0.85rem, 1.1vw, 1rem);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-weight: 400;
  color: var(--ink-soft);
  margin-bottom: 1.2rem;
  padding-bottom: 0.9rem;
  border-bottom: var(--rule);
  max-width: 32ch;
  text-wrap: balance;
}
.hero__title-line-1 {
  display: block;
  font-variation-settings: "opsz" 144, "wght" 420, "SOFT" 30, "WONK" 1;
}
.hero__title-line-1 em {
  font-style: italic;
  color: var(--terracotta);
  font-variation-settings: "opsz" 144, "wght" 380, "SOFT" 100, "WONK" 1;
}
.hero__title-line-2 {
  display: block;
  font-style: italic;
  font-size: 0.36em;
  color: var(--ink-soft);
  margin-top: 1rem;
  padding-left: 4rem;
  font-variation-settings: "opsz" 72, "wght" 360, "SOFT" 100, "WONK" 1;
  letter-spacing: -0.01em;
}

.hero__leadwrap {
  grid-column: 1 / span 5;
  grid-row: 3;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-self: end;
}
.hero__lead {
  font-size: clamp(1rem, 1.05vw, 1.15rem);
  line-height: 1.6;
  margin: 0;
  max-width: 38ch;
  color: var(--ink);
}
.hero__lead em { font-style: italic; color: var(--terracotta-deep); font-family: var(--display); font-variation-settings: "opsz" 36, "wght" 480; }

.hero__lead::first-letter {
  float: left;
  font-family: var(--display);
  font-size: 4.4rem;
  line-height: 0.85;
  margin: 0.15rem 0.55rem -0.2rem 0;
  color: var(--terracotta);
  font-variation-settings: "opsz" 96, "wght" 540, "SOFT" 50, "WONK" 1;
}

.hero__cta-row {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.hero__photo { margin: 0; }
.hero__photo-frame {
  overflow: hidden;
  position: relative;
}
.hero__photo-frame::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 70%, rgba(33, 70, 74, 0.15));
  pointer-events: none;
}
.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
  transition: transform 0.8s ease;
}
.hero__photo:hover img { transform: scale(1.025); }
.hero__photo figcaption {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  margin-top: 0.65rem;
  font-size: 0.78rem;
  font-style: italic;
  color: var(--ink-soft);
  font-family: var(--display);
  font-variation-settings: "opsz" 14, "wght" 380;
}
.hero__photo-num {
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--terracotta-deep);
  font-weight: 600;
}

.hero__photo--main {
  grid-column: 8 / span 5;
  grid-row: 1 / span 2;
}
.hero__photo--main .hero__photo-frame { aspect-ratio: 4 / 5; }

.hero__photo--side {
  grid-column: 7 / span 4;
  grid-row: 3;
  align-self: end;
}
.hero__photo--side .hero__photo-frame { aspect-ratio: 4 / 5; }

.hero__wave {
  grid-column: 1 / span 12;
  width: 100%;
  height: 18px;
  color: var(--terracotta);
  opacity: 0.6;
  margin-top: 1.5rem;
}

.hero__scroll {
  position: absolute;
  right: var(--gutter);
  bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.hero__scroll svg {
  width: 14px;
  height: 14px;
  animation: float 2.5s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

/* =========================================================
   MARQUEE
   ========================================================= */
.marquee {
  border-top: var(--rule);
  border-bottom: var(--rule);
  background: var(--terracotta);
  color: var(--cream-paper);
  overflow: hidden;
  padding: 1rem 0;
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  font-variation-settings: "opsz" 96, "wght" 360, "SOFT" 100, "WONK" 1;
}
.marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 2.5rem;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  padding-left: 100%;
}
.marquee__star {
  font-style: normal;
  color: var(--cream);
  opacity: 0.7;
}
.marquee__new {
  font-style: normal;
  font-size: 0.62em;
  letter-spacing: 0.06em;
  background: var(--ink);
  color: var(--cream-paper);
  padding: 0.28em 0.75em 0.34em;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 500;
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =========================================================
   SECTION LABEL
   ========================================================= */
.section-label {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 0.85rem;
  border-bottom: var(--rule);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.74rem;
}
.section-label__num {
  font-family: var(--display);
  font-style: italic;
  letter-spacing: 0;
  color: var(--terracotta);
  font-variation-settings: "opsz" 36, "wght" 480, "SOFT" 100;
  font-size: 1.5rem;
  text-transform: none;
}
.section-label__text { font-weight: 500; color: var(--ink); }
.section-label--light { color: var(--ink-soft); }

/* =========================================================
   DISPLAY TITLE
   ========================================================= */
.display-title {
  font-family: var(--display);
  font-size: clamp(2.4rem, 6vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin: 0 0 1.5rem;
  font-variation-settings: "opsz" 96, "wght" 380, "SOFT" 30, "WONK" 1;
  color: var(--ink);
}
.display-title em {
  font-style: italic;
  color: var(--terracotta);
  font-variation-settings: "opsz" 96, "wght" 360, "SOFT" 100, "WONK" 1;
}
.display-title__amp {
  font-style: italic;
  color: var(--moss);
  font-variation-settings: "opsz" 144, "wght" 380, "SOFT" 100, "WONK" 1;
}
.display-title--center { text-align: center; }

/* =========================================================
   HJEMMET (HOME)
   ========================================================= */
.home {
  padding: 5rem var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
}
.home__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 2rem;
}
.home__intro {
  grid-column: 1 / span 5;
  grid-row: 1 / span 2;
}
.home__paragraph {
  font-size: 1rem;
  line-height: 1.75;
  margin: 0 0 1.2rem;
  max-width: 38ch;
}
.home__facts {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  border-top: var(--rule);
}
.home__facts li {
  display: grid;
  grid-template-columns: 9rem 1fr;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: var(--rule-soft);
  font-size: 0.92rem;
}
.home__facts span {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  color: var(--ink-soft);
}
.home__facts b {
  font-weight: 500;
  font-family: var(--display);
  font-style: italic;
  font-variation-settings: "opsz" 18, "wght" 460;
}

.home__photo { margin: 0; }
.home__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95);
}
.home__photo figcaption {
  margin-top: 0.65rem;
  font-family: var(--display);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.home__photo--tall {
  grid-column: 6 / span 4;
  grid-row: 1 / span 2;
  aspect-ratio: 3 / 4;
}
.home__note {
  grid-column: 10 / span 3;
  grid-row: 1;
  aspect-ratio: 4 / 5;
  background: var(--terracotta);
  color: var(--cream-paper);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.home__note::before {
  content: "";
  position: absolute; inset: 8px;
  border: 1px solid rgba(247, 241, 227, 0.35);
  pointer-events: none;
}
.home__note-stamp {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  z-index: 1;
}
.home__note-quote {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  line-height: 1.4;
  margin: 0;
  font-variation-settings: "opsz" 36, "wght" 380, "SOFT" 100, "WONK" 1;
  z-index: 1;
}
.home__note-by {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  font-style: italic;
  font-family: var(--display);
  margin: 0;
  opacity: 0.85;
  z-index: 1;
}
.home__photo--small {
  grid-column: 10 / span 3;
  grid-row: 2;
  aspect-ratio: 1 / 1;
}

/* =========================================================
   FAMILIEN
   ========================================================= */
.family {
  background: var(--ocean);
  color: var(--cream);
  padding: 5rem var(--gutter);
  position: relative;
  overflow: hidden;
}
.family::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 80px;
  background: radial-gradient(circle at 20% 100%, rgba(241, 235, 221, 0.06), transparent 60%);
  pointer-events: none;
}
.family .section-label {
  border-bottom-color: rgba(241, 235, 221, 0.25);
  color: var(--cream);
}
.family .section-label__num { color: var(--sand); }
.family .display-title {
  color: var(--cream);
  margin-bottom: 4rem;
}
.family .display-title em { color: var(--sand); }

.family__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: var(--max);
  margin: 0 auto;
}
.family__card {
  border-top: 1px solid rgba(241, 235, 221, 0.25);
  padding-top: 1.4rem;
  display: flex;
  flex-direction: column;
}
.family__portrait {
  margin-bottom: 1.2rem;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--cream);
}
.portrait-svg { width: 100%; height: 100%; display: block; }

.family__card h3 {
  margin: 0 0 0.25rem;
  font-family: var(--display);
  font-size: 1.5rem;
  font-variation-settings: "opsz" 36, "wght" 460, "SOFT" 30, "WONK" 1;
}
.family__role {
  font-style: italic;
  font-family: var(--display);
  font-size: 0.95rem;
  color: var(--sand);
  margin: 0 0 0.85rem;
  font-variation-settings: "opsz" 18, "wght" 380, "SOFT" 100;
}
.family__bio {
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(241, 235, 221, 0.85);
  margin: 0;
}

/* =========================================================
   EN DAG
   ========================================================= */
.day {
  padding: 5rem var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
}
.day__head {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: 3.5rem;
}
.day__intro {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 42ch;
  margin: 0;
  padding-bottom: 0.5rem;
}

.day__schedule {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: var(--rule);
}
.day__step {
  display: grid;
  grid-template-columns: 8rem 1fr 2fr;
  gap: 2rem;
  padding: 1.85rem 0;
  border-bottom: var(--rule-soft);
  align-items: baseline;
  position: relative;
  transition: padding-left 0.4s ease;
}
.day__step:hover {
  padding-left: 1.5rem;
}
.day__step::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 0;
  height: 1px;
  background: var(--terracotta);
  transition: width 0.4s ease;
}
.day__step:hover::before { width: 1rem; }

.day__time {
  font-family: var(--display);
  font-size: 1.65rem;
  font-style: italic;
  color: var(--terracotta);
  font-variation-settings: "opsz" 36, "wght" 380, "SOFT" 100, "WONK" 1;
}
.day__act {
  font-family: var(--display);
  font-size: 1.4rem;
  margin: 0;
  font-variation-settings: "opsz" 36, "wght" 440, "SOFT" 30, "WONK" 1;
  letter-spacing: -0.01em;
}
.day__step p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--ink-soft);
}
.day__step a {
  text-decoration: none;
  border-bottom: 1px dotted var(--terracotta-deep);
  color: var(--terracotta-deep);
}

/* =========================================================
   PRISER
   ========================================================= */
.prices {
  padding: 5rem var(--gutter);
  background: var(--cream-paper);
  border-top: var(--rule);
  border-bottom: var(--rule);
}
.prices__head {
  text-align: center;
  margin: 0 auto 3rem;
  max-width: 720px;
}
.prices__intro {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 0 auto;
}
.prices__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: var(--max);
  margin: 0 auto;
}
.price-card {
  position: relative;
  background: var(--cream);
  border: var(--rule);
  padding: 2rem 1.85rem 2.2rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.price-card:hover {
  transform: translateY(-3px);
  box-shadow: 8px 8px 0 var(--ink);
}
.price-card--featured {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.price-card--featured:hover { box-shadow: 8px 8px 0 var(--terracotta); }

.price-card__ribbon {
  position: absolute;
  top: 1.2rem; right: -1px;
  background: var(--terracotta-deep);
  color: var(--cream-paper);
  padding: 0.3rem 0.85rem;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
}
.price-card__head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-bottom: 1.2rem;
  margin-bottom: 1.5rem;
  border-bottom: var(--rule-soft);
}
.price-card--featured .price-card__head { border-bottom-color: rgba(241, 235, 221, 0.2); }

.price-card__num {
  font-family: var(--display);
  font-size: 1.7rem;
  font-style: italic;
  color: var(--terracotta);
  font-variation-settings: "opsz" 36, "wght" 380, "SOFT" 100, "WONK" 1;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1.5px solid var(--terracotta);
  display: inline-flex; align-items: center; justify-content: center;
  line-height: 1;
}
.price-card__head h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.6rem;
  font-variation-settings: "opsz" 36, "wght" 460, "SOFT" 30, "WONK" 1;
}

.price-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}
.kr {
  font-family: var(--display);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-variation-settings: "opsz" 96, "wght" 380, "SOFT" 30, "WONK" 1;
  line-height: 1;
}
.per {
  font-family: var(--display);
  font-style: italic;
  font-size: 1rem;
  color: var(--ink-soft);
  font-variation-settings: "opsz" 18, "wght" 380, "SOFT" 100;
}
.price-card--featured .per { color: var(--sand); }

.price-card__desc {
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0 0 1.5rem;
  flex: 1;
}
.price-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 0.5rem;
  border-top: var(--rule-soft);
}
.price-card--featured .price-card__list { border-top-color: rgba(241, 235, 221, 0.2); }
.price-card__list li {
  padding: 0.65rem 0;
  border-bottom: var(--rule-soft);
  font-size: 0.88rem;
  position: relative;
  padding-left: 1.4rem;
}
.price-card--featured .price-card__list li { border-bottom-color: rgba(241, 235, 221, 0.15); }
.price-card__list li::before {
  content: "✺";
  position: absolute; left: 0; top: 0.6rem;
  color: var(--terracotta);
  font-size: 0.85rem;
}
.price-card__list a {
  text-decoration: none;
  border-bottom: 1px dotted var(--terracotta-deep);
}
.price-card--featured .price-card__list a { border-bottom-color: var(--sand); }

.prices__notes,
.care__notes {
  text-align: center;
  margin: 3rem auto 0;
  font-size: 0.9rem;
  color: var(--ink-soft);
  font-family: var(--display);
  font-style: italic;
  font-variation-settings: "opsz" 18, "wght" 380, "SOFT" 100;
  max-width: 65ch;
  line-height: 1.7;
}
.prices__notes b,
.care__notes b { color: var(--terracotta-deep); font-weight: 500; }
.prices__notes a,
.care__notes a { border-bottom: 1px dotted var(--terracotta-deep); text-decoration: none; }

/* =========================================================
   BAD & PLEJE — water-tinted salon band
   ========================================================= */
.care {
  background: var(--ocean-pale);
  border-top: var(--rule);
  border-bottom: var(--rule);
  padding: 5rem var(--gutter);
}
.care__inner { max-width: var(--max); margin: 0 auto; }
.care .section-label { border-bottom-color: rgba(26, 40, 38, 0.35); }

.care__grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 3rem 4rem;
  align-items: start;
}

.care__stamp {
  display: inline-block;
  border: 1.5px dashed var(--terracotta-deep);
  color: var(--terracotta-deep);
  padding: 0.25rem 0.7rem;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  transform: rotate(-2deg);
  margin-bottom: 1.2rem;
  background: var(--cream-paper);
}

.care__intro {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 46ch;
  margin: 0 0 2.2rem;
}

/* The bath ritual — day-schedule editorial language */
.ritual {
  list-style: none;
  padding: 0;
  margin: 0 0 2.4rem;
  border-top: var(--rule);
}
.ritual li {
  display: grid;
  grid-template-columns: 3.4rem 11rem 1fr;
  gap: 1.2rem;
  padding: 0.95rem 0;
  border-bottom: var(--rule-soft);
  align-items: baseline;
  font-size: 0.92rem;
}
.ritual__num {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--terracotta);
  font-variation-settings: "opsz" 36, "wght" 380, "SOFT" 100, "WONK" 1;
}
.ritual__name {
  font-family: var(--display);
  font-size: 1.12rem;
  font-variation-settings: "opsz" 36, "wght" 440, "SOFT" 30, "WONK" 1;
}
.ritual li p { margin: 0; color: var(--ink-soft); line-height: 1.55; }

/* Salon menu board */
.salonkort {
  background: var(--cream-paper);
  border: var(--rule);
  padding: 2rem 2rem 1.6rem;
  position: relative;
}
.salonkort::before {
  content: "";
  position: absolute; inset: 7px;
  border: 1px solid rgba(26, 40, 38, 0.18);
  pointer-events: none;
}
.salonkort__head {
  text-align: center;
  padding-bottom: 1.1rem;
  margin-bottom: 1.4rem;
  border-bottom: var(--rule-soft);
}
.salonkort__head h3 {
  margin: 0 0 0.2rem;
  font-family: var(--display);
  font-size: 1.9rem;
  font-variation-settings: "opsz" 72, "wght" 440, "SOFT" 50, "WONK" 1;
}
.salonkort__head p {
  margin: 0;
  font-family: var(--display);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.salonkort__group { margin-bottom: 1.35rem; }
.salonkort__group h4 {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 0 0.5rem;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta-deep);
  font-weight: 600;
}
.salonkort__group h4 em {
  font-family: var(--display);
  font-size: 0.85rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink-soft);
  font-weight: 400;
}
.salonkort__row {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  padding: 0.32rem 0;
  font-size: 0.92rem;
}
.salonkort__row .name { white-space: nowrap; }
.salonkort__row .dur {
  font-family: var(--display);
  font-style: italic;
  font-size: 0.78rem;
  color: var(--ink-soft);
  white-space: nowrap;
}
.salonkort__row .leader {
  flex: 1;
  border-bottom: 1px dotted rgba(26, 40, 38, 0.4);
  transform: translateY(-4px);
}
.salonkort__row .price {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.02rem;
  font-variation-settings: "opsz" 18, "wght" 460;
  white-space: nowrap;
}
.salonkort__note {
  margin: 1.2rem 0 0;
  padding-top: 0.9rem;
  border-top: var(--rule-soft);
  text-align: center;
  font-family: var(--display);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.salonkort__note b { color: var(--terracotta-deep); font-weight: 500; }

/* Right column: photo + groomer note + CTA */
.care__photo { margin: 0 0 1.6rem; }
.care__photo .care__photo-frame {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--sand);
}
.care__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.9);
}
.care__photo figcaption {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  margin-top: 0.65rem;
  font-family: var(--display);
  font-style: italic;
  font-size: 0.82rem;
  color: var(--ink-soft);
}
.care__photo .care__photo-num {
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--terracotta-deep);
  font-weight: 600;
}
.groomer-note {
  background: var(--ocean);
  color: var(--cream-paper);
  padding: 1.4rem 1.5rem;
  position: relative;
  margin-bottom: 1.6rem;
}
.groomer-note::before {
  content: "";
  position: absolute; inset: 7px;
  border: 1px solid rgba(247, 241, 227, 0.3);
  pointer-events: none;
}
.groomer-note p {
  margin: 0 0 0.5rem;
  font-family: var(--display);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.5;
  font-variation-settings: "opsz" 36, "wght" 380, "SOFT" 100, "WONK" 1;
}
.groomer-note span {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sand);
}
.care__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}
.care__cta-note {
  margin: 0.7rem 0 0;
  font-family: var(--display);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--ink-soft);
  flex-basis: 100%;
}

/* =========================================================
   GÆSTEBOG
   ========================================================= */
.guestbook {
  padding: 5rem var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
}
.guestbook__head {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
  align-items: end;
}
.guestbook__head p {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

.guestbook__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  perspective: 1000px;
}
.polaroid {
  background: var(--cream-paper);
  padding: 0.95rem 0.95rem 1.4rem;
  box-shadow: 0 14px 30px -16px rgba(26, 40, 38, 0.45);
  transition: transform 0.5s ease;
  position: relative;
}
.polaroid--rot-1 { transform: rotate(-2.4deg); }
.polaroid--rot-2 { transform: rotate(1.6deg) translateY(0.6rem); }
.polaroid--rot-3 { transform: rotate(-1.2deg) translateY(-0.4rem); }
.polaroid--rot-4 { transform: rotate(2.6deg); }
.polaroid:hover { transform: rotate(0) translateY(-6px) scale(1.02); z-index: 2; }

.polaroid__photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  margin-bottom: 1rem;
  background: var(--sand);
}
.polaroid__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.85) sepia(0.06);
}
.polaroid__caption h3 {
  font-family: var(--display);
  font-size: 1.7rem;
  margin: 0 0 0.2rem;
  font-variation-settings: "opsz" 36, "wght" 460, "SOFT" 50, "WONK" 1;
  letter-spacing: -0.01em;
}
.polaroid__breed {
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 0.7rem;
}
.polaroid__note {
  font-family: var(--display);
  font-style: italic;
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0 0 0.85rem;
  font-variation-settings: "opsz" 18, "wght" 380, "SOFT" 100;
}
.polaroid__stamp {
  display: inline-block;
  border: 1.5px dashed var(--terracotta-deep);
  padding: 0.22rem 0.6rem;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta-deep);
  transform: rotate(-3deg);
}

.quote {
  margin: 4rem auto 0;
  max-width: 720px;
  text-align: center;
  border-top: var(--rule);
  border-bottom: var(--rule);
  padding: 2.5rem 1rem;
}
.quote p {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  line-height: 1.4;
  margin: 0 0 1rem;
  color: var(--ink);
  font-variation-settings: "opsz" 48, "wght" 380, "SOFT" 100;
}
.quote cite {
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* =========================================================
   OMRÅDE
   ========================================================= */
.area {
  background: var(--moss-deep);
  color: var(--cream-paper);
  padding: 5rem var(--gutter);
}
.area .section-label { color: var(--cream-paper); border-bottom-color: rgba(241, 235, 221, 0.3); }
.area .section-label__num { color: var(--sand); }
.area__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
}
.area .display-title { color: var(--cream-paper); margin-bottom: 1.5rem; }
.area .display-title em { color: var(--sand); }
.area__copy p {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(247, 241, 227, 0.88);
  margin: 0 0 2rem;
  max-width: 46ch;
}
.area__list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(247, 241, 227, 0.25);
}
.area__list li {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(247, 241, 227, 0.12);
  font-size: 0.92rem;
}
.area__list span {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-paper);
  opacity: 0.92;
}
.area__list b {
  font-family: var(--display);
  font-style: italic;
  font-weight: 460;
  font-variation-settings: "opsz" 18, "wght" 460, "SOFT" 100;
}

.area__map {
  background: var(--cream-paper);
  padding: 1.2rem;
  border: 1px solid rgba(26, 40, 38, 0.15);
  position: relative;
}
.area__map::before {
  content: "Solrød Strand";
  position: absolute;
  top: 1.4rem; left: 1.4rem;
  font-family: var(--display);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--ink);
  z-index: 2;
  font-variation-settings: "opsz" 18, "wght" 460, "SOFT" 100;
}
.map-svg { width: 100%; height: auto; display: block; }

/* =========================================================
   KONTAKT
   ========================================================= */
.contact {
  padding: 5rem var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.contact__copy p {
  font-size: 1rem;
  line-height: 1.75;
  margin: 0 0 2rem;
  max-width: 38ch;
}
.contact__details {
  margin: 0;
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 0.6rem 1.2rem;
  border-top: var(--rule);
  padding-top: 1.5rem;
}
.contact__details dt {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding-top: 0.25rem;
}
.contact__details dd {
  margin: 0;
  font-family: var(--display);
  font-style: italic;
  font-size: 1.05rem;
  font-variation-settings: "opsz" 18, "wght" 460, "SOFT" 100;
}
.contact__details a { text-decoration: none; border-bottom: 1px dotted var(--terracotta); padding-bottom: 1px; }

.contact__form {
  background: var(--cream-paper);
  border: var(--rule);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.contact__form::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--terracotta) 0%, var(--terracotta) 33%, var(--moss) 33%, var(--moss) 66%, var(--ocean) 66%);
}
.contact__form-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
  border-bottom: var(--rule-soft);
}
.contact__form-num {
  font-family: var(--display);
  font-style: italic;
  color: var(--terracotta-deep);
  font-size: 0.85rem;
  font-variation-settings: "opsz" 14, "wght" 460, "SOFT" 100;
}
.contact__form-title {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ink-soft);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.1rem;
}
/* A normal author declaration beats the UA stylesheet's [hidden] { display: none }
   whatever the specificity, so the rule above would keep a hidden field on screen.
   script.js hides the end-date field for grooming-only bookings; without this it
   stayed visible, and anything typed into it still reached the enquiry mail.
   Same pattern as .nav__index[hidden] further down. */
.field[hidden] {
  display: none;
}
.field span {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.field input,
.field select,
.field textarea {
  font: inherit;
  font-family: var(--sans);
  background: transparent;
  border: none;
  border-bottom: var(--rule);
  padding: 0.55rem 0;
  color: var(--ink);
  border-radius: 0;
  outline: none;
  transition: border-color 0.3s ease, padding 0.3s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-bottom-color: var(--terracotta);
  padding-bottom: 0.4rem;
  border-bottom-width: 2px;
}
.field textarea { resize: vertical; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.field-row .field--narrow { max-width: 100%; }
.field--check {
  flex-direction: row;
  align-items: center;
  gap: 0.65rem;
}
.field--check input {
  width: 1.05rem;
  height: 1.05rem;
  margin: 0;
  border-bottom: none;
  accent-color: var(--terracotta);
}

/* Booking-type selector (Ophold / Bad & pleje / Begge) */
.field--choice {
  border: none;
  padding: 0;
  margin: 0 0 1.3rem;
}
.field--choice legend {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 0;
  margin-bottom: 0.55rem;
}
.field--choice .choices {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.field--choice label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.95rem;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.field--choice input {
  accent-color: var(--terracotta);
  margin: 0;
}
.field--choice label:has(input:checked) {
  background: var(--ink);
  color: var(--cream-paper);
}
.field__hint {
  margin: -0.6rem 0 1.1rem;
  font-family: var(--display);
  font-style: italic;
  font-size: 0.8rem;
  color: var(--ink-soft);
}

.contact__form-note {
  margin: 1rem 0 0;
  font-family: var(--display);
  font-style: italic;
  font-size: 0.82rem;
  color: var(--ink-soft);
  text-align: center;
  font-variation-settings: "opsz" 14, "wght" 460, "SOFT" 100;
}
.contact__form-success {
  margin-top: 1rem;
  padding: 1rem;
  background: var(--moss-light);
  color: var(--ink);
  text-align: center;
}
.contact__form-success:empty { display: none; }
.contact__form-success strong { display: block; font-family: var(--display); font-size: 1.1rem; margin-bottom: 0.25rem; }
.contact__form-success span { font-size: 0.88rem; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--ink);
  color: var(--cream-paper);
  padding: 5rem var(--gutter) 2rem;
}
.footer__lockup {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 4rem;
  align-items: start;
  max-width: var(--max);
  margin: 0 auto;
}
.footer__seal {
  width: 220px;
  height: 220px;
  color: var(--cream-paper);
  animation: spin 80s linear infinite;
}
@keyframes spin { from { transform: rotate(0); } to { transform: rotate(360deg); } }

.footer__cols {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(247, 241, 227, 0.18);
}
.footer__col h4 {
  margin: 0 0 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand);
  font-weight: 500;
}
.footer__col p {
  margin: 0;
  font-family: var(--display);
  font-style: italic;
  font-size: 1.02rem;
  line-height: 1.7;
  font-variation-settings: "opsz" 18, "wght" 380, "SOFT" 100;
  color: rgba(247, 241, 227, 0.85);
}
.footer__col a { text-decoration: none; border-bottom: 1px dotted rgba(247, 241, 227, 0.4); padding-bottom: 1px; }

.footer__base {
  display: flex;
  justify-content: space-between;
  margin-top: 4rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(247, 241, 227, 0.18);
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247, 241, 227, 0.55);
}

/* =========================================================
   INFO SUB-PAGES (praktisk, betingelser, transport)
   ========================================================= */
.info-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3.5rem var(--gutter) 2.5rem;
  border-bottom: var(--rule);
}
.info-hero__eyebrow {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--ink-soft);
  margin-bottom: 1.1rem;
}
.info-hero .display-title { margin-bottom: 1.2rem; }
.info-hero__lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 52ch;
  margin: 0;
}

.info {
  max-width: 880px;
  margin: 0 auto;
  padding: 3.5rem var(--gutter) 5rem;
}
.info-section { margin-bottom: 3.5rem; }
.info-section > p {
  font-size: 1rem;
  line-height: 1.75;
  margin: 0 0 1.1rem;
  max-width: 62ch;
}
.info-section > p b { font-weight: 600; }

.info-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 1.5rem;
  border-top: var(--rule);
}
.info-list li {
  padding: 0.8rem 0 0.8rem 1.6rem;
  border-bottom: var(--rule-soft);
  position: relative;
  font-size: 0.95rem;
  line-height: 1.6;
}
.info-list li::before {
  content: "✺";
  position: absolute; left: 0; top: 0.85rem;
  color: var(--terracotta);
  font-size: 0.85rem;
}

.info-cta {
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: var(--rule);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.info-cta p {
  margin: 0;
  font-family: var(--display);
  font-style: italic;
  font-size: 1.15rem;
  font-variation-settings: "opsz" 24, "wght" 420, "SOFT" 100;
}

/* =========================================================
   ACCESSIBILITY & NAVIGATION AIDS
   ========================================================= */
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

.skip-link {
  position: absolute;
  left: 50%;
  top: 0.6rem;
  transform: translate(-50%, -300%);
  z-index: 100;
  background: var(--ink);
  color: var(--cream-paper);
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: transform 0.2s ease;
}
.skip-link:focus-visible { transform: translate(-50%, 0); }

a:focus-visible,
button:focus-visible,
.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  outline: 2px solid var(--terracotta-deep);
  outline-offset: 3px;
}
.family a:focus-visible, .area a:focus-visible, .footer a:focus-visible,
.topstrip a:focus-visible, .price-card--featured a:focus-visible {
  outline-color: var(--cream-paper);
}

/* Mobile index menu — the issue's table of contents */
.nav__menu {
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.95rem;
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav__index {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: var(--cream);
  padding: 1.2rem var(--gutter) 2rem;
  overflow-y: auto;
}
.nav__index[hidden] { display: none; }
.nav__index-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: var(--rule);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.74rem;
  color: var(--ink-soft);
}
.nav__index-close {
  background: var(--ink);
  color: var(--cream);
  border: none;
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav__index ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__index a {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 0.95rem 0;
  border-bottom: var(--rule-soft);
  text-decoration: none;
  font-family: var(--display);
  font-size: 1.5rem;
  font-variation-settings: "opsz" 36, "wght" 420, "SOFT" 30, "WONK" 1;
}
.nav__index a .num {
  font-style: italic;
  color: var(--terracotta-deep);
  font-size: 1.05rem;
  min-width: 2.2rem;
}
.nav__index a em {
  font-style: italic;
  font-size: 0.85rem;
  color: var(--terracotta-deep);
  margin-left: auto;
}
body.menu-open { overflow: hidden; }

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1.1s cubic-bezier(0.2, 0.7, 0.2, 1), transform 1.1s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
  /* Static masthead motto instead of a frozen/blank marquee */
  .marquee__track {
    animation: none;
    padding-left: 0;
    white-space: normal;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 0.25rem;
    width: 100%;
  }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1100px) {
  .nav__links { display: none; }
  .nav__menu { display: inline-flex; }
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 1.6rem;
  }
  .hero__meta, .hero__title, .hero__leadwrap, .hero__photo--main, .hero__photo--side, .hero__wave {
    grid-column: 1;
    grid-row: auto;
  }
  .hero__meta { order: 1; }
  .hero__photo--main { order: 2; }
  .hero__title { order: 3; }
  .hero__leadwrap { order: 4; }
  .hero__photo--side { order: 5; }
  .hero__wave { order: 6; }
  .hero__photo--main .hero__photo-frame { aspect-ratio: 4 / 3; }
  .hero__photo--side { display: none; }
  .hero__title-line-2 { padding-left: 0; font-size: 0.42em; }
  .home__grid { grid-template-columns: repeat(6, 1fr); }
  .home__intro { grid-column: 1 / -1; }
  .home__photo--tall { grid-column: 1 / span 4; aspect-ratio: 4 / 3; }
  .home__note { grid-column: 5 / span 2; aspect-ratio: 1 / 1; }
  .home__photo--small { grid-column: 5 / span 2; }
  .family__grid { grid-template-columns: repeat(2, 1fr); }
  .day__head { grid-template-columns: 1fr; gap: 1.5rem; }
  .day__step { grid-template-columns: 5rem 1fr; gap: 1rem; }
  .day__step p { grid-column: 1 / -1; padding-top: 0.5rem; }
  .prices__grid { grid-template-columns: 1fr; }
  .care__grid { grid-template-columns: 1fr; }
  .ritual li { grid-template-columns: 2.6rem 1fr; }
  .ritual li p { grid-column: 2; }
  .guestbook__head { grid-template-columns: 1fr; }
  .guestbook__cards { grid-template-columns: repeat(2, 1fr); }
  .area__grid { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer__lockup { grid-template-columns: 1fr; }
  .footer__seal { width: 160px; height: 160px; margin: 0 auto; }
  .footer__cols { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .topstrip { grid-template-columns: 1fr; gap: 0.3rem; text-align: center; }
  .topstrip__contact { justify-self: center; }
  .topstrip__center { display: none; }
  .nav { grid-template-columns: 1fr auto auto; gap: 0.5rem; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .salonkort { padding: 1.5rem 1.1rem 1.2rem; }
  .salonkort__row .name { white-space: normal; }
  /* The three nav columns used to sum to a fixed 381px: the brand sits in the 1fr
     track, and a grid item's automatic minimum size is its min-content width —
     "Strandhunde" being one unbreakable word. Anything narrower than 381px clipped
     the CTA off the right edge, unreachable because body sets overflow-x: hidden.
     min-width: 0 lets the track shrink; the rest below buys back the width so the
     brand name still fits whole at 320px. The ellipsis is only a safety net. */
  .nav__brand { min-width: 0; gap: 0.5rem; }
  .nav__brand-text { min-width: 0; }
  .nav__brand-mark { width: 32px; height: 32px; }
  .nav__brand-name {
    font-size: 1rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .nav__brand-tag { display: none; }
  .nav__menu { padding: 0.45rem 0.6rem; font-size: 0.7rem; }
  .nav__cta { padding: 0.5rem 0.65rem; font-size: 0.7rem; gap: 0.3rem; }
  .nav__cta svg { display: none; }
  .hero__title-line-2 { padding-left: 1rem; }
  .guestbook__cards { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: 1fr; }
  .footer__base { flex-direction: column; gap: 0.5rem; text-align: center; }
}
/* Below roughly 356px the brand name, the index button and the CTA stop fitting
   on one row, and the name is the first to be cut. A clipped wordmark reads as
   broken, so under that width the brand falls back to its mark alone — the link
   still carries its aria-label. 360px, the commonest Android width, keeps the
   name whole. */
@media (max-width: 359px) {
  .nav__brand-name { display: none; }
}
