/* ==========================================================================
   DM BEAUTY CLINIC — shared stylesheet
   Palette: matched to her live site — blush border frame, coral accent,
   gold monogram, navy text, near-black footer.
   ========================================================================== */

:root {
  --ivory: #ffffff;
  --champagne: #fdf1ee;
  --ink: #19181c;
  --ink-soft: #2f3244;
  --charcoal: #17161c;
  --charcoal-soft: #5b5f72;
  --gold: #c99a3c;
  --gold-deep: #a97e2c;
  --gold-bright: #dcb35c;
  --rose: #ef8c7c;
  --rose-deep: #d97362;
  --blush-border: #f3c7c1;
  --line: rgba(51, 54, 74, 0.12);
  --line-strong: rgba(51, 54, 74, 0.2);
  --line-on-dark: rgba(253, 241, 238, 0.18);
  --white: #ffffff;

  --font-display: "Cormorant Garamond", "Georgia", serif;
  --font-body: "Jost", -apple-system, sans-serif;

  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2.5rem;
  --space-5: 4rem;
  --space-6: 6rem;
  --space-7: 9rem;

  --max-width: 1240px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  background: var(--blush-border);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Her real site frames every page in a soft blush-pink border — this
   wraps all page content in an inset white panel to reproduce that. */
.site-frame {
  background: var(--ivory);
  max-width: 1360px;
  margin-inline: auto;
  padding-inline: clamp(12px, 3vw, 48px);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, textarea, select { font-family: inherit; font-size: inherit; color: inherit; }

:focus-visible {
  outline: 2px solid var(--gold-deep);
  outline-offset: 3px;
}

.wrap {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--space-3);
}

@media (min-width: 900px) {
  .wrap { padding-inline: var(--space-5); }
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--rose-deep);
  font-weight: 500;
}

/* --------------------------------------------------------------------------
   Signature motif: a single continuous gold line-flourish, used as a
   divider under headings and a corner accent on cards.
   -------------------------------------------------------------------------- */
.flourish {
  display: block;
  width: 84px;
  height: 20px;
  margin: var(--space-2) 0;
  color: var(--gold);
}

.flourish--center { margin-inline: auto; }

.flourish svg { width: 100%; height: 100%; overflow: visible; }
.flourish line {
  stroke: currentColor;
  stroke-width: 1.2;
}
.flourish polygon {
  fill: currentColor;
  stroke: none;
}

/* --------------------------------------------------------------------------
   Top announcement strip
   -------------------------------------------------------------------------- */
.announce {
  background: var(--rose);
  color: var(--white);
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 9px var(--space-2);
}

.announce a { color: var(--white); text-decoration: underline; }

/* --------------------------------------------------------------------------
   Nav / mega menu
   -------------------------------------------------------------------------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--ivory);
  border-bottom: 1px solid var(--line);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-2) var(--space-3);
}

@media (min-width: 900px) {
  .nav-row { padding: var(--space-3) var(--space-5) var(--space-2); }
}

.brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--charcoal);
}

.brand-mark {
  height: 46px;
  width: auto;
  display: block;
}

@media (min-width: 900px) {
  .brand-mark { height: 54px; }
}

.footer-brand-mark {
  height: 40px;
  width: auto;
}

.brand em {
  font-style: normal;
  color: var(--gold-deep);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.btn-book {
  display: inline-block;
  background: var(--rose);
  color: var(--white);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 999px;
  transition: background 0.2s ease;
}

.btn-book:hover { background: var(--rose-deep); }

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: none;
  border: 1px solid var(--line-strong);
  padding: 10px;
  cursor: pointer;
}

@media (min-width: 900px) { .nav-toggle { display: none; } }

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  background: var(--charcoal);
}

/* On small screens the wordmark logo, "Boka tid" pill, cart icon and
   hamburger were all fighting for the same row width, which pushed the
   pill button's text onto two lines. Tighten things up so everything
   fits on one line and lines up neatly. */
@media (max-width: 899px) {
  .nav-row {
    padding: 10px var(--space-2);
    gap: var(--space-1);
  }

  .brand-mark {
    height: 30px;
  }

  .nav-actions {
    gap: 6px;
  }

  .nav-actions .btn-book {
    padding: 9px 14px;
    font-size: 0.68rem;
    letter-spacing: 0.05em;
    white-space: nowrap;
  }

  .cart-toggle,
  .nav-toggle {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 360px) {
  .brand-mark {
    height: 26px;
  }

  .nav-actions .btn-book {
    padding: 8px 12px;
    font-size: 0.64rem;
  }
}

.nav-links-row {
  display: none;
}

@media (min-width: 900px) {
  .nav-links-row {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: var(--space-1) var(--space-2);
    padding: 0 var(--space-3) var(--space-2);
    border-top: 1px solid var(--line);
    padding-top: var(--space-2);
  }
}

.nav-item {
  position: relative;
}

.nav-item > button,
.nav-item > a {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
  padding: 6px 2px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s ease;
}

.nav-item > button:hover,
.nav-item > a:hover,
.nav-item.is-current > a {
  color: var(--rose-deep);
  border-bottom: 2px solid var(--rose);
  padding-bottom: 4px;
}

.nav-item .chev {
  width: 8px;
  height: 8px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
  margin-top: -3px;
  transition: transform 0.2s ease;
}

.nav-item.is-open .chev { transform: rotate(-135deg); margin-top: 3px; }

.mega-panel {
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(42, 37, 33, 0.08);
  padding: var(--space-3) var(--space-4);
  display: none;
  gap: var(--space-4);
  white-space: nowrap;
  z-index: 500;
}

.nav-item.is-open .mega-panel { display: flex; }

.mega-col-title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--rose-deep);
  margin-bottom: var(--space-1);
  white-space: nowrap;
}

.mega-col a {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  color: var(--charcoal-soft);
  padding: 5px 0;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.mega-col a:hover {
  color: var(--rose-deep);
  padding-left: 4px;
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--ivory);
  display: none;
  flex-direction: column;
  overflow-y: auto;
  padding: var(--space-5) var(--space-3) var(--space-4);
}

.mobile-menu.is-open { display: flex; }

.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  margin-bottom: var(--space-3);
}

.mobile-group {
  border-bottom: 1px solid var(--line);
  padding: var(--space-2) 0;
}

.mobile-group-title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.mobile-sub {
  display: none;
  padding-top: var(--space-2);
  padding-left: var(--space-2);
}

.mobile-group.is-open .mobile-sub { display: block; }

.mobile-sub a {
  display: block;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--charcoal-soft);
}

.mobile-single a {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--line);
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  padding: var(--space-6) var(--space-3) var(--space-6);
  text-align: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  color: var(--ivory);
}

@media (min-width: 900px) {
  .hero { min-height: 720px; padding: var(--space-6) var(--space-5) var(--space-7); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(25, 24, 28, 0.55) 0%, rgba(25, 24, 28, 0.08) 55%, rgba(25, 24, 28, 0.18) 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: 760px;
  margin-inline: auto;
}

.hero .flourish { color: var(--rose); }
.hero .eyebrow { color: var(--rose-deep); }

.hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1.08;
  margin-top: var(--space-2);
  color: var(--ivory);
}

.hero h1 em {
  font-style: italic;
  color: var(--ivory);
}

.hero p.lede {
  margin-top: var(--space-3);
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 46ch;
  margin-inline: auto;
}

.hero-actions {
  margin-top: var(--space-4);
  display: flex;
  gap: var(--space-2);
  justify-content: center;
  flex-wrap: wrap;
}

.btn-outline {
  display: inline-block;
  border: 1px solid var(--charcoal);
  color: var(--charcoal);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 22px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.btn-outline:hover { background: var(--charcoal); color: var(--ivory); }

.btn-outline--on-photo {
  border-color: var(--ivory);
  color: var(--ivory);
}

.btn-outline--on-photo:hover {
  background: var(--ivory);
  color: var(--charcoal);
}

.hero-rating {
  margin-top: var(--space-4);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.85);
}

.hero-rating .stars { color: var(--gold-bright); letter-spacing: 2px; }

/* --------------------------------------------------------------------------
   Page header (dark band used at the top of every subpage, matching hero)
   -------------------------------------------------------------------------- */
.page-head {
  background: var(--champagne);
  color: var(--charcoal-soft);
  padding: var(--space-6) var(--space-3) var(--space-5);
  text-align: center;
}

@media (min-width: 900px) {
  .page-head { padding: var(--space-6) var(--space-5); }
}

.page-head .eyebrow { color: var(--rose-deep); }
.page-head h1 { color: var(--charcoal); }
.page-head .flourish { color: var(--gold); }
.page-head p { color: var(--charcoal-soft); }
.page-head a { color: var(--rose-deep); border-color: var(--rose) !important; }

/* Photo-banner variant — used on Kontakt to match her real site's
   pattern of a photo banner with a dark scrim under the page title. */
.page-head--photo {
  position: relative;
  background-size: cover;
  background-position: center;
  color: var(--ivory);
  overflow: hidden;
}

.page-head--photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 14, 17, 0.78) 0%, rgba(15, 14, 17, 0.62) 100%);
}

.page-head--photo .eyebrow,
.page-head--photo .flourish { position: relative; color: var(--rose); }
.page-head--photo h1 { position: relative; color: var(--ivory); }
.page-head--photo p { position: relative; color: rgba(255, 255, 255, 0.82); }
.page-head--photo a { position: relative; color: var(--gold-bright); border-color: var(--gold-bright) !important; }

/* --------------------------------------------------------------------------
   Section shells
   -------------------------------------------------------------------------- */
.section {
  padding: var(--space-6) 0;
}

.section-narrow { max-width: 760px; margin-inline: auto; }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-5);
}

.section-head h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  margin-top: var(--space-1);
}

.section-head p {
  margin-top: var(--space-2);
  color: var(--charcoal-soft);
}

/* --------------------------------------------------------------------------
   Category tiles (home page)
   -------------------------------------------------------------------------- */
.category-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}

@media (min-width: 700px) {
  .category-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1100px) {
  .category-grid { grid-template-columns: repeat(3, 1fr); }
}

.category-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  padding: var(--space-4) var(--space-3);
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.category-card:hover {
  border-color: var(--rose);
  transform: translateY(-3px);
}

.category-card .cat-num {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--rose);
  font-size: 2.6rem;
  line-height: 1;
}

.category-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-top: var(--space-1);
}

.category-card p {
  margin-top: var(--space-1);
  font-size: 0.9rem;
  color: var(--charcoal-soft);
}

.category-card .cat-link {
  display: inline-block;
  margin-top: var(--space-2);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rose-deep);
  border-bottom: 1px solid var(--rose);
  padding-bottom: 2px;
}

/* --------------------------------------------------------------------------
   Treatment price lists (priser.html)
   -------------------------------------------------------------------------- */
.price-group {
  margin-bottom: var(--space-4);
  scroll-margin-top: 210px;
}

.price-group-head {
  display: block;
  background: var(--champagne);
  border-bottom: none;
  border-left: 4px solid var(--rose);
  padding: var(--space-2) var(--space-3);
  margin-bottom: var(--space-2);
}

.price-group-head .eyebrow {
  display: block;
  margin-bottom: 2px;
}

.price-group-head h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--charcoal);
}

.price-list {
  column-gap: var(--space-4);
}

.price-jump-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: var(--space-4);
}

.price-jump-nav a {
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--charcoal-soft);
  background: var(--champagne);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 14px;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.price-jump-nav a:hover {
  background: var(--rose);
  color: var(--ivory);
  border-color: var(--rose);
}

@media (min-width: 720px) {
  .price-list { column-count: 2; }
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-2);
  padding: 9px 0;
  border-bottom: 1px dashed var(--line);
  break-inside: avoid;
}

.price-row .p-name { font-weight: 500; }
.price-row .p-meta {
  font-size: 0.78rem;
  color: var(--charcoal-soft);
  margin-top: 2px;
}
.price-row .p-price {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--gold-deep);
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   Cards (courses, products)
   -------------------------------------------------------------------------- */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}

@media (min-width: 700px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1000px) {
  .card-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1200px) {
  .card-grid { grid-template-columns: repeat(4, 1fr); }
}

/* --------------------------------------------------------------------------
   Review cards (recensioner.html)
   -------------------------------------------------------------------------- */
.review-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}

@media (min-width: 700px) {
  .review-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1100px) {
  .review-grid { grid-template-columns: repeat(3, 1fr); }
}

.review-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: var(--space-3);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.review-card .stars {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 0.95rem;
}

.review-card p.quote {
  color: var(--charcoal-soft);
  font-size: 0.95rem;
  line-height: 1.6;
  flex-grow: 1;
}

.review-card .who {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-size: 0.8rem;
  border-top: 1px solid var(--line);
  padding-top: var(--space-2);
}

.review-card .who .name {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--charcoal);
}

.review-card .who .source {
  color: var(--charcoal-soft);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.68rem;
}

.info-card {
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Shop product hover — desktop/pointer devices only, not touchscreens */
@media (hover: hover) and (pointer: fine) {
  .shop-grid .info-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  }

  .shop-grid .info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(23, 22, 30, 0.1);
    border-color: var(--rose);
  }

  .shop-grid .info-card img {
    transition: transform 0.4s ease;
  }

  .shop-grid .info-card:hover img {
    transform: scale(1.04);
  }
}

.info-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  filter: saturate(0.9);
}

.info-card-body {
  padding: var(--space-3);
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 4px;
}

.info-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
}

.info-card .price-tag {
  font-family: var(--font-display);
  color: var(--gold-deep);
  font-size: 1.1rem;
  margin-top: var(--space-1);
}

.info-card p.desc {
  margin-top: var(--space-1);
  font-size: 0.88rem;
  color: var(--charcoal-soft);
}

.badge {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--rose);
  color: var(--white);
  padding: 3px 9px;
  margin-bottom: var(--space-1);
}

/* --------------------------------------------------------------------------
   Staff
   -------------------------------------------------------------------------- */
.staff-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

@media (min-width: 700px) {
  .staff-grid { grid-template-columns: repeat(2, 1fr); }
  .staff-grid--single {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto;
  }
}

.staff-card { text-align: center; }

.staff-card img {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  margin-inline: auto;
  border: 1px solid var(--gold);
  padding: 6px;
}

.staff-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-top: var(--space-2);
}

.staff-card .role {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-top: 2px;
}

.staff-card p.bio {
  margin-top: var(--space-2);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--charcoal-soft);
  max-width: 42ch;
  margin-inline: auto;
}

/* --------------------------------------------------------------------------
   Reviews strip
   -------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
   Stat band — solid black, for real graphic contrast against the
   otherwise soft blush/coral/gold palette.
   -------------------------------------------------------------------------- */
.stat-band {
  background: var(--ink);
  padding: var(--space-5) 0;
}

.stat-band-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2);
  text-align: center;
}

@media (max-width: 380px) {
  .stat-band-grid { gap: var(--space-1); }
  .stat-band .num { font-size: 1.9rem; }
  .stat-band .label { font-size: 0.62rem; }
}

.stat-band .num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  color: var(--gold-bright);
  line-height: 1;
}

.stat-band .label {
  margin-top: 6px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(253, 241, 238, 0.75);
}

.reviews-strip {
  background: var(--champagne);
  color: var(--charcoal);
  padding: var(--space-5) 0;
  text-align: center;
}

.reviews-strip .stars { color: var(--gold); letter-spacing: 4px; font-size: 1.3rem; }

.reviews-strip .score {
  font-family: var(--font-display);
  font-size: 3rem;
  margin-top: var(--space-2);
}

.reviews-strip p {
  margin-top: var(--space-1);
  color: var(--charcoal-soft);
  font-size: 0.9rem;
}

.reviews-strip--photo {
  position: relative;
  background-size: cover;
  background-position: center;
  color: var(--ivory);
  overflow: hidden;
}

.reviews-strip--photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 14, 17, 0.72) 0%, rgba(15, 14, 17, 0.58) 100%);
}

.reviews-strip--photo .wrap { position: relative; }
.reviews-strip--photo .eyebrow { color: var(--rose) !important; }
.reviews-strip--photo .score { color: var(--ivory); }
.reviews-strip--photo p { color: rgba(255, 255, 255, 0.82); }

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  gap: var(--space-4);
}

@media (min-width: 800px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
}

.contact-row {
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--line);
}

.contact-row .k {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rose-deep);
}

.contact-row .v { margin-top: 4px; font-size: 1.05rem; }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 8px 0; border-bottom: 1px dashed var(--line); font-size: 0.92rem; }
.hours-table td:last-child { text-align: right; color: var(--charcoal-soft); }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
  border-top: 1px solid var(--line);
  padding: var(--space-5) 0 0;
  background: var(--champagne);
  color: var(--charcoal-soft);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

@media (min-width: 800px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}

.footer-brand {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--charcoal);
}

.footer-col h4 {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-bottom: var(--space-2);
}

.footer-col a, .footer-col p {
  display: block;
  font-size: 0.88rem;
  color: var(--charcoal-soft);
  padding: 4px 0;
  transition: color 0.2s ease;
}

.footer-col a:hover { color: var(--rose-deep); }

.footer-bottom {
  margin-top: var(--space-4);
  padding: var(--space-3) var(--space-3);
  background: var(--ink);
  text-align: center;
  font-size: 0.72rem;
  color: rgba(253, 241, 238, 0.6);
  letter-spacing: 0.04em;
}

/* --------------------------------------------------------------------------
   Bokadirekt live embed
   -------------------------------------------------------------------------- */
.bokadirekt-embed {
  min-height: 800px;
}

@media (max-width: 700px) {
  .bokadirekt-embed { min-height: 550px; }
}

/* --------------------------------------------------------------------------
   Shopping basket — reservation-for-pickup model, not real checkout.
   -------------------------------------------------------------------------- */
.cart-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-strong);
  background: none;
  border-radius: 50%;
  cursor: pointer;
  color: var(--charcoal);
}

.cart-toggle svg { width: 18px; height: 18px; }

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--rose);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-count[data-empty="true"] { display: none; }

.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(23, 22, 28, 0.45);
  display: none;
}

.cart-overlay.is-open { display: block; }

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(420px, 100vw);
  background: var(--ivory);
  z-index: 301;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: -12px 0 30px rgba(23, 22, 28, 0.15);
}

.cart-overlay.is-open .cart-drawer { transform: translateX(0); }

.cart-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-3);
  border-bottom: 1px solid var(--line);
}

.cart-drawer-head h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
}

.cart-drawer-close {
  background: none;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  color: var(--charcoal-soft);
  line-height: 1;
}

.cart-drawer-items {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-2) var(--space-3);
}

.cart-empty {
  color: var(--charcoal-soft);
  font-size: 0.9rem;
  padding: var(--space-4) 0;
  text-align: center;
}

.cart-item {
  display: flex;
  gap: var(--space-2);
  padding: var(--space-2) 0;
  border-bottom: 1px dashed var(--line);
}

.cart-item img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  background: var(--champagne);
  flex-shrink: 0;
}

.cart-item-info { flex: 1; min-width: 0; }
.cart-item-info .name { font-size: 0.9rem; font-weight: 500; }
.cart-item-info .price { font-size: 0.82rem; color: var(--gold-deep); margin-top: 2px; }

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}

.cart-item-qty button {
  width: 22px;
  height: 22px;
  border: 1px solid var(--line-strong);
  background: var(--white);
  cursor: pointer;
  font-size: 0.85rem;
  line-height: 1;
}

.cart-item-remove {
  background: none;
  border: none;
  color: var(--charcoal-soft);
  font-size: 0.75rem;
  text-decoration: underline;
  cursor: pointer;
  margin-top: 6px;
}

.cart-drawer-footer {
  padding: var(--space-3);
  border-top: 1px solid var(--line);
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  font-size: 1rem;
  margin-bottom: var(--space-2);
}

.cart-subtotal .amount {
  font-family: var(--font-display);
  color: var(--gold-deep);
  font-size: 1.2rem;
}

.cart-reserve-btn {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--rose);
  color: var(--white);
  border: none;
  padding: 13px;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

.cart-reserve-btn:disabled {
  background: var(--line-strong);
  color: var(--charcoal-soft);
  cursor: not-allowed;
}

.cart-note {
  font-size: 0.76rem;
  color: var(--charcoal-soft);
  margin-top: var(--space-2);
  text-align: center;
}

.reserve-form {
  display: none;
  margin-top: var(--space-3);
  padding-top: var(--space-3);
  border-top: 1px solid var(--line);
}

.reserve-form.is-open { display: block; }

.reserve-form .field { margin-bottom: var(--space-2); }

.reserve-form label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-bottom: 4px;
}

.reserve-form input,
.reserve-form textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  background: var(--white);
  padding: 9px 11px;
  border-radius: 2px;
}

.reserve-status {
  margin-top: var(--space-2);
  font-size: 0.8rem;
  color: var(--gold-deep);
  min-height: 1.1em;
}

/* Product cards with an "add to basket" button */
.product-card-add {
  display: block;
  width: 100%;
  margin-top: auto;
  background: var(--charcoal);
  color: var(--ivory);
  border: none;
  padding: 10px;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-indent: 0.08em; /* compensates for trailing letter-spacing so text is visually centered */
  cursor: pointer;
  transition: background 0.2s ease;
}

.product-card-add:hover { background: var(--rose); }
.product-card-add[data-added="true"] { background: var(--gold-deep); }

.shop-section-title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  margin: var(--space-5) 0 var(--space-2);
  padding-bottom: var(--space-1);
  border-bottom: 1px solid var(--gold);
}

.shop-section-title:first-of-type { margin-top: 0; }

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
