/* =========================================================
   VELORO — Editorial Mediterranean Luxury
   Stylesheet · vanilla CSS · single source of truth
   ========================================================= */

/* ---------- 1. Tokens --------------------------------- */
:root {
  /* Palette — drawn from the product photography */
  --stone:        #E8DCC4;   /* warm beige stone (default page bg) */
  --stone-light:  #F2EBD8;   /* soft cream */
  --stone-deep:   #D6C7AA;   /* deeper sand */
  --cream:        #FAF5EA;   /* off-white */
  --coffee:       #2A1810;   /* deep coffee brown */
  --coffee-soft:  #4A3424;   /* softer coffee */
  --olive:        #4F4A33;   /* antique olive glass */
  --copper:       #A47551;   /* warm copper accent */
  --ink:          #1B120A;   /* warm near-black */
  --ink-soft:     #5A4A3C;   /* warm body text */
  --hairline:     color-mix(in srgb, var(--ink) 14%, transparent);
  --hairline-soft:color-mix(in srgb, var(--ink) 8%, transparent);

  /* Typography */
  --serif:    "Fraunces", "Cormorant Garamond", "Times New Roman", serif;
  --serif-gr: "Cormorant Garamond", "GFS Didot", "Noto Serif Display", "Noto Serif", Georgia, serif;
  --sans:     "DM Sans", -apple-system, BlinkMacSystemFont, "Helvetica Neue", system-ui, sans-serif;
  --mono:     "DM Sans", monospace;

  /* Scale */
  --fs-display-xl: clamp(2.75rem, 9vw, 8.5rem);
  --fs-display-l:  clamp(2.25rem, 6.4vw, 5.5rem);
  --fs-display-m:  clamp(2.25rem, 4.4vw, 4rem);
  --fs-display-s:  clamp(1.75rem, 3vw, 2.75rem);
  --fs-body-l:     clamp(1.05rem, 1.2vw, 1.25rem);
  --fs-body:       1rem;
  --fs-small:      0.875rem;
  --fs-eyebrow:    0.6875rem; /* 11px */
  --fs-num:        0.75rem;

  /* Layout
     gutter: 20px (mobile) → 32px (tablet) → 48–72px (desktop)  */
  --gutter: clamp(1.25rem, 4.5vw, 4.5rem);
  --max-w:  1400px;
  --rhythm: clamp(4.5rem, 12vw, 10rem);
  --hairline-w: 1px;
  --banner-h: 30px;
  --header-h: 68px;

  /* Motion */
  --ease: cubic-bezier(0.2, 0.6, 0.2, 1);
  --dur:  900ms;
}

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

html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body, h1, h2, h3, h4, h5, h6, p, ul, ol, figure, blockquote, dl, dd { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img, picture, video { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font: inherit; color: inherit; background: none; border: 0; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }

/* ---------- 3. Base ----------------------------------- */
html, body { background: var(--stone); }

body {
  position: relative;
  min-height: 100vh;
  color: var(--ink);
  font-family: var(--sans);
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Subtle film-grain noise overlay — fixed to viewport */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: multiply;
  opacity: 0.06;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.16 0 0 0 0 0.10 0 0 0 0 0.06 0 0 0 0.85 0'/></filter><rect width='220' height='220' filter='url(%23n)'/></svg>");
  background-size: 220px 220px;
}

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

/* ---------- 4. Typography ----------------------------- */
.serif {
  font-family: var(--serif);
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 0;
  letter-spacing: -0.022em;
  line-height: 0.96;
}

.serif--italic {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.section-no {
  font-family: var(--sans);
  font-size: var(--fs-num);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.lead {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 1.8vw, 1.625rem);
  line-height: 1.45;
  letter-spacing: -0.012em;
  color: var(--ink);
  font-variation-settings: "opsz" 24, "SOFT" 100;
}

.body {
  font-size: var(--fs-body-l);
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 56ch;
}

[data-lang="gr"] .serif {
  letter-spacing: -0.018em;
}

/* ------- Greek typography ------- */
/* Cormorant Garamond renders Greek glyphs cleanly at display sizes,
   where Fraunces' opsz 144 looks heavy. Applied to every editorial heading. */
:lang(el) .brand-story__title,
:lang(el) .quality__title,
:lang(el) .future__title,
:lang(el) .contact__title,
:lang(el) .process__title,
:lang(el) .pdp__title,
:lang(el) .pdp__split-title,
:lang(el) .product-card__title,
:lang(el) .pdp__specs-title {
  font-family: var(--serif-gr);
  font-weight: 700;
  letter-spacing: -0.018em;
  font-variation-settings: normal;
}

:lang(el) .lead,
:lang(el) .brand-story__sig,
:lang(el) .pdp__detail-caption {
  font-family: var(--serif-gr);
  font-variation-settings: normal;
}

/* ---------- 5. Layout primitives ---------------------- */
.shell {
  width: min(100% - calc(var(--gutter) * 2), var(--max-w));
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: var(--rhythm);
  z-index: 2;
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.25rem;
  margin-bottom: clamp(2rem, 5vw, 4.5rem);
}

.section-header__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section-header__rule {
  flex: 0 0 3rem;
  height: 1px;
  background: var(--ink);
  opacity: 0.45;
}

.divider {
  width: 100%;
  height: 1px;
  background: var(--hairline);
}

/* ---------- 6. Header / nav --------------------------- */
.header {
  position: fixed;
  top: var(--banner-h); left: 0; right: 0;
  z-index: 50;
  min-height: var(--header-h);
  padding: 1rem 0;
  transition: background var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              backdrop-filter var(--dur) var(--ease);
  border-bottom: 1px solid transparent;
}

.header.is-scrolled {
  background: color-mix(in srgb, var(--stone) 88%, transparent);
  backdrop-filter: blur(12px) saturate(1.05);
  border-bottom-color: var(--hairline-soft);
}

.header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
}

.brandmark {
  font-family: var(--serif);
  font-size: 1.375rem;
  letter-spacing: 0.32em;
  font-weight: 400;
  font-variation-settings: "opsz" 24, "SOFT" 0;
  color: var(--ink);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
}

.brandmark__dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--coffee);
  display: inline-block;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.25rem, 3vw, 2.5rem);
}

.nav__link {
  position: relative;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--ink);
  padding: 0.25rem 0;
}
.nav__link::after {
  content: "";
  position: absolute; left: 0; right: 100%; bottom: -2px;
  height: 1px; background: var(--coffee);
  transition: right 600ms var(--ease);
}
.nav__link:hover::after { right: 0; }

.header__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Language switcher */
.lang {
  display: inline-flex;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  padding: 2px;
  background: color-mix(in srgb, var(--cream) 70%, transparent);
}
.lang__btn {
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  color: var(--ink-soft);
  transition: color 240ms var(--ease), background 240ms var(--ease);
}
.lang__btn[aria-pressed="true"] {
  background: var(--ink);
  color: var(--cream);
}

.cta-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.1rem;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  transition: background 360ms var(--ease), color 360ms var(--ease);
}
.cta-pill:hover { background: var(--ink); color: var(--cream); }
.cta-pill--filled { background: var(--ink); color: var(--cream); }
.cta-pill--filled:hover { background: var(--coffee); border-color: var(--coffee); }

.cta-pill .arrow { display: inline-block; transition: transform 480ms var(--ease); }
.cta-pill:hover .arrow { transform: translateX(4px); }

.menu-toggle { display: none; }

/* Mobile drawer is hidden at desktop widths — only shown ≤880px */
.mobile-nav { display: none; }

/* Banner — premium minimal announcement strip.
   Fixed at the very top on desktop; switches to in-flow on mobile (≤900px). */
.banner {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  height: var(--banner-h);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  text-align: center;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 0 1rem;
  background: var(--coffee);
  color: var(--cream);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;

  /* Luxury fade-in: opacity 0 → 0.7, 200ms delay, 800ms ease-out, holds at 0.7. */
  opacity: 0;
  animation: fadeInAnnouncement 0.8s ease-out 0.2s forwards;
}

.banner__bullet {
  display: inline-block;
  font-size: 1.1em;
  line-height: 1;
  vertical-align: middle;
}

@keyframes fadeInAnnouncement {
  from { opacity: 0; }
  to   { opacity: 0.7; }
}

/* ---------- 7. Hero ----------------------------------- */
.hero {
  position: relative;
  padding-top: calc(var(--banner-h) + var(--header-h) + clamp(2.5rem, 7vw, 5rem));
  padding-bottom: clamp(3rem, 6vw, 6rem);
  overflow: hidden;
}

.hero__grid {
  display: grid;
  /* left = flexible (can shrink to 0); right = image, never below 420px */
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.85fr);
  grid-template-rows: 1fr auto;
  grid-template-areas:
    "content visual"
    "meta    visual";
  column-gap: clamp(48px, 6vw, 120px);
  row-gap: clamp(2rem, 4vw, 3rem);
  align-items: start;
}

.hero__content { grid-area: content; align-self: center; min-width: 0; }
.hero__visual  { grid-area: visual;  align-self: center; }
.hero__meta    { grid-area: meta;    align-self: end; min-width: 0; }

.hero__eyebrow {
  margin-bottom: 1.75rem;
}

.hero__headline {
  font-family: var(--serif);
  font-size: clamp(52px, 7.5vw, 120px);   /* EN — fluid 52 → 120 */
  letter-spacing: -0.024em;
  line-height: 0.92;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 100;
  max-width: 820px;
  text-wrap: balance;
}
:lang(el) .hero__headline {
  font-family: var(--serif-gr);
  font-size: clamp(44px, 6.5vw, 100px);   /* GR — fluid 44 → 100 */
  font-weight: 700;
  letter-spacing: -0.018em;
  line-height: 0.95;
  font-variation-settings: normal;
  max-width: 760px;
}

/* Multi-line headline lines — generic .line, used by both static markup and JS-rendered. */
.hero__headline .line { display: block; }
.hero__headline .line:nth-child(2) {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  color: var(--coffee);
}
:lang(el) .hero__headline .line:nth-child(2) {
  font-style: normal;        /* Cormorant italic Greek reads worse than upright */
  font-variation-settings: normal;
  color: var(--coffee);
}

.hero__sub {
  margin-top: 2rem;
  font-size: var(--fs-body-l);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 42ch;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.hero__meta {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--hairline);
  max-width: 28rem;
}
.hero__meta-key {
  display: block;
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.4rem;
}
.hero__meta-val {
  font-family: var(--serif);
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}

.hero__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  overflow: hidden;
  background:
    radial-gradient(120% 80% at 50% 30%,
      color-mix(in srgb, var(--stone-light) 60%, transparent) 0%,
      transparent 70%),
    var(--stone-deep);
  width: 100%;
  max-width: 560px;
  margin-inline: auto;
}
.hero__visual img {
  width: 100%; height: 100%;
  object-fit: contain;       /* bottle never crops */
  object-position: center;
  transition: transform 1600ms var(--ease);
}
.hero__visual:hover img { transform: scale(1.015); }

.hero__visual-tag {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: 0.55rem 0.9rem;
  background: color-mix(in srgb, var(--cream) 88%, transparent);
  backdrop-filter: blur(8px);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  border-radius: 999px;
}
.hero__visual-tag::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--copper);
}

.hero__scroll {
  position: absolute;
  left: var(--gutter);
  bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.hero__scroll-line {
  display: inline-block;
  width: 36px; height: 1px;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--copper);
  animation: scroll-line 2.6s var(--ease) infinite;
}
@keyframes scroll-line {
  0% { left: -100%; } 60% { left: 100%; } 100% { left: 100%; }
}

/* Marquee */
.marquee {
  position: relative;
  border-block: 1px solid var(--hairline-soft);
  padding: 1.1rem 0;
  overflow: hidden;
  background: var(--stone-light);
}
.marquee__track {
  display: flex;
  gap: 3rem;
  animation: marquee 38s linear infinite;
  width: max-content;
}
.marquee__item {
  font-family: var(--serif);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  letter-spacing: 0.02em;
  color: var(--ink);
  font-style: italic;
  font-variation-settings: "opsz" 24, "SOFT" 100, "WONK" 1;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 3rem;
}
.marquee__item::after {
  content: "·"; font-size: 1.4em; color: var(--copper);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- 8. Product highlight ---------------------- */
.product-highlight {
  background: var(--stone-light);
}

.product-highlight__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}

.product-highlight__visual {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: end;
}
.product-highlight__visual figure { margin: 0; }
.product-highlight__visual figure:first-child {
  aspect-ratio: 4 / 5.4;
  overflow: hidden;
  background: var(--stone-deep);
}
.product-highlight__visual figure:last-child {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--stone-deep);
  margin-bottom: 4rem;
}
.product-highlight__visual img {
  width: 100%; height: 100%; object-fit: cover;
}

.product-card {
  border-top: 1px solid var(--ink);
  padding-top: 2rem;
}

.product-card__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.product-card__title {
  font-family: var(--serif);
  font-size: var(--fs-display-s);
  letter-spacing: -0.018em;
  line-height: 1.05;
  font-variation-settings: "opsz" 96, "SOFT" 100;
}

.product-card__price {
  font-family: var(--serif);
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  color: var(--coffee);
}

.product-card__intro {
  margin-top: 1rem;
  color: var(--ink-soft);
  max-width: 42ch;
}

.product-card__bullets {
  margin-top: 2rem;
  display: grid;
  gap: 0.5rem;
}
.product-card__bullets li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: baseline;
  padding-block: 0.6rem;
  border-bottom: 1px solid var(--hairline-soft);
  font-size: 0.95rem;
}
.product-card__bullets li::before {
  content: "—";
  color: var(--copper);
  font-family: var(--serif);
}

.product-card__channels {
  margin-top: 1.75rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
}

.product-card__cta {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.tag-row {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin-top: 1.5rem;
}
.tag {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.4rem 0.7rem;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  color: var(--ink-soft);
}

/* ---------- 9. Brand story ---------------------------- */
.brand-story {
  background: var(--stone);
}

.brand-story__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}

.brand-story__copy {
  max-width: 36ch;
}
.brand-story__title {
  font-family: var(--serif);
  font-size: var(--fs-display-l);
  letter-spacing: -0.024em;
  line-height: 0.96;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  text-wrap: balance;
}
.brand-story__title .line { display: block; }
.brand-story__title .line:nth-child(2) {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  color: var(--coffee);
}
:lang(el) .brand-story__title .line:nth-child(2) {
  font-style: normal;
  font-variation-settings: normal;
  color: var(--coffee);
}
.brand-story__body {
  margin-top: 2rem;
  font-size: var(--fs-body-l);
  line-height: 1.65;
  color: var(--ink-soft);
}
.brand-story__sig {
  margin-top: 2rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  font-variation-settings: "opsz" 24, "WONK" 1;
  color: var(--coffee);
  letter-spacing: 0.05em;
}

.brand-story__visual {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  position: relative;
  background: var(--stone-deep);
}
.brand-story__visual img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.04);
  transition: transform 2400ms var(--ease);
}
.brand-story__visual:hover img { transform: scale(1.08); }

/* ---------- 10. Process ------------------------------- */
.process { background: var(--stone-light); }

.process__title {
  font-family: var(--serif);
  font-size: var(--fs-display-m);
  letter-spacing: -0.022em;
  line-height: 0.98;
  max-width: 18ch;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--hairline);
  border-block: 1px solid var(--hairline);
  margin-top: 4rem;
}

.process__card {
  background: var(--stone-light);
  padding: clamp(1.75rem, 3vw, 2.75rem);
  display: flex;
  flex-direction: column;
  gap: 2rem;
  min-height: 22rem;
  position: relative;
  transition: background 600ms var(--ease);
}
.process__card:hover { background: var(--cream); }

.process__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(2.5rem, 4vw, 3.75rem);
  color: var(--copper);
  font-variation-settings: "opsz" 144, "WONK" 1, "SOFT" 100;
  line-height: 1;
}

.process__step-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  letter-spacing: -0.012em;
  line-height: 1.1;
  font-variation-settings: "opsz" 96, "SOFT" 100;
}

.process__step-body {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-top: auto;
}

/* ---------- 11. Quality ------------------------------- */
.quality { background: var(--stone); }
.quality__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}
.quality__visual {
  aspect-ratio: 5 / 6;
  overflow: hidden;
  background: var(--coffee);
}
.quality__visual img {
  width: 100%; height: 100%; object-fit: cover;
}
.quality__copy { max-width: 38ch; }
.quality__title {
  font-family: var(--serif);
  font-size: var(--fs-display-m);
  letter-spacing: -0.022em;
  line-height: 0.98;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  text-wrap: balance;
}
.quality__title .line { display: block; }
.quality__title .line:nth-child(2) {
  font-style: italic;
  color: var(--coffee);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
:lang(el) .quality__title .line:nth-child(2) {
  font-style: normal;
  font-variation-settings: normal;
}
.quality__body {
  margin-top: 2rem;
  font-size: var(--fs-body-l);
  line-height: 1.65;
  color: var(--ink-soft);
}

.quality__stats {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--hairline);
}
.quality__stat {
  padding: 1.5rem 0;
  border-right: 1px solid var(--hairline);
}
.quality__stat:last-child { border-right: 0; }
.quality__stat-value {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.6vw, 2.25rem);
  font-variation-settings: "opsz" 96, "SOFT" 100;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.quality__stat-label {
  display: block;
  margin-top: 0.5rem;
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ---------- 12. Pricing ------------------------------- */
.pricing { background: var(--stone-light); }
.pricing__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: end;
  border-top: 1px solid var(--ink);
  padding-top: 3rem;
}
.pricing__price {
  font-family: var(--serif);
  font-size: clamp(4rem, 11vw, 9rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.pricing__price .price__symbol {
  font-style: italic;
  color: var(--coffee);
  font-size: 0.78em;
  margin-right: 0.04em;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.pricing__details { padding-bottom: 1.25rem; }
.pricing__eyebrow { margin-bottom: 1rem; }
.pricing__descriptor {
  font-family: var(--serif);
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}
.pricing__body {
  margin-top: 1.5rem;
  font-size: 1rem;
  color: var(--ink-soft);
  max-width: 36ch;
}
.pricing__cta { margin-top: 1.75rem; }

/* ---------- 13. Future products ----------------------- */
.future { background: var(--stone); }
.future__title {
  font-family: var(--serif);
  font-size: var(--fs-display-l);
  line-height: 0.96;
  letter-spacing: -0.024em;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  max-width: 18ch;
  text-wrap: balance;
}
.future__title .line { display: block; }
.future__title .line:nth-child(2) {
  font-style: italic;
  color: var(--coffee);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
:lang(el) .future__title .line:nth-child(2) {
  font-style: normal;
  font-variation-settings: normal;
}
.future__body {
  margin-top: 2rem;
  font-size: var(--fs-body-l);
  color: var(--ink-soft);
  max-width: 56ch;
  line-height: 1.65;
}

.future__list {
  margin-top: 4rem;
  border-top: 1px solid var(--ink);
}
.future__item {
  display: grid;
  grid-template-columns: 5rem 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: clamp(1.25rem, 2vw, 1.75rem) 0;
  border-bottom: 1px solid var(--hairline);
  transition: padding 480ms var(--ease);
}
.future__item:hover {
  padding-left: 1rem;
}
.future__item-no {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--copper);
  font-variation-settings: "opsz" 24, "WONK" 1;
}
.future__item-name {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  letter-spacing: -0.012em;
  font-variation-settings: "opsz" 96, "SOFT" 100;
}
.future__item--available .future__item-name { color: var(--ink); }
.future__item:not(.future__item--available) .future__item-name {
  color: var(--ink-soft);
}
.future__item-state {
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.future__item--available .future__item-state {
  color: var(--copper);
}

/* ---------- 14. Contact / form ------------------------ */
.contact { background: var(--stone-light); }
.contact__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 6vw, 6rem);
}
.contact__title {
  font-family: var(--serif);
  font-size: var(--fs-display-m);
  letter-spacing: -0.022em;
  line-height: 0.98;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  text-wrap: balance;
}
.contact__title .line { display: block; }
.contact__title .line:nth-child(2) {
  font-style: italic;
  color: var(--coffee);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
:lang(el) .contact__title .line:nth-child(2) {
  font-style: normal;
  font-variation-settings: normal;
}
.contact__body {
  margin-top: 1.75rem;
  font-size: var(--fs-body-l);
  color: var(--ink-soft);
  line-height: 1.65;
}
.contact__direct {
  margin-top: 2.5rem;
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.contact__email {
  display: block;
  margin-top: 0.5rem;
  font-family: var(--serif);
  font-size: 1.4rem;
  letter-spacing: -0.005em;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 0.4rem;
  width: max-content;
  max-width: 100%;
  transition: color 360ms var(--ease);
}
.contact__email:hover { color: var(--coffee); }

.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 1.5rem;
}
.field { position: relative; grid-column: span 1; }
.field--full { grid-column: 1 / -1; }
.field__label {
  display: block;
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.6rem;
}
.field__input,
.field__select,
.field__textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--hairline);
  padding: 0.6rem 0;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  transition: border-color 360ms var(--ease);
}
.field__input:focus,
.field__select:focus,
.field__textarea:focus {
  outline: none;
  border-bottom-color: var(--ink);
}
.field__textarea {
  resize: vertical;
  min-height: 5rem;
}
.field__select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 1.5rem;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' fill='none' stroke='%231B120A' stroke-width='1.2'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0 center;
  background-size: 12px 8px;
}

.form__submit {
  grid-column: 1 / -1;
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.5rem;
  background: var(--ink);
  color: var(--cream);
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  transition: background 360ms var(--ease), color 360ms var(--ease);
  width: 100%;
}
.form__submit:hover { background: var(--coffee); border-color: var(--coffee); }
.form__submit .arrow { transition: transform 360ms var(--ease); }
.form__submit:hover .arrow { transform: translateX(4px); }

.form__status {
  grid-column: 1 / -1;
  font-size: 0.875rem;
  color: var(--coffee);
  min-height: 1.2rem;
}

/* ---------- 15. Footer -------------------------------- */
.footer {
  background: var(--ink);
  color: color-mix(in srgb, var(--cream) 70%, transparent);
  padding-block: clamp(3.5rem, 7vw, 6rem);
  position: relative;
  z-index: 2;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2.5rem;
  align-items: start;
}
.footer__brand {
  font-family: var(--serif);
  font-size: 2.5rem;
  letter-spacing: 0.12em;
  color: var(--cream);
  font-variation-settings: "opsz" 144, "SOFT" 0;
}
.footer__tagline {
  margin-top: 1rem;
  font-family: var(--serif);
  font-style: italic;
  color: color-mix(in srgb, var(--cream) 75%, transparent);
  font-variation-settings: "opsz" 24, "WONK" 1;
  max-width: 28ch;
}
.footer__col h4 {
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.footer__col ul { display: grid; gap: 0.7rem; }
.footer__col a {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--cream) 70%, transparent);
  transition: color 360ms var(--ease);
}
.footer__col a:hover { color: var(--cream); }
.footer__bottom {
  margin-top: clamp(3rem, 5vw, 5rem);
  padding-top: 1.75rem;
  border-top: 1px solid color-mix(in srgb, var(--cream) 14%, transparent);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: color-mix(in srgb, var(--cream) 50%, transparent);
}

/* ---------- 16. Reveal animation ---------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1100ms var(--ease), transform 1100ms var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- 17. Product Detail Page ------------------- */
.pdp-shell {
  padding-top: calc(var(--banner-h) + var(--header-h) + clamp(2.5rem, 7vw, 5rem));
  padding-bottom: 0;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 3rem;
}
.breadcrumb a { color: var(--ink-soft); transition: color 240ms var(--ease); }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb span { color: var(--copper); }

.pdp__hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}

.pdp__visual {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--stone-deep);
  position: relative;
}
.pdp__visual img { width: 100%; height: 100%; object-fit: cover; }

.pdp__info { padding-top: 0.5rem; position: sticky; top: 6rem; }

.pdp__eyebrow { margin-bottom: 1.5rem; }

.pdp__title {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: -0.022em;
  line-height: 0.96;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.pdp__price-row {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--hairline);
}
.pdp__price {
  font-family: var(--serif);
  font-size: 2.75rem;
  letter-spacing: -0.018em;
  color: var(--coffee);
  font-variation-settings: "opsz" 96, "SOFT" 100;
}
.pdp__availability {
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
}

.pdp__description {
  margin-top: 2rem;
  font-size: var(--fs-body-l);
  line-height: 1.65;
  color: var(--ink-soft);
}

.pdp__actions {
  display: flex; gap: 0.75rem; flex-wrap: wrap;
  margin-top: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--hairline);
}

.pdp__specs { margin-top: 2.5rem; }
.pdp__specs-title {
  font-family: var(--serif);
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  font-variation-settings: "opsz" 24, "SOFT" 100;
}
.pdp__specs-list { display: grid; gap: 0; }
.pdp__specs-list li {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--hairline-soft);
  font-size: 0.95rem;
}
.pdp__specs-list li span:first-child {
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  align-self: center;
}
.pdp__specs-list li span:last-child {
  color: var(--ink);
  text-align: right;
}

.pdp__split {
  background: var(--stone-light);
  margin-top: var(--rhythm);
}
.pdp__split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}
.pdp__split-image {
  aspect-ratio: 5 / 6;
  overflow: hidden;
  background: var(--coffee);
}
.pdp__split-image img { width: 100%; height: 100%; object-fit: cover; }
.pdp__split-title {
  font-family: var(--serif);
  font-size: var(--fs-display-s);
  font-variation-settings: "opsz" 144, "SOFT" 100;
  letter-spacing: -0.022em;
  line-height: 1;
  margin-bottom: 1.5rem;
}
.pdp__split-body {
  font-size: var(--fs-body-l);
  line-height: 1.65;
  color: var(--ink-soft);
}

.pdp__detail {
  background: var(--coffee);
  color: var(--cream);
}
.pdp__detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}
.pdp__detail .eyebrow,
.pdp__detail .pdp__split-title { color: var(--cream); }
.pdp__detail .pdp__split-body { color: color-mix(in srgb, var(--cream) 80%, transparent); }
.pdp__detail-caption {
  margin-top: 2rem;
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "opsz" 24, "WONK" 1;
  color: color-mix(in srgb, var(--cream) 70%, transparent);
  font-size: 1rem;
}
.pdp__detail-image {
  aspect-ratio: 5 / 6;
  overflow: hidden;
  background: var(--ink);
}
.pdp__detail-image img { width: 100%; height: 100%; object-fit: cover; }

.pdp__back {
  margin-top: 3rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.pdp__back:hover { color: var(--coffee); }

/* ---------- 18. Responsive ---------------------------- */

/* ----- NARROW DESKTOP (≤1100px) — header CTA breathing ----- */
@media (max-width: 1100px) {
  .header__inner { gap: 1.25rem; }
  .nav { gap: clamp(0.75rem, 1.6vw, 1.25rem); }
  .header .cta-pill {
    padding: 0.55rem 0.85rem;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
  }
}

/* ----- TABLET (≤1024px) — stacking 2-column sections ----- */
@media (max-width: 1024px) {
  :root { --rhythm: clamp(3.5rem, 9vw, 7rem); }

  /* generic 2-col → single col */
  .product-highlight__grid,
  .brand-story__grid,
  .quality__grid,
  .contact__grid,
  .pricing__inner,
  .pdp__hero,
  .pdp__split-grid,
  .pdp__detail-grid {
    grid-template-columns: 1fr;
  }

  /* hero needs to drop its template-areas as well */
  .hero__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas: none;
    row-gap: clamp(2rem, 5vw, 3rem);
  }
  .hero__content,
  .hero__visual,
  .hero__meta {
    grid-area: auto;
    align-self: auto;
  }

  .hero__visual    { max-width: 480px; margin-inline: auto; }
  .quality__visual { max-width: 520px; margin-inline: auto; }
  .pdp__info       { position: static; }
  .brand-story__grid { gap: 2.5rem; }

  .process__grid { grid-template-columns: repeat(2, 1fr); }
  .process__card { min-height: 18rem; }

  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }

  .form { grid-template-columns: 1fr; }
}

/* ----- HAMBURGER THRESHOLD (≤900px) ------------------ */
@media (max-width: 900px) {
  /* Mobile rhythm: banner already 30px globally; bump header to 70px. */
  :root {
    --header-h: 70px;
  }

  /* Banner becomes in-flow above the header instead of fixed at top.
     The header itself sticks; banner scrolls away naturally. */
  .banner {
    position: relative;
  }

  /* Mobile header: sticky, sits flush with viewport top after banner.
     z-index sits above content but below the menu overlay. */
  .header {
    position: sticky;
    top: 0;
    z-index: 1000;
    min-height: var(--header-h);
    padding: 0;
    background: var(--stone);
    border-bottom: 1px solid transparent;
  }
  .header.is-scrolled {
    background: color-mix(in srgb, var(--stone) 92%, transparent);
    backdrop-filter: blur(12px) saturate(1.05);
    border-bottom-color: var(--hairline-soft);
  }

  /* Mobile header has only two children: brandmark (left) and hamburger (right).
     Override .shell width to span full viewport so the paddings on .header__inner
     are the single source of truth for horizontal spacing. */
  .header .shell {
    width: 100%;
    max-width: none;
    padding-inline: 0;
    margin-inline: 0;
  }
  /* Horizontal padding lives on the container (not the logo). Adding the
     safe-area insets prevents notched phones in landscape from clipping
     the wordmark into the rounded display corner / camera cutout. */
  .header__inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
    align-items: center;
    gap: 0;
    min-height: var(--header-h);
    padding-left: calc(24px + env(safe-area-inset-left, 0px));
    padding-right: calc(20px + env(safe-area-inset-right, 0px));
  }

  /* No dot after VELORO on mobile — keep the wordmark clean. */
  .brandmark__dot { display: none; }

  /* Hide horizontal nav, header CTA pill, and the desktop language switcher.
     The lang selector lives ONLY inside the opened menu on mobile.
     !important guards against any later rule re-revealing it. */
  .nav { display: none !important; }
  .header__actions > .cta-pill { display: none !important; }
  .header__actions > .lang { display: none !important; }

  /* Hero and PDP no longer need to offset for fixed banner+header
     because both are in normal flow (banner static, header sticky). */
  .hero,
  .pdp-shell {
    padding-top: clamp(2.5rem, 7vw, 5rem);
  }

  /* Header-actions only contains the hamburger now */
  .header__actions { gap: 0; }

  .menu-toggle {
    display: inline-flex;
    align-items: center; justify-content: center;
    width: 48px; height: 48px;
    border: 1px solid var(--hairline);
    border-radius: 999px;
    background: color-mix(in srgb, var(--cream) 70%, transparent);
    transition: background 240ms var(--ease);
  }
  .menu-toggle:hover { background: var(--cream); }

  .menu-toggle__bars,
  .menu-toggle__bars::before,
  .menu-toggle__bars::after {
    content: ""; display: block;
    width: 16px; height: 1px; background: var(--ink);
    transition: transform 360ms var(--ease), background 240ms var(--ease);
  }
  .menu-toggle__bars { position: relative; }
  .menu-toggle__bars::before { position: absolute; top: -5px; left: 0; }
  .menu-toggle__bars::after  { position: absolute; top: 5px; left: 0; }
  .menu-toggle[aria-expanded="true"] .menu-toggle__bars { background: transparent; }
  .menu-toggle[aria-expanded="true"] .menu-toggle__bars::before { transform: translateY(5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] .menu-toggle__bars::after  { transform: translateY(-5px) rotate(-45deg); }

  /* ===== MOBILE MENU OVERLAY ============================
     Full-screen premium dialog. Covers banner+header.
     Has its own close (X) at top-right. */
  .mobile-nav {
    display: flex;
    position: fixed;
    inset: 0;
    z-index: 1100;
    background: var(--stone);
    padding-top: calc(env(safe-area-inset-top) + clamp(5rem, 16vw, 7rem));
    padding-bottom: calc(32px + env(safe-area-inset-bottom));
    padding-inline: clamp(1.25rem, 6vw, 1.75rem);
    flex-direction: column;
    gap: clamp(1.5rem, 4vw, 2.25rem);
    overflow-y: auto;
    overscroll-behavior: contain;

    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 480ms var(--ease),
                transform 480ms var(--ease),
                visibility 0s linear 480ms;
  }
  .mobile-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 480ms var(--ease),
                transform 480ms var(--ease),
                visibility 0s linear 0s;
  }

  /* Subtle film-grain reuse — already on body, but the overlay sits above it.
     Add a faint texture on the overlay itself so the menu doesn't feel flat. */
  .mobile-nav::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.08;
    mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.16 0 0 0 0 0.10 0 0 0 0 0.06 0 0 0 0.85 0'/></filter><rect width='180' height='180' filter='url(%23n)'/></svg>");
  }

  /* Close (X) button — mirrors hamburger position */
  .mobile-nav__close {
    position: absolute;
    top: calc(env(safe-area-inset-top) + 1.25rem);
    right: calc(20px + env(safe-area-inset-right, 0px));
    width: 48px; height: 48px;
    border: 1px solid var(--hairline);
    border-radius: 999px;
    background: color-mix(in srgb, var(--cream) 70%, transparent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    transition: background 240ms var(--ease), border-color 240ms var(--ease);
  }
  .mobile-nav__close:hover { background: var(--cream); border-color: var(--ink); }
  .mobile-nav__close-bars { position: relative; width: 16px; height: 16px; display: block; }
  .mobile-nav__close-bars::before,
  .mobile-nav__close-bars::after {
    content: "";
    position: absolute;
    top: 50%; left: 0;
    width: 16px; height: 1px;
    background: var(--ink);
    transform-origin: center;
  }
  .mobile-nav__close-bars::before { transform: rotate(45deg); }
  .mobile-nav__close-bars::after  { transform: rotate(-45deg); }

  /* Top label */
  .mobile-nav__label {
    display: inline-block;
    font-family: var(--sans);
    font-size: 0.7rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--ink-soft);
  }

  /* Nav list */
  .mobile-nav__nav { margin-top: 0.5rem; }
  .mobile-nav__list {
    display: grid;
    gap: 0;
  }
  .mobile-nav__list li {
    border-bottom: 1px solid var(--hairline);
  }
  .mobile-nav__list li:first-child { border-top: 1px solid var(--hairline); }
  .mobile-nav__list a {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    padding: clamp(0.65rem, 2vw, 0.9rem) 0;
    font-family: var(--serif-gr);
    font-size: clamp(34px, 9vw, 50px);
    line-height: 1.05;
    font-weight: 500;
    letter-spacing: 0;
    color: var(--ink);
    transition: color 240ms var(--ease), padding-left 360ms var(--ease);
  }
  .mobile-nav__list a::after {
    content: "→";
    font-family: var(--sans);
    font-size: 0.85rem;
    letter-spacing: 0;
    color: var(--ink-soft);
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 240ms var(--ease), transform 240ms var(--ease);
  }
  .mobile-nav__list a:hover,
  .mobile-nav__list a:focus-visible {
    color: var(--coffee);
  }
  .mobile-nav__list a:hover::after,
  .mobile-nav__list a:focus-visible::after {
    opacity: 1;
    transform: translateX(0);
  }

  /* Premium pill CTA — full width, 56px high, dark */
  .mobile-nav__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 56px;
    background: var(--ink);
    color: var(--cream);
    border: 1px solid var(--ink);
    border-radius: 999px;
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 0.5rem;
    transition: background 360ms var(--ease), color 360ms var(--ease);
  }
  .mobile-nav__cta:hover { background: var(--coffee); border-color: var(--coffee); }

  /* In-menu language selector — sits below CTA, above the Athens block.
     Compact, label-on-left, EN/GR pill on the right. */
  .mobile-nav__lang {
    margin-top: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--hairline);
  }
  .mobile-nav__lang-label {
    font-family: var(--sans);
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-soft);
  }
  .lang--in-menu {
    background: color-mix(in srgb, var(--cream) 80%, transparent);
  }
  .lang--in-menu .lang__btn {
    padding: 0.55rem 1rem;
    font-size: 0.78rem;
    letter-spacing: 0.22em;
  }

  /* Footer block — pushed to bottom */
  .mobile-nav__foot {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid var(--hairline);
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }
  .mobile-nav__city {
    font-family: var(--sans);
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-soft);
  }
  .mobile-nav__coords {
    font-family: var(--serif);
    font-style: italic;
    font-variation-settings: "opsz" 24, "SOFT" 100, "WONK" 1;
    font-size: 0.95rem;
    color: var(--coffee);
    letter-spacing: 0.02em;
  }
}

/* ----- PHONE (≤720px) — single-column tighten -------- */
@media (max-width: 720px) {
  :root { --gutter: 1.5rem; }   /* 24px — premium mobile breathing */

  /* Stack hero CTAs vertically with full width */
  .hero__ctas {
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
    width: 100%;
  }
  .hero__ctas .cta-pill {
    justify-content: center;
    width: 100%;
  }

  .hero__meta { grid-template-columns: 1fr 1fr; gap: 1rem 1.5rem; }

  .product-highlight__visual { grid-template-columns: 1fr; }
  .product-highlight__visual figure:last-child { margin-bottom: 0; }
  .product-card__row { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .product-card__cta { flex-direction: column; align-items: stretch; }
  .product-card__cta .cta-pill { justify-content: center; width: 100%; }

  .process__grid { grid-template-columns: 1fr; }
  .process__card { min-height: auto; }

  .quality__stats { grid-template-columns: 1fr; }
  .quality__stat { border-right: 0; border-bottom: 1px solid var(--hairline); }
  .quality__stat:last-child { border-bottom: 0; }

  .future__item {
    grid-template-columns: 2.5rem 1fr;
    grid-template-rows: auto auto;
    column-gap: 1rem;
  }
  .future__item-state {
    grid-column: 2;
    margin-top: 0.25rem;
  }

  .footer__grid { grid-template-columns: 1fr; }
  .footer__brand { font-size: 2rem; }

  .pricing__price { font-size: clamp(3rem, 14vw, 5rem); }

  .pdp__price-row  { flex-direction: column; align-items: flex-start; }
  .pdp__actions    { flex-direction: column; align-items: stretch; }
  .pdp__actions .cta-pill { justify-content: center; width: 100%; }

  /* Footer bottom row stacks */
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
}

@media (hover: none) {
  .nav__link::after { display: none; }
  .future__item:hover { padding-left: 0; }
}
