/* ==========================================================================
   Nails Lindes — design system
   Plain CSS. Tokens first, then base, layout, components, utilities.
   ========================================================================== */

/* ---------- Tokens ------------------------------------------------------- */
:root {
  /* Brand palette — exact hexes, do not alter */
  --color-beige:  #F1EBDD;
  --color-tan:    #D8C094;
  --color-silver: #CFC9B3;
  --color-cadet:  #94A3AF;
  --color-stone:  #645A4E;
  --color-coffee: #2A1A13;

  /* Derived / functional */
  --bg:            var(--color-beige);
  --bg-surface:    #F7F3EA;
  --bg-dark:       var(--color-coffee);
  --text:          var(--color-coffee);
  --text-soft:     var(--color-stone);
  --line:          var(--color-silver);
  --accent:        var(--color-tan);
  --accent-cool:   var(--color-cadet);

  /* Typography */
  --font-serif: "Instrument Serif", "Times New Roman", serif;
  --font-sans:  "Instrument Sans", "Helvetica Neue", Arial, sans-serif;

  --tracking-wide:  0.16em;
  --tracking-label: 0.22em;

  /* Spacing scale */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 4.5rem;
  --space-7: 7rem;

  --maxw: 1240px;
  --maxw-narrow: 760px;
  --radius: 2px;
  --shadow-soft: 0 18px 50px -28px rgba(42, 26, 19, 0.45);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.12;
  margin: 0 0 var(--space-3);
  color: var(--text);
}
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 400; letter-spacing: 0.01em; }
h2 { font-size: clamp(2rem, 4vw, 3.1rem); }
h3 { font-size: clamp(1.5rem, 2.4vw, 2rem); }
h4 { font-size: 1.25rem; }

p { margin: 0 0 var(--space-3); }
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }

::selection { background: var(--color-tan); color: var(--color-coffee); }

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

/* ---------- Helpers ------------------------------------------------------ */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--space-4); }
.container--narrow { max-width: var(--maxw-narrow); }
.section { padding-block: var(--space-7); }
.section--tight { padding-block: var(--space-6); }
.section--surface { background: var(--bg-surface); }
.section--dark { background: var(--bg-dark); color: var(--color-beige); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--color-beige); }
.section--dark .feature p { color: color-mix(in srgb, var(--color-beige) 80%, transparent); }

.text-center { text-align: center; }
.muted { color: var(--text-soft); }
.lead { font-size: 1.2rem; color: var(--text-soft); }
.mx-auto { margin-inline: auto; }
.stack > * + * { margin-top: var(--space-3); }
.hidden { display: none !important; }

/* Eyebrow / small label */
.eyebrow {
  font-family: var(--font-sans);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: var(--tracking-label);
  font-size: 0.72rem;
  color: var(--color-stone);
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  margin-bottom: var(--space-2);
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--color-tan);
}
.eyebrow--center { justify-content: center; }
.eyebrow--center::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--color-tan);
}

/* Section heading block */
.section-head { max-width: 640px; margin-bottom: var(--space-5); }
.section-head--center { margin-inline: auto; text-align: center; }

/* ---------- Buttons ------------------------------------------------------ */
.btn {
  --btn-bg: var(--color-coffee);
  --btn-fg: var(--color-beige);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  padding: 0.95em 2em;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid var(--btn-bg);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background .35s var(--ease), color .35s var(--ease), transform .35s var(--ease);
}
.btn:hover { background: transparent; color: var(--btn-bg); transform: translateY(-2px); }
.btn--ghost { --btn-bg: transparent; --btn-fg: var(--color-coffee); border-color: var(--color-coffee); }
.btn--ghost:hover { background: var(--color-coffee); color: var(--color-beige); }
.btn--light { --btn-bg: var(--color-beige); --btn-fg: var(--color-coffee); }
.btn--light:hover { background: transparent; color: var(--color-beige); border-color: var(--color-beige); }
.btn--block { width: 100%; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-stone);
  transition: gap .3s var(--ease), color .3s var(--ease);
}
.link-arrow svg { width: 16px; height: 16px; }
.link-arrow:hover { gap: 0.9em; color: var(--color-coffee); }

/* ==========================================================================
   Header / navigation
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--color-beige) 90%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding-block: var(--space-2);
}
.brand { display: inline-flex; align-items: center; gap: 0.7rem; }
.brand__mark { width: 34px; height: 34px; }
.brand__name {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.25rem;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-coffee);
  line-height: 1;
}

.nav { display: flex; align-items: center; gap: clamp(1rem, 2.2vw, 2.4rem); }
.nav__link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-stone);
  position: relative;
  padding-block: 0.3rem;
  transition: color .3s var(--ease);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--color-coffee);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav__link:hover, .nav__link[aria-current="page"] { color: var(--color-coffee); }
.nav__link:hover::after, .nav__link[aria-current="page"]::after { transform: scaleX(1); }

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

/* Language switcher */
.lang {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
}
.lang__btn {
  appearance: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-stone);
  padding: 0.4rem 0.7rem;
  transition: background .3s var(--ease), color .3s var(--ease);
}
.lang__btn[aria-pressed="true"] { background: var(--color-coffee); color: var(--color-beige); }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px; height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: transparent;
  cursor: pointer;
}
.burger span { display: block; height: 1.5px; width: 20px; margin-inline: auto; background: var(--color-coffee); transition: transform .3s var(--ease), opacity .3s var(--ease); }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 940px) {
  .burger { display: flex; }
  .nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(320px, 84vw);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: var(--space-3);
    padding: var(--space-6) var(--space-4);
    background: var(--color-beige);
    border-left: 1px solid var(--line);
    transform: translateX(100%);
    transition: transform .4s var(--ease);
    z-index: 99;
  }
  .nav.is-open { transform: translateX(0); box-shadow: var(--shadow-soft); }
  .nav__link { font-size: 1rem; }
  .nav-backdrop {
    position: fixed; inset: 0;
    background: rgba(42,26,19,.35);
    opacity: 0; visibility: hidden;
    transition: opacity .3s var(--ease), visibility .3s var(--ease);
    z-index: 98;
  }
  .nav-backdrop.is-open { opacity: 1; visibility: visible; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: clamp(560px, 82vh, 860px);
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--color-beige);
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 65%; }
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(42,26,19,.30), rgba(42,26,19,.55));
}
.hero__inner { position: relative; z-index: 2; padding: var(--space-5) var(--space-4); max-width: 820px; }

/* Diamond badge overlay */
.hero__badge {
  width: clamp(120px, 16vw, 170px);
  height: clamp(120px, 16vw, 170px);
  margin: 0 auto var(--space-4);
  display: grid;
  place-items: center;
  background: color-mix(in srgb, var(--color-beige) 92%, transparent);
  transform: rotate(45deg);
  border: 1px solid color-mix(in srgb, var(--color-stone) 40%, transparent);
  box-shadow: var(--shadow-soft);
}
.hero__badge > * { transform: rotate(-45deg); width: 70%; height: 70%; }

.hero h1 { color: var(--color-beige); margin-bottom: var(--space-3); }
.hero__sub { font-size: 1.15rem; color: color-mix(in srgb, var(--color-beige) 88%, transparent); max-width: 540px; margin-inline: auto; }
.hero__cta { margin-top: var(--space-4); display: flex; gap: var(--space-2); justify-content: center; flex-wrap: wrap; }
.hero__tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  color: color-mix(in srgb, var(--color-beige) 85%, transparent);
}

/* Hero variant: component / asymmetric (no full-bleed image) */
.hero-split {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--line);
}
.hero-split__grid {
  display: grid;
  grid-template-columns: 1fr minmax(auto, 560px) 1fr;
  align-items: center;
  gap: var(--space-4);
}
.hero-split__media img { aspect-ratio: 3/4; object-fit: cover; width: 100%; border-radius: var(--radius); }
.hero-split__center { text-align: center; }
@media (max-width: 900px) {
  .hero-split__grid { grid-template-columns: 1fr; }
  .hero-split__media { display: none; }
}

/* ==========================================================================
   2-column split
   ========================================================================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
}
.split--reverse .split__media { order: 2; }
.split__media { position: relative; }
.split__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius); }
.split__media--overlay::after {
  content: attr(data-script);
  position: absolute;
  left: 50%; bottom: 8%;
  transform: translateX(-50%);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--color-beige);
  text-shadow: 0 4px 18px rgba(42,26,19,.5);
  white-space: nowrap;
}
@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
}

/* List with chevron (CTA list) */
.linklist { border-top: 1px solid var(--line); }
.linklist__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left .3s var(--ease), color .3s var(--ease);
}
.linklist__item:hover { padding-left: var(--space-2); color: var(--color-coffee); }
.linklist__item h4 { margin: 0; }
.linklist__item p { margin: 0.2rem 0 0; font-size: 0.95rem; color: var(--text-soft); }
.linklist__chev { flex: none; width: 22px; height: 22px; color: var(--color-stone); transition: transform .3s var(--ease); }
.linklist__item:hover .linklist__chev { transform: translateX(4px); }

/* ==========================================================================
   Feature grid (3 columns, icons)
   ========================================================================== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}
.feature {
  text-align: center;
  padding: var(--space-4) var(--space-3);
}
.feature__icon {
  width: 56px; height: 56px;
  margin: 0 auto var(--space-3);
  color: var(--color-stone);
}
.feature h3 { font-size: 1.35rem; margin-bottom: var(--space-1); }
.feature p { color: var(--text-soft); font-size: 0.98rem; margin: 0; }
@media (max-width: 760px) { .feature-grid { grid-template-columns: 1fr; gap: var(--space-2); } }
/* Centered variant: items wrap and a short last row stays centered */
.feature-grid--wrap { display: flex; flex-wrap: wrap; justify-content: center; }
.feature-grid--wrap .feature { flex: 0 1 30%; }
@media (max-width: 760px) { .feature-grid--wrap .feature { flex-basis: 100%; } }

/* ==========================================================================
   Gallery
   ========================================================================== */
.gallery-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}
.gallery-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-2);
}
.thumb {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--color-silver);
}
.thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.thumb:hover img { transform: scale(1.06); }
.thumb__tag {
  position: absolute;
  left: var(--space-2); bottom: var(--space-2);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-beige);
  background: rgba(42,26,19,.55);
  padding: 0.25em 0.7em;
  border-radius: 999px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.thumb:hover .thumb__tag { opacity: 1; transform: translateY(0); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2);
}
.gallery-grid .thumb { aspect-ratio: 3 / 4; }
.gallery-grid .thumb img { object-fit: cover; background: var(--bg); }
@media (max-width: 900px) { .gallery-row { grid-template-columns: repeat(2, 1fr); } .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .gallery-grid { grid-template-columns: 1fr; } }

/* Full-bleed 4-col image band */
.image-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.image-band img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
@media (max-width: 760px) { .image-band { grid-template-columns: repeat(2, 1fr); } }

/* ==========================================================================
   Dividers — marquee, stripe, scallop
   ========================================================================== */
.marquee {
  background: var(--color-coffee);
  color: var(--color-beige);
  overflow: hidden;
  padding-block: 0.9rem;
  border-block: 1px solid color-mix(in srgb, var(--color-stone) 60%, transparent);
}
.marquee--accent { background: var(--color-tan); color: var(--color-coffee); border-color: color-mix(in srgb, var(--color-stone) 30%, transparent); }
.marquee__track {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  will-change: transform;
  animation: marquee 32s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 1.4rem;
  padding-inline: 1.4rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
}
.marquee__sep { font-style: normal; opacity: .6; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Striped divider */
.divider--stripe {
  height: 18px;
  background-image: repeating-linear-gradient(
    -45deg,
    var(--color-tan) 0, var(--color-tan) 10px,
    var(--color-beige) 10px, var(--color-beige) 20px
  );
  border-block: 1px solid var(--line);
}

/* Scallop divider */
.divider--scallop {
  height: 26px;
  background:
    radial-gradient(circle at 13px 0, transparent 13px, var(--color-silver) 13px) repeat-x;
  background-size: 26px 26px;
  background-position: 0 -13px;
}

/* ==========================================================================
   Pricing
   ========================================================================== */
.price-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-1);
  justify-content: center;
  margin-bottom: var(--space-5);
}
.price-tab {
  appearance: none;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--color-stone);
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.price-tab[aria-selected="true"] { background: var(--color-coffee); color: var(--color-beige); border-color: var(--color-coffee); }

.price-group { margin-bottom: var(--space-6); }
.price-group__title {
  text-align: center;
  margin-bottom: var(--space-3);
}
.price-group__title h3 { margin: 0; }

.price-list { border-top: 1px solid var(--line); }
.price-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.4rem var(--space-3);
  align-items: baseline;
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--line);
}
.price-item__name { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 500; }
.price-item__lead {
  flex: 1;
  border-bottom: 1px dotted var(--color-silver);
}
.price-item__price { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 600; white-space: nowrap; }
.price-item__desc { grid-column: 1 / -1; margin: 0; font-size: 0.92rem; color: var(--text-soft); }
.price-note { font-size: 0.88rem; color: var(--text-soft); margin-top: var(--space-3); }

/* Pricing feature cards (product-card style) */
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
}
.card {
  background: var(--bg-surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.card__media { aspect-ratio: 1/1; background: var(--color-silver); }
.card__media img { width: 100%; height: 100%; object-fit: cover; }
.card__body { padding: var(--space-3); display: flex; flex-direction: column; gap: 0.3rem; flex: 1; }
.card__title { font-family: var(--font-serif); font-size: 1.3rem; margin: 0; }
.card__price { color: var(--color-stone); font-weight: 600; }
.card__desc { font-size: 0.9rem; color: var(--text-soft); margin: 0 0 var(--space-2); }
.card .btn { margin-top: auto; }
@media (max-width: 980px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .card-grid { grid-template-columns: 1fr; } }

/* Highlighted price panel */
.price-highlight {
  background: var(--color-coffee);
  color: var(--color-beige);
  border-radius: 12px;
  padding: var(--space-5);
  text-align: center;
}
.price-highlight h2, .price-highlight h3 { color: var(--color-beige); }
.price-highlight .price-figure { font-family: var(--font-serif); font-size: clamp(3rem, 8vw, 5rem); line-height: 1; }

/* ==========================================================================
   Quote band
   ========================================================================== */
.quote-band { text-align: center; }
.quote-band__mark {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.3;
  max-width: 820px;
  margin: 0 auto var(--space-3);
}
.quote-band cite { font-style: normal; font-size: 0.78rem; letter-spacing: var(--tracking-label); text-transform: uppercase; color: var(--text-soft); }

/* ==========================================================================
   Testimonials carousel
   ========================================================================== */
.testi { position: relative; }
.testi-viewport {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;          /* Firefox */
  -ms-overflow-style: none;       /* IE/Edge  */
  margin-inline: calc(-1 * var(--space-2));
  padding-inline: var(--space-2);
}
.testi-viewport::-webkit-scrollbar { display: none; }
.testi-track {
  display: flex;
  gap: var(--space-3);
  align-items: stretch;
}
.testi-card {
  flex: 0 0 calc((100% - 2 * var(--space-3)) / 3);
  scroll-snap-align: start;
  background: var(--bg-surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.testi-stars {
  color: var(--color-tan);
  letter-spacing: 0.3em;
  font-size: 1rem;
  line-height: 1;
}
.testi-card blockquote {
  margin: 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.35rem;
  line-height: 1.4;
  color: var(--text);
}
.testi-card cite {
  margin-top: auto;
  font-style: normal;
  font-size: 0.9rem;
  color: var(--text-soft);
}
.testi-nav {
  display: flex;
  justify-content: center;
  gap: var(--space-2);
  margin-top: var(--space-4);
}
.testi-arrow {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  background: var(--bg-surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  color: var(--color-coffee);
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.testi-arrow:hover { background: var(--color-coffee); color: var(--color-beige); border-color: var(--color-coffee); }
.testi-arrow:disabled { opacity: .35; cursor: default; }
.testi-arrow:disabled:hover { background: var(--bg-surface); color: var(--color-coffee); border-color: var(--line); }
.testi-arrow svg { width: 22px; height: 22px; }
@media (max-width: 900px) { .testi-card { flex-basis: calc((100% - var(--space-3)) / 2); } }
@media (max-width: 620px) { .testi-card { flex-basis: 100%; } }

/* ==========================================================================
   Instagram feed strip
   ========================================================================== */
.insta-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
  flex-wrap: wrap;
}
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-1);
}
.insta-tile {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--color-silver);
}
.insta-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.insta-tile:hover img { transform: scale(1.08); }
.insta-tile::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(42,26,19,.0);
  transition: background .35s var(--ease);
}
.insta-tile:hover::after { background: rgba(42,26,19,.35); }
.insta-tile__icon {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 28px; height: 28px;
  color: var(--color-beige);
  opacity: 0;
  transform: scale(.8);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
  z-index: 2;
}
.insta-tile:hover .insta-tile__icon { opacity: 1; transform: scale(1); }
@media (max-width: 900px) { .insta-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px) { .insta-grid { grid-template-columns: repeat(2, 1fr); } }

/* ==========================================================================
   FAQ accordion (native <details>)
   ========================================================================== */
.faq { max-width: var(--maxw-narrow); margin-inline: auto; }
.faq__item {
  border-bottom: 1px solid var(--line);
}
.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--text);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "";
  flex: none;
  width: 14px; height: 14px;
  border-right: 1.5px solid var(--color-stone);
  border-bottom: 1.5px solid var(--color-stone);
  transform: rotate(45deg);
  transition: transform .3s var(--ease);
  margin-top: -6px;
}
.faq__item[open] summary::after { transform: rotate(-135deg); margin-top: 4px; }
.faq__item summary:hover { color: var(--color-coffee); }
.faq__answer { padding: 0 0 var(--space-3); color: var(--text-soft); max-width: 60ch; }
.faq__answer p { margin: 0; }


/* ==========================================================================
   Steps / process
   ========================================================================== */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-4); counter-reset: step; }
.step { counter-increment: step; }
.step__num {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  color: var(--color-tan);
  line-height: 1;
  margin-bottom: var(--space-2);
}
.step__num::before { content: counter(step, decimal-leading-zero); }
.step h4 { margin-bottom: var(--space-1); }
.step p { margin: 0; color: var(--text-soft); font-size: 0.96rem; }
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; } }

/* ==========================================================================
   Forms
   ========================================================================== */
.form { display: grid; gap: var(--space-3); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3); }
.field { display: grid; gap: 0.45rem; }
.field label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-stone);
}
.field input, .field select, .field textarea {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--text);
  background: var(--bg-surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--color-stone);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--color-tan) 45%, transparent);
}
.field textarea { resize: vertical; min-height: 140px; }
@media (max-width: 620px) { .form__row { grid-template-columns: 1fr; } }

.form-note {
  font-size: 0.85rem;
  color: var(--text-soft);
  background: var(--bg-surface);
  border-left: 2px solid var(--color-tan);
  padding: var(--space-2) var(--space-3);
}

/* ==========================================================================
   Info / contact blocks
   ========================================================================== */
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5); align-items: start; }
@media (max-width: 820px) { .info-grid { grid-template-columns: 1fr; } }

.info-list { display: grid; gap: var(--space-3); }
.info-item { display: flex; gap: var(--space-2); align-items: flex-start; }
.info-item__icon { flex: none; width: 26px; height: 26px; color: var(--color-stone); margin-top: 3px; }
.info-item h4 { margin: 0 0 0.2rem; font-size: 1.05rem; }
.info-item p { margin: 0; color: var(--text-soft); }

.hours { width: 100%; border-collapse: collapse; }
.hours td { padding: 0.6rem 0; border-bottom: 1px solid var(--line); }
.hours td:last-child { text-align: right; color: var(--text-soft); }

.map-embed { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; aspect-ratio: 16/10; background: var(--color-silver); }
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }
.map-embed--tall { aspect-ratio: 3/4; }
@media (max-width: 820px) { .map-embed--tall { aspect-ratio: 16/10; } }

/* Badge of trust / mini stats */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-4); text-align: center; }
.stat__num { font-family: var(--font-serif); font-size: clamp(2.4rem, 5vw, 3.4rem); line-height: 1; color: var(--color-coffee); }
.stat__label { font-size: 0.78rem; letter-spacing: var(--tracking-wide); text-transform: uppercase; color: var(--text-soft); }
@media (max-width: 620px) { .stats { grid-template-columns: 1fr; gap: var(--space-3); } }

/* ==========================================================================
   Page hero (interior pages)
   ========================================================================== */
.page-hero {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--line);
  padding-block: var(--space-6);
  text-align: center;
}
.page-hero .crumbs {
  font-size: 0.72rem;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: var(--space-2);
}
.page-hero h1 { margin-bottom: var(--space-2); }
.page-hero p { max-width: 620px; margin-inline: auto; color: var(--text-soft); }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band { text-align: center; }
.cta-band h2 { margin-bottom: var(--space-2); }
.cta-band p { max-width: 560px; margin: 0 auto var(--space-4); color: color-mix(in srgb, var(--color-beige) 80%, transparent); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--color-coffee);
  color: color-mix(in srgb, var(--color-beige) 80%, transparent);
  padding-block: var(--space-6) var(--space-4);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: var(--space-5);
  align-items: start;
}
.site-footer .brand__name { color: var(--color-beige); }
/* Brand emblem is dark ink — invert to cream so it reads on the coffee footer */
.site-footer .brand__mark { filter: brightness(0) invert(1); opacity: .92; }
.footer-col h4 {
  color: var(--color-beige);
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  margin-bottom: var(--space-3);
}
.footer-col a { color: color-mix(in srgb, var(--color-beige) 78%, transparent); transition: color .3s var(--ease); display: inline-block; padding-block: 0.25rem; }
.footer-col a:hover { color: var(--color-beige); }
.footer-illus { color: color-mix(in srgb, var(--color-tan) 90%, transparent); width: 120px; }
.footer-social { display: flex; gap: var(--space-2); margin-top: var(--space-2); }
.footer-social a { width: 40px; height: 40px; border: 1px solid color-mix(in srgb, var(--color-beige) 30%, transparent); border-radius: 999px; display: grid; place-items: center; }
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom {
  margin-top: var(--space-5);
  padding-top: var(--space-3);
  border-top: 1px solid color-mix(in srgb, var(--color-beige) 18%, transparent);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-2);
  font-size: 0.8rem;
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; gap: var(--space-4); } .footer-illus { display: none; } }

/* ==========================================================================
   Reveal-on-scroll
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* Decorative stripe background panel */
.stripe-bg {
  background-image: repeating-linear-gradient(90deg,
    var(--color-beige) 0, var(--color-beige) 18px,
    color-mix(in srgb, var(--color-tan) 35%, var(--color-beige)) 18px,
    color-mix(in srgb, var(--color-tan) 35%, var(--color-beige)) 20px);
}

/* ==========================================================================
   Transparent header over hero (homepage) → solid bar on scroll
   ========================================================================== */
body.home .site-header {
  position: fixed;
  inset: 0 0 auto 0;
  background: transparent;
  border-bottom-color: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  transition: background .4s var(--ease), border-color .4s var(--ease), backdrop-filter .4s var(--ease);
}
/* Soft scrim so light header content stays legible over the hero */
body.home .site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(42, 26, 19, .45), rgba(42, 26, 19, 0));
  transition: opacity .4s var(--ease);
}

/* Transparent (top) state — light content on the photo */
body.home .site-header:not(.is-scrolled) .brand__name,
body.home .site-header:not(.is-scrolled) .nav__link { color: var(--color-beige); }
body.home .site-header:not(.is-scrolled) .brand__mark { filter: brightness(0) invert(1); }
body.home .site-header:not(.is-scrolled) .nav__link::after { background: var(--color-beige); }
body.home .site-header:not(.is-scrolled) .lang { border-color: rgba(241, 235, 221, .5); }
body.home .site-header:not(.is-scrolled) .lang__btn { color: var(--color-beige); }
body.home .site-header:not(.is-scrolled) .lang__btn[aria-pressed="true"] { background: var(--color-beige); color: var(--color-coffee); }
body.home .site-header:not(.is-scrolled) .header-actions > .btn {
  background: var(--color-beige); color: var(--color-coffee); border-color: var(--color-beige);
}
body.home .site-header:not(.is-scrolled) .header-actions > .btn:hover { background: transparent; color: var(--color-beige); }
body.home .site-header:not(.is-scrolled) .burger { border-color: rgba(241, 235, 221, .5); }
body.home .site-header:not(.is-scrolled) .burger span { background: var(--color-beige); }

/* Scrolled state — revert to the solid beige bar */
body.home .site-header.is-scrolled {
  background: color-mix(in srgb, var(--color-beige) 92%, transparent);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--line);
}
body.home .site-header.is-scrolled::before { opacity: 0; }

/* On mobile the slide-in menu is a solid panel — keep its links dark */
@media (max-width: 940px) {
  body.home .site-header:not(.is-scrolled) .nav.is-open .nav__link { color: var(--color-coffee); }
}

/* ==========================================================================
   Demo announcement bar (temporary client-preview scaffolding)
   ========================================================================== */
.demo-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6em;
  background: var(--color-coffee);
  color: color-mix(in srgb, var(--color-beige) 82%, transparent);
  padding: .42rem var(--space-3);
  text-align: center;
  font-size: .68rem;
  letter-spacing: .06em;
  line-height: 1.35;
}
.demo-bar strong {
  color: var(--color-tan);
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}

/* Demo bar removed — no offset needed (var stays 0 when the bar is absent) */
body { padding-top: var(--demo-h, 0px); }
.site-header { top: var(--demo-h, 0px); }
body.home { padding-top: 0; }
body.home .site-header { top: var(--demo-h, 0px); }

/* ==========================================================================
   Hero wordmark (replaces the badge on the homepage hero)
   ========================================================================== */
.hero__wordmark { margin: 0 0 var(--space-2); line-height: 1; }
.hero__wordmark img {
  width: min(540px, 84vw);
  height: auto;
  margin-inline: auto;
  filter: drop-shadow(0 6px 26px rgba(42, 26, 19, .4));
}

/* ==========================================================================
   Striped statement band
   ========================================================================== */
.striped-band {
  text-align: center;
  border-block: 1px solid var(--line);
  background-image: repeating-linear-gradient(90deg,
    #FBF8F1 0, #FBF8F1 48px,
    #ECE3CE 48px, #ECE3CE 96px);
}
.striped-band h2 {
  margin: 0 0 var(--space-2);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 500;
}
.striped-band .band-sub {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--color-stone);
}

/* ==========================================================================
   Services: striped collage + accordion "windows"
   ========================================================================== */
.svc-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.collage {
  position: relative;
  padding: var(--space-5);
  min-height: 460px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background-image: repeating-linear-gradient(90deg,
    #F7F3EA 0, #F7F3EA 30px,
    color-mix(in srgb, var(--color-cadet) 11%, #F7F3EA) 30px,
    color-mix(in srgb, var(--color-cadet) 11%, #F7F3EA) 60px);
}
.collage__main {
  width: 64%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border: 7px solid #fff;
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius);
}
.collage__inset {
  position: absolute;
  right: var(--space-4);
  bottom: var(--space-4);
  width: 44%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border: 7px solid #fff;
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius);
}
.svc-intro {
  background: var(--bg-surface);
  border-left: 2px solid var(--color-tan);
  padding: var(--space-2) var(--space-3);
  color: var(--text-soft);
  font-size: .98rem;
  margin-bottom: var(--space-3);
}
/* Offerings list inside an expanded service window */
.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: var(--space-2);
}
.svc-tags li {
  font-size: .82rem;
  letter-spacing: .02em;
  color: var(--color-stone);
  background: var(--bg-surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .3rem .8rem;
}
@media (max-width: 880px) {
  .svc-hero { grid-template-columns: 1fr; }
  .collage { min-height: 380px; }
}

/* ==========================================================================
   Logo / header / control refinements + Instrument Serif weight fix
   ========================================================================== */

/* Header brand is now the wordmark image (dark normally, beige over the hero) */
.brand__wordmark { height: 28px; width: auto; }
.brand__wordmark--light { display: none; }
body.home .site-header:not(.is-scrolled) .brand__wordmark--dark { display: none; }
body.home .site-header:not(.is-scrolled) .brand__wordmark--light { display: block; }

/* Hero: large logo (iso lockup), no tagline/sub */
.hero__wordmark { margin: 0 0 var(--space-4); }
.hero__wordmark img { width: min(560px, 86vw); }

/* Language switcher: sharp corners + equal height with the Book button */
.lang { border-radius: var(--radius); height: 32px; align-items: stretch; }
.lang__btn { display: inline-flex; align-items: center; }
.header-actions > .btn { height: 32px; padding-top: 0; padding-bottom: 0; }

/* Intro split image ~40% smaller */
.split--intro { grid-template-columns: 0.45fr 1fr; align-items: center; }
@media (max-width: 820px) { .split--intro { grid-template-columns: 1fr; } }

/* Feature icons use the provided graphics (dark coffee, larger) */
.feature__icon { width: auto; height: 105px; }

/* Instrument Serif has a single weight — keep ALL serif text regular (no faux-bold) */
h1, h2, h3, h4,
.brand__name,
.price-item__name, .price-item__price,
.faq__item summary,
.striped-band h2,
.quote-band__mark, .testi-card blockquote,
.stat__num, .step__num, .price-figure,
.svc-intro, .card__title { font-weight: 400; }

/* ==========================================================================
   Boxed menu list (linklist) — per reference model + smaller paired image
   ========================================================================== */
.linklist { display: grid; gap: var(--space-2); border-top: 0; }
.linklist__item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-surface);
  padding: var(--space-2) var(--space-3);
}
.linklist__item:hover {
  background: #fff;
  border-color: var(--color-stone);
  padding-left: var(--space-3);
}
.linklist__item h4 {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-coffee);
  margin: 0;
}
.linklist__item p { margin: 0.3rem 0 0; }
.linklist__chev {
  width: 42px; height: 42px;
  flex: none;
  border: 1px solid var(--color-stone);
  border-radius: 999px;
  padding: 10px;
  color: var(--color-stone);
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.linklist__item:hover .linklist__chev {
  background: var(--color-coffee);
  color: var(--color-beige);
  border-color: var(--color-coffee);
  transform: none;
}

.split--media-sm { grid-template-columns: 1fr 0.45fr; align-items: center; }
@media (max-width: 820px) { .split--media-sm { grid-template-columns: 1fr; } }

/* Buttons: slightly rounded corners (lang switcher stays sharp) */
.btn { border-radius: 6px; }

/* ==========================================================================
   Full-bleed split (image flush to edge + content) — per reference model
   ========================================================================== */
.fullsplit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
.fullsplit__media {
  position: relative;
  min-height: clamp(440px, 62vh, 760px);
  overflow: hidden;
  background: var(--color-silver);
}
.fullsplit__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fullsplit__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: var(--space-7);
  padding-inline: clamp(1.5rem, 5vw, 4.5rem);
}
.fullsplit__body--center { text-align: center; align-items: center; }
.fullsplit__body--center .hero__cta { justify-content: center; }
.fullsplit__script {
  position: absolute;
  left: 50%;
  bottom: 7%;
  transform: translateX(-50%);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--color-beige);
  text-shadow: 0 4px 18px rgba(42, 26, 19, .5);
  white-space: nowrap;
}
@media (max-width: 820px) {
  .fullsplit { grid-template-columns: 1fr; }
  .fullsplit__media { min-height: 52vh; order: -1; }
  .fullsplit--media-last .fullsplit__media { order: 0; }
}

/* ==========================================================================
   Gallery preview — striped CLUB GALLERY model + footer refinements
   ========================================================================== */
.section--stripe {
  background-image: repeating-linear-gradient(90deg,
    #F7F3EA 0, #F7F3EA 15px,
    color-mix(in srgb, var(--color-cadet) 15%, #F7F3EA) 15px,
    color-mix(in srgb, var(--color-cadet) 15%, #F7F3EA) 30px);
}
.section--stripe .thumb { border: 7px solid #fff; box-shadow: var(--shadow-soft); }

.footer-logo { height: 34px; width: auto; }
.footer-illus { width: 180px; }
.footer-grid .footer-col:last-child { text-align: right; }

/* Language switcher: rounded corners to match the buttons */
.lang { border-radius: 6px; }

/* Gallery preview: remove white frame + hover zoom (keep stripes as-is) */
.section--stripe .thumb { border: 0; box-shadow: none; background: transparent; }
.thumb:hover img { transform: none; }

/* Intro full-bleed split: ~30% smaller image */
.fullsplit--compact { align-items: center; }
.fullsplit--compact .fullsplit__media { min-height: clamp(320px, 44vh, 500px); }

/* ==========================================================================
   Narrower overall page; contained full-bleed splits; clearer footer text
   ========================================================================== */
:root { --maxw: 1100px; }
.fullsplit { max-width: 1280px; margin-inline: auto; }
.site-footer .muted { color: color-mix(in srgb, var(--color-beige) 68%, transparent); }
.footer-col a { color: color-mix(in srgb, var(--color-beige) 88%, transparent); }

/* Intro full-bleed split: full width + image fills the whole area (no gaps) */
.fullsplit { max-width: none; margin-inline: 0; }
.fullsplit--compact { align-items: stretch; }

/* Gallery: landscape (1600x1200, 4:3) thumbs + shorter area */
.section--stripe { padding-block: var(--space-5); }
.section--stripe .thumb { aspect-ratio: 3 / 4; }

/* Header controls: never wrap or shrink (fixes BOOK NOW wrapping / lang clipping) */
.btn { white-space: nowrap; }
.header-actions { flex: none; }
.header-actions > * { flex: none; }
.lang { flex: none; }
.lang__btn { white-space: nowrap; }

/* Intro image: anchor to the top so the top edge stays visible */
.fullsplit--compact .fullsplit__media img { object-position: center top; }

/* Intro image: 20% darker */
.fullsplit--compact .fullsplit__media img { filter: brightness(0.8); }

/* Scale the whole layout to ~80% so the default view matches an 80% zoom */
body { zoom: 0.8; }

/* Testimonials: photo background (3.jpg) with cream heading */
.section.testi {
  position: relative;
  background-image: linear-gradient(rgba(42,26,19,.50), rgba(42,26,19,.50)), url("../img/testi-bg.webp");
  background-size: cover;
  background-position: center;
}
.section.testi .section-head h2 { color: var(--color-beige); }
.section.testi .testi-arrow { box-shadow: 0 6px 20px -10px rgba(0,0,0,.5); }

/* Footer: spread the columns across a wider area */
.site-footer .container { max-width: 1600px; }

/* Header: full-width bar — logo at the far left, lang + book at the far right */
.site-header .container { max-width: none; padding-inline: clamp(1.5rem, 4vw, 3rem); }

/* Testimonials carousel: simple side arrows (cream) + full cards (no partial) */
.testi-wrap { position: relative; padding-inline: 56px; }
.testi-viewport { margin-inline: 0; padding-inline: 0; }
.testi-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 3; width: 44px; height: 44px;
  background: transparent; border: 0; border-radius: 0;
  color: var(--color-beige); cursor: pointer;
  display: grid; place-items: center; box-shadow: none;
  transition: opacity .3s var(--ease), color .3s var(--ease);
}
.testi-arrow svg { width: 36px; height: 36px; }
.testi-arrow--prev { left: 0; }
.testi-arrow--next { right: 0; }
.testi-arrow:hover { color: #fff; background: transparent; border-color: transparent; }
.testi-arrow:disabled { opacity: .3; cursor: default; }
.testi-arrow:disabled:hover { background: transparent; color: var(--color-beige); }
@media (max-width: 620px) { .testi-wrap { padding-inline: 36px; } .testi-arrow { width: 32px; height: 32px; } .testi-arrow svg { width: 26px; height: 26px; } }

/* Ensure exactly 3 full testimonial cards fit (no cut) */
.testi-viewport { margin-inline: 0 !important; padding-inline: 0 !important; }
.testi-card { flex: 0 0 calc(33.333% - 1.2rem) !important; }
@media (max-width: 900px) { .testi-card { flex-basis: calc(50% - 1rem) !important; } }
@media (max-width: 620px) { .testi-card { flex-basis: 100% !important; } }

/* Fix: <figure> default UA margin made the 3rd card overflow */
.testi-card { margin: 0 !important; }

/* Single testimonial: no carousel, one centered card */
.testi-wrap--single { padding-inline: 0; }
.testi-wrap--single .testi-track { justify-content: center; }
.testi-wrap--single .testi-card {
  flex: 0 0 auto !important;
  max-width: 680px;
  text-align: center;
  align-items: center;
}
@media (max-width: 620px) { .testi-wrap--single .testi-card { flex-basis: 100% !important; max-width: 100%; } }

/* Footer is now 2 columns (logo+tagline+illustration | explore) */
.footer-grid { grid-template-columns: 1.4fr 1fr; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Category bar (golf model): row of bordered boxes between hero and intro
   ========================================================================== */
.catbar-section {
  padding-block: var(--space-2);
}
.cat-bar { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
.cat-box {
  display: flex; align-items: center; justify-content: center; text-align: center;
  min-height: 0; padding: .5rem .75rem;
  border: 1px solid color-mix(in srgb, var(--color-coffee) 55%, var(--color-stone));
  font-family: var(--font-sans);
  text-transform: uppercase;
  font-variant: normal;
  letter-spacing: var(--tracking-wide);
  font-size: 1.05rem;
  color: var(--color-stone);
  transition: color .3s var(--ease);
}
.cat-box:hover { color: var(--color-coffee); }
@media (max-width: 760px) { .cat-bar { grid-template-columns: repeat(2, 1fr); } }

/* Keep everything firmly in place — disable scroll-reveal entrance animation */
.reveal, .reveal.is-visible { opacity: 1 !important; transform: none !important; }

/* Category bar: slim cells, each its own box with thin dark-brown borders */
.cat-box {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: .82rem;
  letter-spacing: var(--tracking-wide);
  color: var(--color-stone);
}

/* ==========================================================================
   Service cards (services page): product-grid row — image, small heading, text
   ========================================================================== */
.svc-cards-section {
  padding-block: var(--space-6);
  background: var(--color-coffee);
}
.svc-cards-section .section-head h2,
.svc-cards-section .section-head p { color: color-mix(in srgb, var(--color-beige) 80%, transparent); }
.svc-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.svc-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: inherit;
}
.svc-card__icon {
  display: flex; align-items: center; justify-content: center;
  width: clamp(120px, 14vw, 168px);
  aspect-ratio: 1 / 1;
  transition: transform .4s var(--ease);
}
.svc-card__icon img,
.svc-card__icon svg {
  width: 78%; height: 78%;
  object-fit: contain;
  display: block;
  opacity: .8;
}
.svc-card:hover .svc-card__icon { transform: translateY(-4px); }
.svc-card__title {
  margin: 1.4rem 0 0;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.9rem;
  line-height: 1.1;
  color: color-mix(in srgb, var(--color-beige) 80%, transparent);
}
.svc-card__text {
  margin: .5rem 0 0;
  font-size: .9rem;
  color: color-mix(in srgb, var(--color-beige) 80%, transparent);
}
@media (max-width: 860px) { .svc-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .svc-cards { grid-template-columns: 1fr; } }

/* ==========================================================================
   Serif display font: bold everywhere (Instrument Serif synthesises bold)
   ========================================================================== */
h1, h2, h3, h4, h5, h6,
.brand__name, .hero__tagline, .marquee__item,
.price-item__name, .price-item__price, .card__title,
.price-highlight .price-figure, .quote-band__mark,
.testi-card blockquote, .faq__item summary, .step__num,
.stat__num, .striped-band .band-sub, .fullsplit__script,
.svc-card__title, [style*="--font-serif"] {
  font-weight: 700 !important;
  font-synthesis: weight;
}

/* ==========================================================================
   Booking: "Two ways to book" — two centred columns with circle icons
   ========================================================================== */
.ways {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  max-width: 880px;
  margin-inline: auto;
}
.way {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.way__icon {
  display: flex; align-items: center; justify-content: center;
  width: clamp(140px, 16vw, 190px);
  aspect-ratio: 1 / 1;
  margin-bottom: var(--space-3);
}
.way__icon img { width: 78%; height: 78%; object-fit: contain; display: block; }
.way__title { margin: 0 0 .6rem; }
.way__text { max-width: 34ch; color: var(--text-soft); margin-bottom: var(--space-3); }
.way .btn { margin-top: auto; }
@media (max-width: 680px) { .ways { grid-template-columns: 1fr; } }

/* ==========================================================================
   Notes grid (pricing "Good to know") — bordered columns, "Values" model
   ========================================================================== */
.notes-grid { border: 1px solid var(--line); background: var(--bg-surface); }
.notes-grid__title {
  margin: 0;
  padding: var(--space-3) var(--space-4);
  border-bottom: 1px solid var(--line);
  font-size: 1.5rem;
}
.notes-grid__row { display: grid; grid-template-columns: repeat(4, 1fr); }
.note-col { padding: var(--space-4); border-left: 1px solid var(--line); }
.note-col:first-child { border-left: 0; }
.note-col h4 {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: var(--tracking-label);
  font-size: 0.72rem;
  color: var(--color-stone);
  margin: 0 0 1rem;
}
.note-col p { margin: 0; font-size: 0.92rem; color: var(--text-soft); }
@media (max-width: 760px) {
  .notes-grid__row { grid-template-columns: 1fr 1fr; }
  .note-col:nth-child(odd) { border-left: 0; }
  .note-col:nth-child(n+3) { border-top: 1px solid var(--line); }
}
@media (max-width: 460px) {
  .notes-grid__row { grid-template-columns: 1fr; }
  .note-col { border-left: 0; border-top: 1px solid var(--line); }
  .note-col:first-child { border-top: 0; }
}

/* Thin full-width image banner (page top) */
.page-banner { width: 100%; height: clamp(220px, 32vh, 400px); overflow: hidden; }
.page-banner img { width: 100%; height: 100%; object-fit: cover; display: block; }
.page-hero--tight { padding-top: var(--space-5); }

/* ==========================================================================
   Contact split — details (left) + map window (right)
   ========================================================================== */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  max-width: var(--maxw);
  margin-inline: auto;
  padding: var(--space-6) var(--space-4);
}
.contact-split__body { padding: 0; }
.contact-split__body .crumbs {
  font-size: 0.72rem; letter-spacing: var(--tracking-wide);
  text-transform: uppercase; color: var(--text-soft); margin-bottom: var(--space-2);
}
.contact-split__body h1 { margin-bottom: var(--space-2); }
.contact-split__sub { color: var(--text-soft); max-width: 46ch; margin-bottom: var(--space-5); }
.contact-split .info-list { display: grid; gap: var(--space-3); margin-bottom: var(--space-4); }
.contact-floral { width: 110px; height: auto; margin-top: var(--space-5); opacity: .8; }
.contact-split__media {
  position: relative;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: var(--color-silver);
  box-shadow: var(--shadow-soft);
}
.contact-split__media iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }
@media (max-width: 860px) {
  .contact-split { grid-template-columns: 1fr; }
  .contact-split__media { aspect-ratio: 4 / 3; }
}

/* ==========================================================================
   Gallery chooser (intermediate page) — Manicure / Pedicure tiles
   ========================================================================== */
.gallery-choose {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 3vw, 2.5rem);
  max-width: 900px;
  margin-inline: auto;
}
.choose-card { position: relative; display: block; text-decoration: none; color: inherit; }
.choose-card__media {
  display: block; aspect-ratio: 1 / 1; overflow: hidden;
  border-radius: 12px; background: var(--color-silver);
}
.choose-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s var(--ease); }
.choose-card:hover .choose-card__media img { transform: scale(1.06); }
.choose-card__label {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: .02em;
  color: var(--color-beige);
  text-shadow: 0 2px 18px rgba(42, 26, 19, .5);
  pointer-events: none;
}
/* A lone third card centers under the first two */
.gallery-choose .choose-card:nth-child(3):last-child { grid-column: 1 / -1; width: min(100%, 430px); margin-inline: auto; }
@media (max-width: 560px) { .gallery-choose { grid-template-columns: 1fr; } }

/* ==========================================================================
   About values — quality / durability / wellbeing (3 columns)
   ========================================================================== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  max-width: 1000px;
  margin-inline: auto;
}
.value { text-align: center; }
.value__icon { width: 48px; height: 48px; object-fit: contain; margin: 0 auto var(--space-3); }
.value__title {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: var(--tracking-label);
  font-size: 0.82rem;
  color: var(--color-coffee);
  margin: 0 0 var(--space-2);
}
.value__text { color: var(--text-soft); font-size: 0.95rem; margin: 0; max-width: 34ch; margin-inline: auto; }
@media (max-width: 720px) { .values-grid { grid-template-columns: 1fr; } }

/* Pricing: decorative down-arrow in the empty left area */
.price-section { position: relative; }
.price-arrow {
  position: absolute;
  left: clamp(0.5rem, 5vw, 5rem);
  top: auto;
  bottom: 2%;
  width: auto;
  height: clamp(260px, 42vh, 470px);
  opacity: .9;
  pointer-events: none;
}
@media (max-width: 1100px) { .price-arrow { display: none; } }


/* Contact: decorative graphic above the map window */
.contact-split__aside { display: flex; flex-direction: column; gap: var(--space-5); }
.contact-deco { width: clamp(130px, 18vw, 240px); height: auto; opacity: .9; }

/* Quote band: bold */
.quote-band__mark { font-weight: 700 !important; }

/* Russian: remove the (faux) bold from serif headings — Cyrillic reads better unbolded */
html[lang="ru"] h1, html[lang="ru"] h2, html[lang="ru"] h3,
html[lang="ru"] h4, html[lang="ru"] h5, html[lang="ru"] h6,
html[lang="ru"] .brand__name, html[lang="ru"] .svc-card__title,
html[lang="ru"] .price-item__name, html[lang="ru"] .price-item__price,
html[lang="ru"] .card__title, html[lang="ru"] .stat__num,
html[lang="ru"] .quote-band__mark, html[lang="ru"] .testi-card blockquote,
html[lang="ru"] .faq__item summary, html[lang="ru"] .striped-band .band-sub,
html[lang="ru"] .fullsplit__script {
  font-weight: 400 !important;
}
