/* DIORA's — Brand theme (AaGebuk-style · Atelier Wine Red) */

:root {
  --wine: #A01828;
  --wine-deep: #7A0F1E;
  --wine-bright: #C4223A;
  --wine-muted: rgba(160, 24, 40, 0.1);
  --ivory: #F0E8DF;
  --ivory-warm: #E5D9CE;
  --ivory-light: #FAF6F2;
  --cream: #FFFCFA;
  --red-tint: #FDF3F2;
  --ink: #1C0A0D;
  --ink-soft: #6B4A50;
  --line: 1px solid rgba(160, 24, 40, 0.35);
  --line-faint: 1px solid rgba(160, 24, 40, 0.14);
  --font-display: 'Varela Round', system-ui, sans-serif;
  --font-body: 'Source Sans 3', system-ui, sans-serif;
  --ease: cubic-bezier(0.25, 0.8, 0.25, 1);
  --header-h: 0px;
  --dock-h: 72px;
  --dock-gap: 0.85rem;
  --dock-nav-cap: 1.75rem;
  --dock-inset: env(safe-area-inset-bottom, 0px);
  --dock-safe: calc(var(--dock-gap) + var(--dock-inset) + var(--dock-h));
  --surface-solid: #FFFCFA;
  --radius-pill: 999px;
  --radius-sm: 2px;
  --surface: rgba(255, 252, 250, 0.88);
  --surface-border: rgba(160, 24, 40, 0.1);
  --shadow-soft: 0 12px 40px rgba(28, 10, 13, 0.06);
  --input-line: rgba(160, 24, 40, 0.22);
  --input-line-focus: #A01828;
  --label-color: rgba(160, 24, 40, 0.72);
}

html {
  overflow-x: clip;
  overflow-y: scroll;
  scroll-behavior: auto;
  overscroll-behavior: none;
  background: var(--wine);
  scroll-padding-bottom: var(--dock-safe);
}

body {
  font-family: var(--font-body);
  background: var(--wine);
  color: var(--ink);
  padding: 0;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  overflow-y: visible;
  max-width: 100vw;
  position: relative;
  overscroll-behavior: none;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

body.is-loading { overflow: hidden; }
body.menu-open { overflow: hidden; }

/* Override main.css 90vw — full usable width on all viewports */
.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
  box-sizing: border-box;
}

.container--narrow {
  width: 100%;
  max-width: 720px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
  box-sizing: border-box;
}

.site-main {
  overflow-x: clip;
  overflow-y: visible;
  max-width: 100vw;
  flex: 1 0 auto;
  background: var(--cream);
}

.lang-pill {
  position: fixed;
  top: 1.15rem;
  right: 1.15rem;
  z-index: 2100;
  padding: 0.45rem 0.85rem;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wine);
  background: var(--surface);
  border: 1px solid var(--surface-border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-soft);
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.lang-pill:hover {
  background: var(--wine);
  color: #fff;
  border-color: var(--wine);
}

.eyebrow {
  color: var(--wine);
  font-family: var(--font-body);
  letter-spacing: 0.28em;
  font-size: 0.62rem;
}

h1, h2, h3, .display, .hero-slide__title {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.02em;
}

.section-header h2 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1.08;
}

.lead {
  font-weight: 300;
  line-height: 1.75;
  max-width: 52ch;
}

/* Hide old nav */
.nav-desktop, .menu-toggle, .mobile-nav, .header-book { display: none !important; }

/* ── Bottom dock — nav is the layout anchor; drawers float above via visibility ── */
.dock-shell {
  position: fixed;
  bottom: calc(var(--dock-gap) + var(--dock-inset));
  left: 50%;
  transform: translate3d(-50%, 0, 0);
  z-index: 2000;
  width: min(380px, calc(100vw - 1.5rem));
  max-width: calc(100vw - 1rem);
  pointer-events: none;
  background: transparent;
  padding: 0;
  box-sizing: border-box;
}

.dock-shell__unit {
  position: relative;
  width: 100%;
  margin: 0;
  pointer-events: auto;
}

/* Never in document flow — zero layout impact when closed or open */
.dock-shell__drawers {
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(100% - 1px);
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  width: 100%;
  pointer-events: none;
  visibility: hidden;
  z-index: 1;
}

.dock-shell.is-menu-open .dock-shell__drawers,
.dock-shell.is-chat-open .dock-shell__drawers,
.dock-shell.is-cookie-open .dock-shell__drawers {
  display: grid;
  visibility: visible;
  pointer-events: auto;
}

/* Closed drawers must not paint or extend below the dock */
.dock-shell:not(.is-menu-open):not(.is-chat-open):not(.is-cookie-open) .dock-shell__drawers {
  display: none;
}

.dock-shell__drawer {
  grid-area: 1 / 1;
  align-self: end;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  width: 100%;
  max-height: 0;
  min-height: 0;
  margin: 0;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background: var(--surface-solid);
  border: 1px solid transparent;
  border-bottom: none;
  border-radius: 16px 16px 0 0;
  box-shadow: none;
  transition:
    max-height 0.48s cubic-bezier(0.34, 1.12, 0.64, 1),
    opacity 0.32s var(--ease),
    visibility 0.32s var(--ease),
    border-color 0.32s var(--ease);
}

.dock-shell.is-menu-open .dock-shell__drawer--menu,
.dock-shell.is-cookie-open .dock-shell__drawer--cookie {
  max-height: min(62vh, 520px);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  border-color: var(--surface-border);
  margin-bottom: calc(var(--dock-nav-cap) * -1);
  padding-bottom: var(--dock-nav-cap);
  z-index: 3;
}

.dock-shell.is-chat-open .dock-shell__drawer--chat {
  max-height: min(88vh, 800px);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  border-color: var(--surface-border);
  margin-bottom: calc(var(--dock-nav-cap) * -1);
  padding-bottom: var(--dock-nav-cap);
  z-index: 3;
}

.dock-shell.is-cookie-open .dock-shell__drawer--cookie {
  max-height: 150px;
}

.dock-shell__drawer--cookie.is-hiding {
  max-height: 0 !important;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.dock-cookie__body {
  padding: 0.85rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.dock-cookie__text {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--ink-soft);
}

.dock-cookie__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.dock-cookie__link {
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wine);
  text-decoration: none;
}

.dock-cookie__link:hover {
  text-decoration: underline;
}

.dock-drawer__head {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--input-line);
  background: var(--cream);
}

.dock-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1rem 1.1rem;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

.dock-nav {
  position: relative;
  z-index: 2;
  width: 100%;
  flex-shrink: 0;
}

.dock-nav__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.1rem;
  padding: 0.35rem 0.45rem;
  padding-bottom: 0.35rem;
  background: var(--surface-solid);
  border: 1px solid var(--surface-border);
  border-radius: var(--dock-nav-cap);
  box-shadow: 0 12px 40px rgba(28, 10, 13, 0.12);
  transition:
    box-shadow 0.35s var(--ease),
    background 0.35s var(--ease),
    border-color 0.32s var(--ease);
}

/* Flat top when drawer open; bottom cap stays exactly the same size */
.dock-shell.is-menu-open .dock-nav__inner,
.dock-shell.is-chat-open .dock-nav__inner,
.dock-shell.is-cookie-open .dock-nav__inner {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: var(--dock-nav-cap);
  border-bottom-right-radius: var(--dock-nav-cap);
}

.dock-nav__item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.65rem;
  height: 2.65rem;
  padding: 0;
  color: var(--ink-soft);
  border: none;
  border-radius: var(--radius-pill);
  background: transparent;
  cursor: pointer;
  transition: color 0.3s cubic-bezier(0.34, 1.12, 0.64, 1), background 0.3s cubic-bezier(0.34, 1.12, 0.64, 1), transform 0.35s cubic-bezier(0.34, 1.12, 0.64, 1);
}

.dock-nav__item svg {
  width: 1.35rem;
  height: 1.35rem;
  display: block;
  transition: transform 0.25s var(--ease);
}

.dock-nav__item:hover,
.dock-nav__item.is-active {
  color: var(--wine);
  background: rgba(160, 24, 40, 0.08);
}

.dock-nav__item.is-active svg { transform: scale(1.06); }

.dock-nav__item--cta {
  background: var(--wine);
  color: #fff !important;
  width: 2.85rem;
  height: 2.85rem;
}

.dock-nav__item--cta:hover,
.dock-nav__item--cta.is-active {
  background: var(--wine-deep);
  color: #fff !important;
}

.dock-nav__item--cta svg { stroke: #fff; }

.dock-nav__item--chat.is-active {
  color: #fff;
  background: var(--wine);
}

.dock-nav__item--chat.is-active svg { stroke: #fff; }

.dock-nav__item--menu.is-active,
.dock-nav__item--menu[aria-expanded="true"] {
  background: var(--wine);
  color: #fff;
}

.dock-nav__item--menu.is-active svg,
.dock-nav__item--menu[aria-expanded="true"] svg { stroke: #fff; }

@media (min-width: 768px) {
  .dock-shell { width: min(380px, calc(100vw - 1.5rem)); }
}

/* ── Hero slider ── */
.hero-slider {
  position: relative;
  height: 100svh;
  max-height: 100svh;
  overflow: hidden;
  overscroll-behavior: auto;
  touch-action: pan-y;
  background: var(--ink);
  flex-shrink: 0;
}

.hero-slider__track {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 1s var(--ease), visibility 1s;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}

.hero-slide__media {
  position: absolute;
  inset: 0;
}

.hero-slide__media img,
.hero-slide__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    105deg,
    rgba(26, 8, 12, 0.82) 0%,
    rgba(122, 15, 30, 0.55) 45%,
    rgba(26, 8, 12, 0.35) 100%
  );
}

.hero-slide__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 3rem;
  padding-bottom: calc(var(--dock-safe) + 1rem);
  color: #fff;
  max-width: 640px;
}

.hero-slide__logo {
  width: min(200px, 45vw);
  margin-bottom: 1.5rem;
  filter: brightness(0) invert(1);
}

.hero-slide__title {
  font-size: clamp(1.75rem, 4.5vw, 3.25rem);
  line-height: 1.15;
  margin-bottom: 0.75rem;
  text-transform: lowercase;
}

.hero-slide__sub {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 1.75rem;
  max-width: 32ch;
}

.hero-slider__controls {
  position: absolute;
  bottom: calc(var(--dock-safe) + 0.65rem);
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-slider__arrow {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(0,0,0,0.25);
  color: #fff;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background 0.3s, border-color 0.3s;
}

.hero-slider__arrow:hover {
  background: var(--wine);
  border-color: var(--wine);
}

.hero-slider__dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
  max-width: min(280px, 70vw);
}

.hero-slider__dot {
  width: 28px;
  height: 3px;
  border: none;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, width 0.3s;
}

.hero-slider__dot.is-active {
  background: #fff;
  width: 40px;
}

/* ── Marquee & values (base) ── */
.marquee-wrap {
  background: var(--wine);
  border-color: var(--wine-deep);
}

/* ── Full-bleed sections (height follows content; hero is the only locked viewport block) ── */
.section-num { display: none !important; }

.site-main section[id],
.contact-section[id] {
  scroll-margin-bottom: var(--dock-safe);
}

.section-full {
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  scroll-margin-top: 0;
  width: 100%;
  max-width: 100%;
  overflow: visible;
  box-sizing: border-box;
}

.section-full--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  padding: 0;
}

.section-full--split > * {
  min-width: 0;
}

@media (min-width: 900px) {
  .section-full--split {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    min-height: 100svh;
  }

  .section-full--split-reverse .section-full__media { order: 2; }
  .section-full--split-reverse .section-full__body { order: 1; }
}

/* Full width on mobile — aspect-ratio + max-height used to shrink width (~90vw) */
.section-full__media {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 0;
  height: clamp(240px, 56vw, 440px);
  overflow: hidden;
  background: var(--ink);
}

@media (min-width: 900px) {
  .section-full__media {
    height: 100%;
    min-height: 100%;
    max-height: none;
  }
}

.section-full__media img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  display: block;
}

.section-full__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.25rem, 5vw, 5rem);
  max-width: 640px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

.section-full__body--wide {
  max-width: min(900px, 100%);
  width: 100%;
  padding-top: 3rem;
  padding-bottom: 2rem;
  box-sizing: border-box;
}

.section-full--split .section-full__body {
  margin: 0;
  max-width: none;
  min-width: 0;
  overflow: visible;
}

#services .section-full__body {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.services-clean {
  min-width: 0;
  width: 100%;
  max-width: 100%;
}

.services-panels {
  width: 100%;
  max-width: 100%;
}

@media (min-width: 900px) {
  .section-full--split .section-full__body {
    padding: clamp(3rem, 6vw, 5rem);
  }
}

.section-quote {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  color: var(--wine);
  margin-bottom: 1rem;
  text-transform: lowercase;
  font-weight: 400;
}

.section-lead--light { color: rgba(255, 252, 250, 0.72); }

.about-duo {
  display: grid;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(160, 24, 40, 0.12);
}

@media (min-width: 768px) {
  .about-duo { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
}

.about-duo__item {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

.about-duo__item .eyebrow { margin-bottom: 0.65rem; }

/* Filter pills — horizontal scroll */
.filter-pills {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.4rem;
  padding: 0.35rem;
  margin-bottom: 1.5rem;
  background: rgba(160, 24, 40, 0.05);
  border-radius: var(--radius-pill);
  border: none !important;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: auto;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
}

.filter-pills::-webkit-scrollbar { display: none; }

.filter-pills--scroll .filter-pill {
  scroll-snap-align: center;
  flex-shrink: 0;
}

.filter-pill {
  flex: 0 1 auto;
  min-width: 0;
  padding: 0.55rem 1rem !important;
  font-size: 0.62rem !important;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none !important;
  border-radius: var(--radius-pill) !important;
  background: transparent !important;
  color: var(--ink-soft);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.22s var(--ease), color 0.22s var(--ease);
}

.filter-pill:hover {
  color: var(--wine);
  background: rgba(160, 24, 40, 0.08) !important;
}

.filter-pill.is-active,
.services-tab.is-active,
.prices-nav-btn.is-active {
  background: var(--wine) !important;
  color: #fff !important;
}

/* Stacked panels — tallest panel sets height, no content jump */
.services-panels,
.prices-panels {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
}

.service-panel,
.price-panel {
  grid-area: 1 / 1;
  display: block !important;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s var(--ease), visibility 0.28s var(--ease);
  animation: none !important;
}

.service-panel.is-active,
.price-panel.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.service-panel {
  padding: 0 !important;
}

.service-panel .service-list.diora-scroll {
  max-height: min(420px, 52vh);
  margin-top: 0.25rem;
}

.service-panel__title {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 1rem;
  opacity: 0.85;
}

/* Scrollable lists — rail + arrows + visible scrollbar */
.diora-scroll-shell {
  position: relative;
  width: 100%;
  max-width: 100%;
  padding-right: 2.65rem;
  box-sizing: border-box;
}

.diora-scroll-shell__fade {
  position: absolute;
  left: 0;
  right: 2.85rem;
  height: 1.35rem;
  pointer-events: none;
  z-index: 4;
  opacity: 1;
  transition: opacity 0.2s var(--ease);
}

.diora-scroll-shell__fade--top {
  top: 0;
  background: linear-gradient(to bottom, var(--scroll-fade, var(--cream)) 30%, transparent);
}

.diora-scroll-shell__fade--bottom {
  bottom: 0;
  background: linear-gradient(to top, var(--scroll-fade, var(--cream)) 30%, transparent);
}

.section--ivory .diora-scroll-shell {
  --scroll-fade: var(--ivory-light);
}

.diora-scroll-shell.is-at-top .diora-scroll-shell__fade--top {
  opacity: 0;
}

.diora-scroll-shell.is-at-bottom .diora-scroll-shell__fade--bottom {
  opacity: 0;
}

.diora-scroll-shell:not(.is-scrollable) .diora-scroll-shell__fade,
.diora-scroll-shell:not(.is-scrollable) .diora-scroll-shell__rail {
  display: none;
}

.diora-scroll-shell__rail {
  position: absolute;
  top: 0.35rem;
  right: 0;
  bottom: 0.35rem;
  width: 2.35rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.35rem;
  z-index: 12;
  pointer-events: none;
}

.diora-scroll-shell__btn {
  pointer-events: auto;
  display: grid;
  place-items: center;
  width: 2.1rem;
  height: 2.1rem;
  padding: 0;
  border: 1px solid rgba(160, 24, 40, 0.22);
  border-radius: 50%;
  background: var(--wine);
  color: #fff;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.18s var(--ease), opacity 0.18s var(--ease), transform 0.18s var(--ease);
}

.diora-scroll-shell__btn svg {
  width: 1rem;
  height: 1rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.diora-scroll-shell__btn:hover:not(:disabled) {
  background: var(--wine-deep);
}

.diora-scroll-shell__btn:disabled {
  opacity: 0.28;
  cursor: not-allowed;
  background: rgba(160, 24, 40, 0.35);
}

.diora-scroll-shell__track {
  display: block;
  width: 4px;
  flex: 1;
  min-height: 2rem;
  margin: 0.2rem 0;
  border-radius: 999px;
  background: rgba(160, 24, 40, 0.12);
  position: relative;
  overflow: hidden;
}

.diora-scroll-shell__track-fill {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  min-height: 1.5rem;
  border-radius: 999px;
  background: var(--wine);
  transition: top 0.12s var(--ease), height 0.12s var(--ease);
  box-shadow: 0 0 0 1px rgba(160, 24, 40, 0.08);
}

.diora-scroll {
  --list-price-col: 4.75rem;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: var(--wine) rgba(160, 24, 40, 0.12);
}

.diora-scroll-shell .diora-scroll {
  width: 100%;
  padding-right: 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.diora-scroll-shell .diora-scroll::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}


.service-list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.service-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 0.5rem 0.85rem 0;
  border-bottom: 1px solid rgba(160, 24, 40, 0.1);
  font-size: 0.9rem;
  line-height: 1.4;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
}

.service-list li:last-child {
  border-bottom: none;
}

.service-list li span:first-child {
  flex: 1 1 auto;
  min-width: 0;
  text-align: left;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 0.82rem;
  overflow-wrap: anywhere;
  word-break: break-word;
  padding-right: 0.35rem;
}

.service-list .price {
  flex: 0 0 var(--list-price-col, 5.5rem);
  text-align: right;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--wine);
  white-space: nowrap;
}

/* Pick rows — flat price columns (booking), solid fills */
.pick-row {
  position: relative;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.25rem;
  width: 100%;
  box-sizing: border-box;
  padding: 0.85rem 0.35rem 0.85rem 0.15rem;
  margin: 0;
  border: none;
  border-bottom: 1px solid rgba(160, 24, 40, 0.1);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  user-select: none;
  transition: background 0.18s var(--ease), color 0.18s var(--ease);
}

.pick-row:last-of-type {
  border-bottom: none;
}

@media (hover: hover) {
  .pick-row:hover {
    background: var(--red-tint);
  }
}

.pick-row:focus-within {
  outline: none;
  background: var(--red-tint);
}

.pick-row.is-selected,
.pick-row:has(.pick-row__input:checked) {
  background: var(--wine);
  border-bottom-color: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.pick-row.is-selected + .pick-row,
.pick-row:has(.pick-row__input:checked) + .pick-row {
  border-top: none;
}

.pick-row.is-selected .pick-row__label,
.pick-row:has(.pick-row__input:checked) .pick-row__label {
  font-weight: 600;
}

.pick-row.is-selected .pick-row__meta,
.pick-row:has(.pick-row__input:checked) .pick-row__meta {
  color: rgba(255, 255, 255, 0.95);
}

.pick-row__input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 1;
}

.pick-row__label {
  position: relative;
  z-index: 0;
  flex: 1 1 0%;
  min-width: 0;
  text-align: left;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.4;
}

.pick-row__meta {
  position: relative;
  z-index: 0;
  flex: 0 0 var(--list-price-col, 5.5rem);
  text-align: right;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--wine);
  white-space: nowrap;
  transition: color 0.18s var(--ease);
}

.service-pick-list {
  display: block;
  width: 100%;
  max-width: 100%;
  max-height: min(340px, 44vh);
  padding: 0;
  margin: 0;
  border: none;
  border-top: 1px solid rgba(160, 24, 40, 0.12);
  border-bottom: 1px solid rgba(160, 24, 40, 0.12);
  background: transparent;
}

.diora-scroll-shell .service-pick-list {
  border-left: none;
  border-right: none;
}

.service-pick-list__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.25rem;
  width: 100%;
  box-sizing: border-box;
  padding: 0.65rem 0.35rem 0.5rem 0.15rem;
  margin: 0;
  font-size: 0.55rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(160, 24, 40, 0.55);
  position: sticky;
  top: 0;
  z-index: 2;
  background: var(--cream);
  border-bottom: 1px solid rgba(160, 24, 40, 0.1);
}

.service-pick-list__head span:first-child {
  flex: 1 1 0%;
  text-align: left;
}

.service-pick-list__head span:last-child {
  flex: 0 0 var(--list-price-col, 5.5rem);
  text-align: right;
}

.service-pick-list__cat {
  display: block;
  width: 100%;
  padding: 0.7rem 0.15rem 0.35rem;
  margin: 0;
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wine);
  position: sticky;
  top: 1.85rem;
  z-index: 1;
  background: var(--cream);
  border-bottom: 1px solid rgba(160, 24, 40, 0.08);
}

.service-pick-list__cat:first-of-type {
  margin-top: 0;
}

.service-pick-list:not(:has(.service-pick-list__head)) .service-pick-list__cat {
  top: 0;
}

.section--ivory .service-pick-list__head,
.section--ivory .service-pick-list__cat {
  background: var(--ivory-light);
}

.service-pick-list--booking {
  max-height: min(320px, 42vh);
}

#book .booking-clean__form {
  width: 100%;
  max-width: 100%;
}

#booking-services-wrap {
  width: 100%;
  max-width: 100%;
}

#booking-services-wrap.is-disabled {
  opacity: 0.42;
  pointer-events: none;
}

#booking-services-wrap.is-disabled .pick-row.is-selected,
#booking-services-wrap.is-disabled .pick-row:has(.pick-row__input:checked) {
  background: transparent;
  color: var(--ink);
}

.booking-pick-hint {
  margin: 0.65rem 0 0;
  font-size: 0.78rem;
  color: var(--ink-soft);
}

.services-nav { display: none !important; }

/* Prices */
.prices-nav {
  justify-content: center;
  margin-bottom: 1.5rem !important;
}

.price-panel__title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  opacity: 0.85;
}

.price-list li {
  border-bottom: 1px solid rgba(160, 24, 40, 0.08);
  padding: 0.7rem 0;
}

/* Category image crossfade */
.section-full__media img {
  transition: opacity 0.35s var(--ease);
}

.section-full__media img.is-fading {
  opacity: 0.35;
}

/* ── Offers (flat list — no card grid) ── */
.offers-section {
  padding-block: clamp(2rem, 5vw, 3.25rem);
}

.offers-section .section-full__body--wide {
  padding-top: clamp(1.75rem, 4vw, 2.5rem);
  padding-bottom: clamp(1.75rem, 4vw, 2.25rem);
}

.offers-grid {
  display: grid;
  gap: 0;
  margin-top: 2rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
}

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

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

.offer-card {
  background: transparent;
  padding: clamp(1.35rem, 3vw, 1.75rem) clamp(0.5rem, 2vw, 1rem);
  display: flex;
  flex-direction: column;
  min-height: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  transition: background 0.22s var(--ease);
}

@media (min-width: 640px) {
  .offer-card {
    border-bottom: none;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
  }

  .offers-grid .offer-card:nth-last-child(-n+2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }
}

.offer-card:hover {
  background: rgba(0, 0, 0, 0.06);
}

#book .section-full__body--wide {
  max-width: min(980px, 100%);
  padding-bottom: clamp(2rem, 5vw, 2.5rem);
}

.offer-card__label {
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.35rem;
}

.offer-card__desc {
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 0.5rem;
}

.offer-card__price {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3rem);
  line-height: 1;
  margin: 0.75rem 0 1rem;
  color: #fff;
}

.offer-card__price sup { font-size: 0.35em; }

.offer-card__cta { margin-top: auto; align-self: flex-start; }

.section--wine .offer-items {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1rem;
  margin-bottom: 1.25rem;
}

.section--wine .offer-items li {
  opacity: 0.85;
  color: rgba(255, 255, 255, 0.9);
}

.offers-empty {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 2rem;
}

.booking-offer-banner {
  padding: 0.85rem 0 1rem;
  margin-bottom: 1.25rem;
  border: none;
  border-bottom: 1px solid var(--input-line);
  background: transparent;
  border-radius: 0;
}

.booking-offer-banner__title {
  font-family: var(--font-display);
  font-size: 1rem;
  margin-top: 0.35rem;
}

.booking-offer-banner__clear {
  margin-top: 0.65rem;
  padding: 0;
  border: none;
  background: none;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wine);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.offers-clean {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-top: 1rem;
}

.offer-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.offer-item__label { color: rgba(255, 255, 255, 0.55); }

.offer-item__price {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  line-height: 1;
  margin: 0.75rem 0 1rem;
}

.offer-item__price sup { font-size: 0.35em; }

.section--wine .offer-items {
  border-top: none;
  padding-top: 0;
  margin-bottom: 1.25rem;
}

.section--wine .offer-items li { opacity: 0.8; }

/* ── Booking ── */
.booking-clean {
  display: grid;
  gap: 2.5rem;
  align-items: start;
  width: 100%;
  max-width: min(1040px, 100%);
  margin: 0 auto;
}

@media (min-width: 768px) {
  .booking-clean {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3.5rem;
  }
}

.booking-clean__visual img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  max-height: 520px;
  object-fit: cover;
  display: block;
}

.booking-clean__form {
  background: transparent;
  padding: 0;
  border: none;
}

/* ── Booking wizard ── */
.booking-wizard {
  width: 100%;
  max-width: 100%;
  margin: 0;
}

.booking-wizard__progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.booking-wizard__dot {
  width: 2rem;
  height: 2px;
  border: none;
  padding: 0;
  background: rgba(160, 24, 40, 0.2);
  border-radius: 1px;
  cursor: default;
  transition: background 0.25s var(--ease), width 0.25s var(--ease);
}

.booking-wizard__dot.is-active {
  width: 2.75rem;
  background: var(--wine);
}

.booking-wizard__dot.is-done {
  background: rgba(160, 24, 40, 0.45);
}

.booking-wizard__panels {
  position: relative;
  min-height: 12rem;
}

.booking-wizard__panel {
  display: none;
  animation: wizard-in 0.35s var(--ease);
}

.booking-wizard__panel.is-active {
  display: block;
}

@keyframes wizard-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .booking-wizard__panel { animation: none; }
}

.booking-wizard__panel .form-group:last-child {
  margin-bottom: 0;
}

.booking-wizard__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--input-line);
}

.booking-wizard__actions-spacer {
  flex: 1;
}

.booking-wizard__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  padding: 0;
  border-radius: 50%;
  flex-shrink: 0;
}

.booking-wizard__btn svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.booking-wizard__btn--prev {
  border: 1px solid var(--input-line);
  background: transparent;
  color: var(--wine);
}

.booking-wizard__btn--prev:hover {
  border-color: var(--wine);
  background: rgba(160, 24, 40, 0.06);
}

.booking-wizard__btn--next,
.booking-wizard__btn--submit {
  margin-left: auto;
  background: var(--wine);
  border: 1px solid var(--wine);
  color: #fff;
}

.booking-wizard__btn--next:hover,
.booking-wizard__btn--submit:hover {
  background: var(--wine-deep);
  border-color: var(--wine-deep);
}

.booking-wizard__btn[hidden] {
  display: none !important;
}

.booking-wizard__btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.booking-wizard__btn:focus-visible {
  outline: 2px solid var(--wine);
  outline-offset: 3px;
}

.booking-wizard__btn:active:not(:disabled) {
  opacity: 0.88;
}

.booking-closed {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border: none;
  border-top: 1px solid var(--input-line);
  border-bottom: 1px solid var(--input-line);
  background: transparent;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: normal;
  color: var(--wine);
}

.booking-success {
  text-align: center;
  padding: 2rem 0;
  border: none;
  border-top: 1px solid var(--input-line);
  background: transparent;
  color: var(--ink);
  display: none;
}

.booking-success.is-visible { display: block; }

.booking-success .eyebrow { color: var(--label-color); }

.reservation-code {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  letter-spacing: 0.06em;
  color: var(--wine);
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.lookup-clean {
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--input-line);
  text-align: center;
  width: 100%;
}

.lookup-clean__inner {
  max-width: min(560px, 100%);
  margin: 0 auto;
  padding: clamp(1.75rem, 4vw, 2.5rem) clamp(1.25rem, 4vw, 2rem);
  background: var(--ivory-light);
  border: 1px solid rgba(160, 24, 40, 0.1);
  border-radius: 10px;
}

.lookup-clean__sub {
  margin: 0.65rem auto 0;
  max-width: 36ch;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--ink-soft);
}

.lookup-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  margin: 1.75rem 0 0;
  align-items: stretch;
}

.lookup-form__input {
  width: 100%;
  box-sizing: border-box;
  padding: 1rem 1.15rem;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(160, 24, 40, 0.22);
  border-radius: 8px;
  transition: border-color 0.2s var(--ease);
}

.lookup-form__input::placeholder {
  color: rgba(107, 74, 80, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.lookup-form__input:hover {
  border-color: rgba(160, 24, 40, 0.35);
}

.lookup-form__input:focus {
  outline: none;
  border-color: var(--wine);
}

.lookup-form__btn {
  width: 100%;
  padding: 0.95rem 1.5rem;
  font-size: 0.72rem;
}

.lookup-result {
  display: none;
  margin: 1.5rem 0 0;
  padding: 1.25rem 1rem 0;
  font-size: 0.9rem;
  text-align: center;
  border-top: 1px solid rgba(160, 24, 40, 0.12);
  color: var(--ink-soft);
  line-height: 1.65;
}

.lookup-result.is-visible {
  display: block;
}

.lookup-result .badge { margin-top: 0.65rem; }

/* ── Global form system (public site) ── */
.site-main .form-group {
  margin-bottom: 1.75rem;
}

.site-main .form-group > label:not(.pick-row) {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wine);
  opacity: 0.85;
  margin-bottom: 0.4rem;
}

.site-main .form-group .pick-row {
  display: flex;
  margin-bottom: 0;
  opacity: 1;
  font-size: inherit;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink);
}

.site-main input[type="text"],
.site-main input[type="email"],
.site-main input[type="tel"],
.site-main input[type="date"],
.site-main input[type="number"],
.site-main input[type="time"],
.site-main textarea,
.site-main select {
  width: 100%;
  padding: 0.6rem 0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--ink);
  background: transparent !important;
  border: none !important;
  border-bottom: 1px solid var(--input-line) !important;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.25s var(--ease);
  box-shadow: none;
}

.site-main input::placeholder,
.site-main textarea::placeholder {
  color: rgba(107, 74, 80, 0.45);
  font-weight: 400;
}

.site-main input:hover,
.site-main textarea:hover,
.site-main select:hover {
  border-bottom-color: rgba(160, 24, 40, 0.4) !important;
}

.site-main input:focus,
.site-main textarea:focus,
.site-main select:focus {
  outline: none;
  border-bottom-color: var(--input-line-focus) !important;
  box-shadow: none;
}

.site-main select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23A01828' d='M1 1l4 4 4-4'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 0 center !important;
  padding-right: 1.25rem !important;
  cursor: pointer;
}

.site-main select:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.site-main input[type="date"] {
  position: relative;
  color-scheme: light;
}

.site-main input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0.45;
  cursor: pointer;
  filter: none;
}

.site-main textarea {
  min-height: 72px;
  resize: vertical;
  padding-top: 0.5rem;
}

.site-main .form-row {
  gap: 1.75rem;
}

.site-main #booking-form .btn--fill,
.btn--block {
  margin-top: 0.5rem;
  width: 100%;
  padding: 1rem 2rem;
}

/* ── Buttons ── */
.btn {
  border-radius: var(--radius-pill);
  letter-spacing: 0.14em;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.2s var(--ease);
}

.btn:active:not(:disabled) { opacity: 0.92; }

.btn--fill,
.btn--filled {
  background: var(--wine);
  border: 1px solid var(--wine);
  color: #fff;
}

.btn--fill:hover,
.btn--filled:hover {
  background: var(--wine-deep);
  border-color: var(--wine-deep);
  color: #fff;
}

.btn--light {
  border: 1px solid rgba(255, 252, 250, 0.5);
  border-radius: var(--radius-pill);
}

.btn--light:hover {
  background: #fff;
  color: var(--wine);
  border-color: #fff;
}

.hero-slide__content .btn--light {
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.08);
}

.hero-slide__content .btn--light:hover {
  background: #fff;
  color: var(--wine);
}

.hero-slider__arrow {
  border-radius: 50%;
  backdrop-filter: blur(8px);
}

.hero-slider__dot {
  border-radius: var(--radius-pill);
}

/* ── Marquee & values ── */
.marquee-wrap {
  background: var(--wine);
  border: none;
  padding: 0.65rem 0;
}

.marquee-track span {
  font-size: 0.58rem;
  letter-spacing: 0.32em;
  opacity: 0.9;
}

.values-strip {
  border: none;
  border-bottom: 1px solid var(--input-line);
  background: var(--cream);
}

.value-cell {
  border-right: 1px solid var(--input-line);
  border-bottom: none;
  padding: 1.1rem 1rem;
  transition: color 0.25s var(--ease);
}

.value-cell:hover {
  background: transparent;
  color: var(--wine);
}

.value-cell span {
  font-size: 0.58rem;
  letter-spacing: 0.28em;
}

.value-cell:nth-child(4n) { border-right: none; }

@media (max-width: 767px) {
  .value-cell:nth-child(2n) { border-right: none; }
  .value-cell:nth-child(-n+2) { border-bottom: 1px solid var(--input-line); }
}

/* ── Section backgrounds ── */
.section--ivory { background: var(--ivory-light); }
.section--warm { background: var(--cream); }
.section--wine { background: var(--wine-deep); }

.section-header--center .lead {
  margin-left: auto;
  margin-right: auto;
}

.section-header .eyebrow { margin-bottom: 0.85rem; }

/* ── Lists & offers ── */
.price-list li {
  border-bottom: 1px solid var(--input-line);
  padding: 0.75rem 0;
  font-size: 0.9rem;
}

.price-list li span:last-child {
  font-family: var(--font-display);
  color: var(--wine);
  font-size: 1rem;
  font-weight: 400;
}

.offer-item {
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.offer-item .btn--light {
  border-color: rgba(255, 255, 255, 0.35);
  margin-top: 0.5rem;
}

.offer-item .btn--light:hover {
  background: #fff;
  color: var(--wine-deep);
}

/* ── Contact & footer ── */
.contact-section,
.contact-section.section-full {
  padding: clamp(2rem, 5vw, 3rem) 0 clamp(1.75rem, 4vw, 2.5rem);
  background: var(--ivory-light);
  min-height: 0;
  display: block;
  flex-shrink: 0;
  margin: 0;
}

.contact-section .section-header--center .lead {
  color: var(--ink);
  opacity: 0.88;
}

.contact-hours {
  font-size: 0.88rem !important;
  margin-top: 0.5rem !important;
  color: var(--ink-soft);
  opacity: 0.9;
  letter-spacing: 0.04em;
}

.contact-actions {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

/* Icon link rows (contact, footer, menu) */
.icon-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
}

.icon-links--cream { justify-content: center; }

.icon-links--wine {
  margin-top: 1.15rem;
}

.icon-links--menu {
  display: grid;
  grid-template-columns: repeat(6, 3rem);
  gap: 0.6rem;
  flex: 1;
  min-width: 0;
  justify-content: start;
}

@media (max-width: 420px) {
  .icon-links--menu {
    grid-template-columns: repeat(3, 2.85rem);
    gap: 0.55rem;
  }
}

/* Mega menu connect row — same Lucide strokes as contact/footer */
.icon-links--menu .icon-link {
  width: 3rem;
  height: 3rem;
  background: var(--wine);
  border: 1px solid var(--wine);
  color: #fff;
  box-shadow: 0 2px 8px rgba(160, 24, 40, 0.18);
}

.icon-links--menu .icon-link svg {
  width: 1.25rem;
  height: 1.25rem;
  display: block;
}

.icon-links--menu .icon-link:hover,
.icon-links--menu .icon-link:focus-visible {
  background: var(--cream);
  border-color: var(--wine);
  color: var(--wine);
  box-shadow: 0 2px 10px rgba(160, 24, 40, 0.12);
}

.icon-link {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 1px solid var(--input-line);
  background: var(--surface-solid);
  color: var(--wine);
  transition: background 0.22s var(--ease), color 0.22s var(--ease), border-color 0.22s var(--ease);
}

.icon-links--cream .icon-link svg,
.icon-links--wine .icon-link svg {
  width: 1.2rem;
  height: 1.2rem;
  display: block;
}

.icon-link svg {
  width: 1.15rem;
  height: 1.15rem;
}

.icon-link:hover {
  background: var(--wine);
  border-color: var(--wine);
  color: #fff;
}

/* Re-assert mega menu inverse (after generic .icon-link:hover) */
.icon-links--menu .icon-link:hover,
.icon-links--menu .icon-link:focus-visible {
  background: var(--cream);
  border-color: var(--wine);
  color: var(--wine);
}

.icon-links--wine .icon-link {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.icon-links--wine .icon-link:hover {
  background: #fff;
  border-color: #fff;
  color: var(--wine);
}


.lang-icons {
  display: flex;
  gap: 0.45rem;
  flex-shrink: 0;
}

.lang-icon {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 1px solid var(--input-line);
  background: var(--surface-solid);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  transition: all 0.22s var(--ease);
}

.lang-icon:hover,
.lang-icon.is-active {
  background: var(--wine);
  border-color: var(--wine);
  color: #fff;
}

/* Mega menu languages — match icon-link size & solid style */
.lang-icons--menu {
  display: flex;
  gap: 0.65rem;
  align-items: center;
}

.lang-icons--menu .lang-icon {
  width: 3rem;
  height: 3rem;
  background: var(--wine);
  border: 1px solid var(--wine);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: 0 2px 8px rgba(160, 24, 40, 0.18);
}

.lang-icons--menu .lang-icon.is-active {
  background: var(--wine);
  border-color: var(--wine);
  color: #fff;
  box-shadow: 0 0 0 2px var(--cream), 0 0 0 3px var(--wine);
}

.lang-icons--menu .lang-icon:hover,
.lang-icons--menu .lang-icon:focus-visible {
  background: var(--cream);
  border-color: var(--wine);
  color: var(--wine);
  box-shadow: 0 2px 10px rgba(160, 24, 40, 0.12);
}

.mega-menu__connect {
  margin-top: 1.25rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(160, 24, 40, 0.12);
}

.mega-menu__connect-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem 1rem;
}

.mega-menu__connect .icon-links--menu {
  flex: 1 1 auto;
}

.mega-menu__connect .lang-icons--menu {
  flex-shrink: 0;
}

.contact-map-section {
  width: 100%;
  margin: 0;
  padding: 0;
  background: var(--wine);
  line-height: 0;
}

.contact-map-wrap {
  position: relative;
  width: 100%;
  height: min(50vh, 440px);
  min-height: 280px;
  overflow: hidden;
  background: #e8e0d8;
  pointer-events: auto;
  touch-action: pan-y;
}

.contact-map__embed {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
}

.contact-map__zoom {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 4;
  pointer-events: auto;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.contact-map__zoom-btn {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-sm);
  background: var(--surface-solid);
  color: var(--wine);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.contact-map__zoom-btn:hover {
  background: var(--wine);
  color: #fff;
}

.contact-map__open {
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  line-height: 1;
  color: var(--wine);
}

.contact-map__open:hover {
  color: #fff;
}

.site-footer__google {
  display: inline-block;
  margin-top: 0.65rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  transition: color 0.2s var(--ease);
}

.site-footer__google:hover {
  color: #fff;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-footer {
  border-top: none;
  background: var(--wine);
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
  padding: 0 0 var(--dock-safe);
  flex-shrink: 0;
}

.site-footer__main {
  background: var(--wine);
  color: rgba(255, 255, 255, 0.92);
  padding: clamp(2.75rem, 6vw, 4rem) 0 2rem;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.75rem 2rem;
  text-align: left;
  align-items: start;
}

@media (min-width: 768px) {
  .site-footer__grid {
    grid-template-columns: 1.2fr repeat(2, 1fr);
    gap: 2rem 2.5rem;
  }
}

.site-footer__col {
  text-align: left;
}

.site-footer__brand img {
  width: 88px;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.site-footer__tagline {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.88);
  margin-top: 1rem;
  max-width: 22ch;
}

.site-footer__address {
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  margin-top: 0.85rem;
  line-height: 1.65;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.site-footer__address span {
  display: block;
}

.site-footer__heading {
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.85rem;
}

.site-footer__nav,
.site-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.site-footer__nav a,
.site-footer__contact a {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.88);
  transition: color 0.2s var(--ease), opacity 0.2s var(--ease);
}

.site-footer__nav a:hover,
.site-footer__contact a:hover {
  color: #fff;
  opacity: 1;
}

.site-footer__credits {
  background: var(--wine);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 0;
}

.site-footer__credits-inner {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.5rem;
  padding: 0.85rem 0 0.5rem;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.site-footer__credits-inner p {
  margin: 0;
  width: 100%;
}

.site-footer__credit-link {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 500;
  transition: color 0.2s var(--ease);
}

.site-footer__credit-link:hover {
  color: #fff;
}

.site-footer__wordmark {
  width: 100%;
  height: clamp(52px, 13vw, 80px);
  background: var(--wine);
  line-height: 0;
  font-size: 0;
  overflow: hidden;
  margin: 0;
  padding: 0;
  flex-shrink: 0;
}

.site-footer__wordmark img {
  width: 100%;
  height: 100%;
  display: block;
  max-width: none;
  margin: 0;
  object-fit: contain;
  object-position: center bottom;
}

.footer-brand img {
  width: 88px;
  opacity: 0.9;
}

.footer-tagline {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}

.footer-meta {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0.7;
}

.footer-copy { margin-top: 1rem; opacity: 0.55; }

/* ── Chatbot (drawer in dock shell) ── */
.chatbot-toggle { display: none !important; }

.dock-shell__drawer--chat.chatbot-panel {
  position: relative;
  bottom: auto;
  left: auto;
  right: auto;
  transform: none;
  width: 100%;
  height: auto;
  max-height: none;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.dock-shell__drawer--chat .chatbot-header {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  background: var(--wine);
  color: #fff;
  border-bottom: none;
}

.chatbot-header__text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.chatbot-header__title {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.chatbot-header__sub {
  font-size: 0.68rem;
  line-height: 1.35;
  opacity: 0.82;
  font-weight: 300;
}

.dock-shell__drawer--chat .chatbot-close {
  flex-shrink: 0;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.9;
  min-width: 2.25rem;
  min-height: 2.25rem;
}

.dock-shell__drawer--chat .chatbot-close:hover {
  opacity: 1;
}

.dock-shell__drawer--chat .chatbot-messages {
  flex: 1 1 auto;
  min-height: min(280px, 42vh);
  max-height: none;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0.85rem 1rem;
  gap: 0.5rem;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  scroll-behavior: smooth;
}

.dock-shell__drawer--chat .chatbot-quick {
  flex-shrink: 0;
  padding: 0 0.85rem 0.5rem;
  gap: 0.35rem;
  background: var(--cream);
  display: flex;
  flex-wrap: wrap;
  max-height: 28%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.dock-shell__drawer--chat .chatbot-input {
  flex-shrink: 0;
  border-top: 1px solid var(--input-line);
  background: var(--cream);
  display: flex;
}

.chat-msg {
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
}

.chat-msg--bot {
  background: var(--ivory-light);
  border: none;
}

.chat-msg--user {
  background: var(--wine);
  border-radius: var(--radius-sm) var(--radius-sm) 0 var(--radius-sm);
}

.chatbot-quick {
  padding: 0 1rem 0.75rem;
  gap: 0.4rem;
  background: var(--cream);
}

.chatbot-quick button {
  padding: 0.45rem 0.75rem;
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  border: 1px solid var(--input-line);
  border-radius: var(--radius-pill);
  background: transparent;
  transition: all 0.22s var(--ease);
}

.chatbot-quick button:hover {
  background: var(--wine);
  border-color: var(--wine);
  color: #fff;
}

.chatbot-input {
  border-top: 1px solid var(--input-line);
  background: var(--cream);
}

.chatbot-input input {
  background: transparent !important;
  border: none !important;
  padding: 1rem 1.15rem;
  font-size: 0.88rem;
}

.chatbot-input input:focus {
  background: transparent !important;
}

.chatbot-input button {
  padding: 0 1.15rem;
  border: none;
  border-left: 1px solid var(--input-line);
  background: transparent;
  color: var(--wine);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  transition: background 0.22s var(--ease), color 0.22s var(--ease);
}

.chatbot-input button:hover {
  background: var(--wine);
  color: #fff;
}

/* ── Reveal — see premium animations at end of file ── */

/* ── Legacy cleanup ── */
.booking-info { background: transparent !important; padding: 0 !important; }

.split-section,
.about-mini,
.offers-stack .offer-card,
.booking-info__img,
.services-showcase,
.booking-layout,
.price-table,
.contact-grid {
  border: none !important;
  background: transparent !important;
}

.section { padding: 0; min-height: auto; scroll-margin-top: 0; }

.site-main {
  overflow: clip;
}

.btn--filled { background: var(--wine); color: #fff; border-color: var(--wine); }

.price-list {
  list-style: none;
  max-width: 640px;
  margin: 0 auto;
}

.price-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
}

.services-clean { margin-top: 0.25rem; }

.service-panel__title {
  font-family: var(--font-display);
  text-transform: lowercase;
  color: var(--wine);
}

.section--wine .section-full__body .eyebrow { color: rgba(255, 252, 250, 0.65); }
.section--wine .section-full__body h2 { color: #fff; }

.chat-msg--link {
  color: var(--wine);
  text-decoration: underline;
  cursor: pointer;
}

/* Toast */
.toast-container {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  pointer-events: none;
  max-width: min(360px, calc(100vw - 2rem));
}

.toast {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
  color: var(--ink);
  padding: 0.85rem 1rem;
  font-size: 0.85rem;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.28s var(--ease), transform 0.28s var(--ease);
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.toast--error {
  border-color: rgba(122, 15, 30, 0.35);
  background: #fff8f8;
}

@media (max-width: 480px) {
  .lang-pill {
    top: 0.85rem;
    right: 0.85rem;
    font-size: 0.62rem;
    padding: 0.4rem 0.7rem;
  }

  .filter-pill {
    padding: 0.5rem 0.75rem !important;
    font-size: 0.58rem !important;
  }

  .site-main .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* ── Custom select & datepicker (cross-browser brand UI) ── */
.diora-select,
.diora-datepicker {
  position: relative;
  width: 100%;
}

.diora-native {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.diora-select__trigger,
.diora-datepicker__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.6rem 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--input-line);
  border-radius: 0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease);
}

.diora-select__value,
.diora-datepicker__value {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.diora-select__value.is-placeholder,
.diora-datepicker__value.is-placeholder {
  color: rgba(107, 74, 80, 0.45);
  font-weight: 400;
}

.diora-select__chevron {
  flex-shrink: 0;
  font-size: 0.75rem;
  color: var(--wine);
  transition: transform 0.25s var(--ease);
}

.diora-select.is-open .diora-select__chevron {
  transform: rotate(180deg);
}

.diora-datepicker__icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--wine);
  opacity: 0.75;
}

.diora-datepicker__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.diora-select.is-open .diora-select__trigger,
.diora-datepicker.is-open .diora-datepicker__trigger,
.diora-select__trigger:hover,
.diora-datepicker__trigger:hover {
  border-bottom-color: rgba(160, 24, 40, 0.45);
}

.diora-select.is-open .diora-select__trigger,
.diora-datepicker.is-open .diora-datepicker__trigger {
  border-bottom-color: var(--wine);
}

.diora-select.is-disabled .diora-select__trigger,
.diora-select__trigger:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.diora-select__panel,
.diora-datepicker__panel {
  position: absolute;
  top: calc(100% + 0.45rem);
  left: 0;
  right: 0;
  z-index: 4000;
  background: var(--cream);
  border: 1px solid rgba(160, 24, 40, 0.18);
  box-shadow: var(--shadow-soft);
  animation: dioraPanelIn 0.22s var(--ease);
}

@keyframes dioraPanelIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

.diora-select__panel {
  max-height: min(340px, 52vh);
  overflow-y: auto;
  padding: 0.35rem 0;
  -webkit-overflow-scrolling: touch;
}

.diora-select__group {
  padding: 0.85rem 1rem 0.35rem;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--label-color);
  pointer-events: none;
}

.diora-select__option {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  width: 100%;
  padding: 0.7rem 1rem;
  border: none;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.35;
  text-align: left;
  cursor: pointer;
  transition: background 0.18s var(--ease), color 0.18s var(--ease);
}

.diora-select__option:hover,
.diora-select__option:focus-visible {
  background: var(--wine);
  color: #fff;
  outline: none;
}

.diora-select__option.is-selected {
  background: var(--wine);
  color: #fff;
  font-weight: 600;
}

.diora-select__option.is-selected:hover {
  background: var(--wine);
  color: #fff;
}

.diora-select__check {
  display: none !important;
}

.diora-select__option--placeholder {
  display: none;
}

.diora-select__option:hover .diora-select__check {
  opacity: 1;
}

/* Datepicker calendar */
.diora-datepicker__panel {
  padding: 0.85rem;
  min-width: 280px;
}

.diora-datepicker__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
}

.diora-datepicker__month {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--ink);
  text-transform: lowercase;
}

.diora-datepicker__nav {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--input-line);
  background: transparent;
  color: var(--wine);
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}

.diora-datepicker__nav:hover {
  background: var(--wine);
  border-color: var(--wine);
  color: #fff;
}

.diora-datepicker__weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.15rem;
  margin-bottom: 0.35rem;
}

.diora-datepicker__weekdays span {
  text-align: center;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--label-color);
  padding: 0.25rem 0;
}

.diora-datepicker__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.15rem;
}

.diora-datepicker__day {
  aspect-ratio: 1;
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.18s var(--ease), color 0.18s var(--ease);
}

.diora-datepicker__day--empty {
  pointer-events: none;
}

.diora-datepicker__day:hover:not(:disabled) {
  background: rgba(160, 24, 40, 0.1);
  color: var(--wine);
}

.diora-datepicker__day.is-today {
  box-shadow: inset 0 0 0 1px var(--wine);
}

.diora-datepicker__day.is-selected {
  background: var(--wine);
  color: #fff;
}

.diora-datepicker__day.is-selected.is-today {
  box-shadow: none;
}

.diora-datepicker__day.is-disabled,
.diora-datepicker__day:disabled {
  opacity: 0.28;
  cursor: not-allowed;
}

.diora-datepicker__day.is-closed {
  opacity: 0.22;
}

/* Chat booking pickers — themed clickable UI */
.chat-msg--widget {
  max-width: 100%;
  padding: 0.65rem 0.75rem;
  background: rgba(255, 252, 250, 0.98);
  border: 1px solid rgba(160, 24, 40, 0.12);
  border-radius: 0.85rem;
}

.chat-picker-hint {
  margin: 0.55rem 0 0;
  font-size: 0.72rem;
  line-height: 1.45;
  color: rgba(28, 10, 13, 0.55);
}

.chat-picker-scroll {
  max-height: min(220px, 38vh);
  padding-right: 0.15rem;
}

.chat-picker-group {
  padding: 0.55rem 0.35rem 0.25rem;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(160, 24, 40, 0.72);
}

.chat-picker-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(4.1rem, 1fr));
  gap: 0.45rem;
}

.chat-picker-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  width: 100%;
  min-height: 2.5rem;
  padding: 0.55rem 0.75rem;
  border: 1px solid rgba(160, 24, 40, 0.18);
  border-radius: 999px;
  background: #fff;
  color: var(--ink, #1C0A0D);
  font: inherit;
  font-size: 0.78rem;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, transform 0.12s;
}

.chat-picker-btn--service {
  border-radius: 0.65rem;
  margin-bottom: 0.35rem;
}

.chat-picker-btn--slot {
  justify-content: center;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.chat-picker-btn:hover,
.chat-picker-btn:focus-visible {
  border-color: var(--wine, #A01828);
  background: rgba(160, 24, 40, 0.04);
}

.chat-picker-btn:active {
  transform: scale(0.98);
}

.chat-picker-btn__name {
  text-align: left;
  line-height: 1.35;
}

.chat-picker-btn__meta {
  flex-shrink: 0;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--wine, #A01828);
}

.chat-diora-datepicker {
  width: 100%;
}

.chat-diora-datepicker .diora-datepicker__trigger {
  width: 100%;
}

.chat-diora-datepicker.is-open .diora-datepicker__panel {
  position: relative;
  left: auto;
  right: auto;
  top: auto;
  bottom: auto;
  width: 100%;
  max-width: none;
  margin-top: 0.45rem;
  box-shadow: none;
  border: 1px solid rgba(160, 24, 40, 0.12);
}

.dock-shell__drawer--chat .diora-select,
.dock-shell__drawer--chat .diora-datepicker {
  width: 100%;
}

@media (max-width: 520px) {
  .diora-select__panel,
  .diora-datepicker__panel {
    position: fixed;
    left: 0.85rem;
    right: 0.85rem;
    top: auto;
    bottom: calc(var(--dock-h) + 0.85rem);
    max-height: min(420px, 58vh);
  }

  .diora-datepicker__panel {
    min-width: 0;
  }
}

/* ── Menu trigger (legacy — hidden, menu lives in dock) ── */
.menu-trigger { display: none !important; }

.lang-pill { display: none !important; }

/* Mega menu content inside dock drawer */
.dock-shell__drawer--menu {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.dock-shell__drawer--menu .mega-menu__head {
  flex-shrink: 0;
  margin-bottom: 0;
}

.dock-shell__drawer--menu .mega-menu__logo { width: 64px; height: auto; }

.dock-shell__drawer--menu .mega-menu__close {
  border: none;
  background: transparent;
  font-size: 1.75rem;
  line-height: 1;
  color: var(--wine);
  cursor: pointer;
  min-width: 2.75rem;
  min-height: 2.75rem;
}

.dock-shell__drawer--menu .dock-drawer__body {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

.mega-menu__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem 1.5rem;
  text-align: left;
}

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

.mega-menu__label {
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 0.85rem;
}

.mega-menu__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.mega-menu__links a {
  font-size: 0.95rem;
  color: var(--ink);
  transition: color 0.2s var(--ease), transform 0.2s var(--ease);
}

.mega-menu__links a:hover {
  color: var(--wine);
  transform: translateX(4px);
}

.mega-menu__cta {
  color: var(--wine) !important;
  font-weight: 600;
}

.mega-menu__address {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 0.75rem;
}

.mega-menu__meta-link {
  display: block;
  font-size: 0.88rem;
  color: var(--ink);
  margin-bottom: 0.35rem;
}

.mega-menu__lang {
  display: none;
}

.mega-menu__label--lang {
  margin-top: 1rem;
}

.mega-menu__lang-row {
  display: flex;
  gap: 0.5rem;
}

.mega-menu__lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.75rem;
  padding: 0.45rem 0.75rem;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid var(--input-line);
  border-radius: var(--radius-pill);
  color: var(--ink-soft);
  transition: all 0.22s var(--ease);
}

.mega-menu__lang-btn:hover,
.mega-menu__lang-btn.is-active {
  background: var(--wine);
  border-color: var(--wine);
  color: #fff;
}

/* ── Preloader ── */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  transition: opacity 0.6s var(--ease), visibility 0.6s var(--ease);
}

.preloader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.preloader__logo {
  position: relative;
  width: 72px;
  height: 72px;
}

.preloader__logo img {
  width: 100%;
  height: 100%;
  animation: preloader-pulse 1.2s ease-in-out infinite;
}

.preloader__ring {
  position: absolute;
  inset: -8px;
  border: 1.5px solid rgba(160, 24, 40, 0.15);
  border-top-color: var(--wine);
  border-radius: 50%;
  animation: preloader-spin 0.9s linear infinite;
}

.preloader__text {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--wine);
}

.preloader__bar {
  width: 120px;
  height: 2px;
  background: rgba(160, 24, 40, 0.12);
  overflow: hidden;
  border-radius: 2px;
}

.preloader__bar span {
  display: block;
  height: 100%;
  width: 40%;
  background: var(--wine);
  animation: preloader-bar 1.1s ease-in-out infinite;
}

@keyframes preloader-spin { to { transform: rotate(360deg); } }
@keyframes preloader-pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.06); } }
@keyframes preloader-bar { 0% { transform: translateX(-100%); } 100% { transform: translateX(280%); } }

/* ── Reveal (subtle — less scroll jank) ── */
.reveal, .reveal-up, .reveal-scale, [data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
  transition-delay: calc(var(--reveal-i, 0) * 0.05s);
}

.reveal-up { transform: translateY(18px); }
.reveal-scale { transform: translateY(10px); }

.reveal.is-visible,
.reveal-up.is-visible,
.reveal-scale.is-visible,
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-up, .reveal-scale, [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

#services-category-img.is-fading { opacity: 0.4; transition: opacity 0.18s var(--ease); }

/* ── Newsletter (flat — no nested card) ── */
.newsletter-section {
  padding: clamp(1.75rem, 4vw, 2.25rem) clamp(1rem, 4vw, 2rem);
  padding-bottom: clamp(1.25rem, 3vw, 1.75rem);
  background: var(--cream);
  min-height: 0;
  border-top: 1px solid var(--input-line);
}

.newsletter-layout {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  max-width: min(920px, 100%);
  margin: 0 auto;
}

.newsletter-layout__copy {
  flex: 1 1 200px;
  min-width: 0;
  text-align: left;
}

.newsletter-layout__copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.5vw, 1.85rem);
  line-height: 1.15;
  color: var(--wine);
  margin: 0.25rem 0 0;
}

.newsletter-layout__form {
  display: flex;
  flex: 1 1 280px;
  align-items: flex-end;
  gap: 0.75rem;
  min-width: min(100%, 300px);
  max-width: 100%;
}

.newsletter-layout__form input[type="email"] {
  flex: 1;
  min-width: 0;
}

.newsletter-layout__form .btn {
  flex-shrink: 0;
  white-space: nowrap;
}

/* Newsletter standalone page */
.newsletter-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  max-width: min(560px, 100%);
  margin: 0 auto;
}

.newsletter-strip__copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.5vw, 1.85rem);
  color: var(--wine);
  margin: 0.25rem 0 0;
}

.newsletter-strip__form {
  display: flex;
  flex: 1 1 100%;
  align-items: flex-end;
  gap: 0.75rem;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 420px;
}

.newsletter-form--inline {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: center;
  max-width: 560px;
  margin: 0 auto;
}

.newsletter-form--inline .form-group { flex: 1; min-width: 220px; }

.newsletter-hint {
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-top: 0.75rem;
}

/* ── Footer legal ── */
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 1.25rem;
  margin: 1.25rem 0 0.75rem;
}

.footer-legal a {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color 0.2s var(--ease);
}

.footer-legal a:hover { color: var(--wine); }

/* ── Accessibility ── */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100000;
  padding: 0.65rem 1rem;
  background: var(--wine);
  color: #fff;
  font-size: 0.85rem;
  border-radius: 0 0 4px 0;
}

.skip-link:focus {
  left: 0;
}

/* ── Legal & content pages ── */
.page-document {
  background: var(--cream);
}

.page-hero {
  padding: calc(3.5rem + var(--dock-safe)) 0 2.25rem;
  text-align: center;
  border-bottom: 1px solid rgba(160, 24, 40, 0.08);
  background: linear-gradient(180deg, rgba(160, 24, 40, 0.03) 0%, transparent 100%);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--wine);
  margin: 0.35rem 0 0;
  line-height: 1.15;
}

.page-hero .lead {
  max-width: 36rem;
  margin: 0.75rem auto 0;
  color: var(--ink-soft);
}

.page-breadcrumb {
  margin-bottom: 1rem;
}

.page-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.page-breadcrumb li + li::before {
  content: '/';
  margin-right: 0.5rem;
  opacity: 0.45;
}

.page-breadcrumb a {
  color: var(--wine);
  text-decoration: none;
}

.page-breadcrumb a:hover {
  text-decoration: underline;
}

.page-content {
  padding: 2rem 0 3rem;
}

.page-prose {
  max-width: 680px;
  margin: 0 auto 2rem;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--ink-soft);
}

.page-prose p {
  margin: 0 0 0.85rem;
}

.page-prose p:last-child {
  margin-bottom: 0;
}

.page-section-head {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--wine);
  margin: 1.35rem 0 0.5rem;
}

.page-section-head:first-child {
  margin-top: 0;
}

.page-faq-q {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--wine);
  margin: 1.25rem 0 0.35rem;
}

.page-faq-q:first-child {
  margin-top: 0;
}

.page-faq-a {
  margin: 0 0 0.75rem;
  padding-left: 0.15rem;
}

.page-prose--faq {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.page-back { text-align: center; margin-top: 2.5rem; }

.page-related {
  max-width: 680px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(160, 24, 40, 0.1);
  text-align: center;
}

.page-related__label {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wine);
  opacity: 0.75;
  margin: 0 0 0.75rem;
}

.page-related__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.page-related__pill {
  display: inline-block;
  padding: 0.4rem 0.85rem;
  font-size: 0.78rem;
  border: 1px solid rgba(160, 24, 40, 0.22);
  border-radius: 999px;
  color: var(--wine);
  text-decoration: none;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}

.page-related__pill:hover {
  background: rgba(160, 24, 40, 0.06);
  border-color: var(--wine);
}

body.is-page .site-main { min-height: 60vh; }

.page-error {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(4rem + var(--dock-safe)) 1.5rem 3rem;
  background: var(--cream);
}

.page-error h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  color: var(--wine);
  margin: 0.5rem 0 0.75rem;
}

.page-error .lead {
  max-width: 28rem;
  margin: 0 auto 1.5rem;
  color: var(--ink-soft);
}


@media (max-width: 480px) {
  .newsletter-layout,
  .newsletter-strip {
    flex-direction: column;
    align-items: stretch;
  }

  .newsletter-layout__form,
  .newsletter-strip__form {
    flex: 1 1 auto;
    min-width: 0;
    flex-direction: column;
    align-items: stretch;
  }

  .newsletter-layout__form .btn {
    width: 100%;
  }
}

/* Override legacy fixed chatbot from main.css — positioning only; dock drawer rules handle visibility */
#dock-chat.chatbot-panel,
.dock-shell .chatbot-panel {
  position: relative !important;
  inset: auto !important;
  bottom: auto !important;
  right: auto !important;
  transform: none !important;
  width: 100% !important;
  max-width: none !important;
  height: auto !important;
  max-height: none !important;
}

.chatbot-panel.is-open {
  transform: none !important;
}

/* ── Tablet: stacked split sections, full-bleed media ── */
@media (max-width: 899px) {
  .section-full--split .section-full__body {
    width: 100%;
    max-width: 100%;
    padding-inline: clamp(1rem, 4vw, 1.5rem);
    padding-block: clamp(1.5rem, 4vw, 2.75rem);
  }

  .section-full__media {
    width: 100%;
    max-width: 100%;
  }

  .section-header--center {
    text-align: left;
  }

  .section-header--center .lead {
    margin-left: 0;
    margin-right: 0;
  }
}

/* ── Mobile overflow & responsive polish ── */
@media (max-width: 767px) {
  .hero-slide__content {
    padding-inline: clamp(1rem, 4vw, 1.5rem);
    max-width: 100%;
  }

  .hero-slide__title {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
    word-break: break-word;
  }

  .marquee-wrap,
  .values-strip,
  .offers-section,
  .services-clean,
  .filter-pills--scroll {
    max-width: 100%;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
  }

  .section-header {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .section-header h2 {
    font-size: clamp(1.65rem, 7vw, 2.25rem);
  }

  .section-quote {
    font-size: clamp(1.1rem, 4.5vw, 1.35rem);
  }

  .about-duo {
    gap: 1.5rem;
    margin-top: 1.75rem;
    padding-top: 1.5rem;
  }

  .filter-pill {
    font-size: 0.58rem !important;
    padding: 0.5rem 0.85rem !important;
  }

  .values-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .offer-card {
    min-width: 0;
  }

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

  .booking-clean {
    max-width: 100%;
    gap: 1.75rem;
  }

  .booking-clean__visual img {
    min-height: 220px;
    max-height: 360px;
  }

  .contact-actions {
    max-width: 100%;
  }

  .icon-links--cream {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

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

  .site-footer__brand {
    padding-bottom: 0.25rem;
  }

  .icon-links--wine {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .site-footer__credits-inner {
    padding-bottom: 0.5rem;
  }

  .site-footer__wordmark {
    height: clamp(36px, 9vw, 52px);
  }

  .contact-map-wrap {
    height: min(45vh, 380px);
    min-height: 240px;
  }

  .dock-shell {
    width: min(100%, calc(100vw - 1rem));
    left: 50%;
    right: auto;
    transform: translate3d(-50%, 0, 0);
  }

  .dock-shell.is-chat-open .dock-shell__drawer--chat {
    max-height: min(88vh, 820px);
  }

  .dock-shell__drawer--chat .chatbot-messages {
    min-height: min(300px, 48vh);
  }

  .dock-shell__drawer--chat .chatbot-quick button {
    min-height: 2.25rem;
    padding: 0.5rem 0.8rem;
    font-size: 0.58rem;
  }

  .chatbot-input input {
    font-size: 16px;
  }

  .mega-menu__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .mega-menu__connect-row {
    flex-direction: column;
    align-items: stretch;
  }

  .icon-links--menu {
    grid-template-columns: repeat(3, 2.85rem);
    width: 100%;
  }

  .lang-icons--menu {
    width: 100%;
    justify-content: flex-start;
  }

  .icon-links--menu .icon-link,
  .lang-icons--menu .lang-icon {
    width: 2.85rem;
    height: 2.85rem;
  }

  .lookup-clean {
    padding-inline: 0;
  }
}

@media (max-height: 500px) and (orientation: landscape) {
  .dock-shell.is-chat-open .dock-shell__drawer--chat {
    max-height: min(70vh, 420px);
  }

  .dock-shell.is-menu-open .dock-shell__drawer--menu {
    max-height: min(65vh, 400px);
  }

  .dock-shell__drawer--chat .chatbot-messages {
    min-height: 100px;
  }

  .dock-shell__drawer--chat .chatbot-quick {
    max-height: 22vh;
    overflow-y: auto;
  }
}

@supports (height: 100dvh) {
  .hero-slider {
    height: 100dvh;
    max-height: 100dvh;
  }
}

@media (hover: none) and (pointer: coarse) {
  .icon-link,
  .lang-icon,
  .dock-nav__item {
    min-width: 2.75rem;
    min-height: 2.75rem;
  }

  .dock-nav__item--cta {
    min-width: 2.85rem;
    min-height: 2.85rem;
  }
}

/* ── Small phones ── */
@media (max-width: 380px) {
  .dock-nav__inner {
    gap: 0.15rem;
    padding: 0.35rem 0.5rem;
  }

  .dock-nav__item {
    width: 2.35rem;
    height: 2.35rem;
  }

  .dock-nav__item--cta {
    width: 2.65rem;
    height: 2.65rem;
  }
}

@media (min-width: 768px) {
  .dock-shell { width: min(380px, calc(100vw - 1.5rem)); }
  .dock-nav__item { width: 2.75rem; height: 2.75rem; }
  .dock-nav__item svg { width: 21px; height: 21px; }
  .dock-nav__item--cta { width: 3rem; height: 3rem; }
}
