/* ═══════════════════════════════════════════════════════════════
   Pilates Ridge — Main Stylesheet
   Brand: #350F17 / #29423D / #D6BABA / #DDD7D3 / #232323
   Fonts: Cormorant Garamond (serif) + Jost (sans) — web only
   ═══════════════════════════════════════════════════════════════ */

:root {
  /* Brand colors */
  --c-wine:      #350F17;
  --c-green:     #29423D;
  --c-powder:    #D6BABA;
  --c-cream:     #DDD7D3;
  --c-ink:       #232323;
  --c-white:     #ffffff;

  /* Derived neutrals */
  --c-bg:        #FAF7F3;
  --c-soft:      rgba(214,186,186,0.25);
  --c-border:    rgba(53,15,23,0.12);
  --c-muted:     rgba(35,35,35,0.6);

  /* Typography */
  --f-serif:     'Cormorant Garamond', 'Times New Roman', Georgia, serif;
  --f-sans:      'Jost', 'Arial Nova', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --container:   1200px;
  --radius-sm:   8px;
  --radius:      16px;
  --radius-lg:   28px;
  --ease:        cubic-bezier(.22,.61,.36,1);
  --shadow-soft: 0 10px 40px rgba(53,15,23,0.08);
  --shadow-lg:   0 30px 80px rgba(53,15,23,0.18);
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-ink);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--f-serif);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: var(--c-wine);
}

/* ── Layout helpers ─────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: clamp(60px, 9vw, 120px) 0; }
.section--wine  { background: var(--c-wine);  color: var(--c-cream); }
.section--wine h2, .section--wine h3 { color: var(--c-cream); }
.section--green { background: var(--c-green); color: var(--c-cream); }
.section--green h2, .section--green h3 { color: var(--c-cream); }
.section--powder{ background: linear-gradient(180deg, var(--c-bg) 0%, var(--c-soft) 100%); }

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--c-green);
  margin-bottom: 18px;
  font-weight: 500;
}
.section--wine .eyebrow, .section--green .eyebrow { color: var(--c-powder); }

.section-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}
.section-lead {
  font-size: 1.08rem;
  max-width: 640px;
  color: var(--c-muted);
  margin-bottom: 48px;
}
.section--wine .section-lead, .section--green .section-lead { color: rgba(221,215,211,0.8); }

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  border-radius: 100px;
  transition: all 0.3s var(--ease);
  cursor: pointer;
  text-transform: uppercase;
  white-space: nowrap;
  border: 1.5px solid transparent;
}
.btn--primary {
  background: var(--c-wine);
  color: var(--c-cream);
}
.btn--primary:hover {
  background: var(--c-ink);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}
.btn--outline {
  border-color: currentColor;
  color: var(--c-wine);
}
.btn--outline:hover {
  background: var(--c-wine);
  color: var(--c-cream);
  border-color: var(--c-wine);
}
.btn--ghost {
  color: var(--c-cream);
  border-color: rgba(221,215,211,0.4);
}
.btn--ghost:hover {
  background: var(--c-cream);
  color: var(--c-wine);
  border-color: var(--c-cream);
}
.btn--large { padding: 18px 36px; font-size: 1rem; }

/* ── Header / Nav ───────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: all 0.3s var(--ease);
  background: rgba(250,247,243,0);
}
.site-header.is-scrolled {
  background: rgba(250,247,243,0.92);
  backdrop-filter: saturate(1.6) blur(14px);
  -webkit-backdrop-filter: saturate(1.6) blur(14px);
  padding: 12px 0;
  box-shadow: 0 1px 0 var(--c-border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--c-wine);
  font-family: var(--f-serif);
  font-size: 1.4rem;
  letter-spacing: 0.15em;
  font-weight: 500;
}
.brand svg { width: 90px; height: 45px; color: var(--c-wine); }
.nav-menu {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-menu a {
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  color: var(--c-ink);
  position: relative;
  padding: 6px 0;
  transition: color 0.25s var(--ease);
}
.nav-menu a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--c-wine);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-menu a:hover { color: var(--c-wine); }
.nav-menu a:hover::after { transform: scaleX(1); }

.burger {
  display: none;
  width: 42px; height: 42px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: var(--c-wine);
  color: var(--c-cream);
}
.burger svg { width: 20px; height: 20px; }

@media (max-width: 900px) {
  .nav-menu { display: none; }
  .nav-menu.is-open {
    display: flex;
    position: absolute;
    top: 100%; left: 16px; right: 16px;
    flex-direction: column;
    padding: 20px;
    background: var(--c-cream);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    align-items: flex-start;
    gap: 18px;
  }
  .burger { display: inline-flex; }
}

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../img/hero-bg.svg') center/cover no-repeat;
  z-index: -1;
  opacity: 0.9;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(250,247,243,0.1) 0%, rgba(250,247,243,0.85) 100%);
  z-index: -1;
}
.hero__inner { max-width: 780px; position: relative; z-index: 1; }
.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border: 1px solid var(--c-wine);
  border-radius: 100px;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-wine);
  margin-bottom: 28px;
  background: rgba(250,247,243,0.6);
  backdrop-filter: blur(6px);
}
.hero__tag::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-green);
}
.hero__title {
  font-size: clamp(2.6rem, 7vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  color: var(--c-wine);
}
.hero__title em {
  font-style: italic;
  color: var(--c-green);
  font-weight: 300;
}
.hero__lead {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  max-width: 540px;
  color: var(--c-ink);
  margin-bottom: 40px;
  line-height: 1.55;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__scroll {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-wine);
  opacity: 0.6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero__scroll::after {
  content: '';
  width: 1px; height: 36px;
  background: currentColor;
  animation: scrollLine 2s var(--ease) infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── About ──────────────────────────────────────────────── */
.about { position: relative; }
.about__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.about__text p + p { margin-top: 18px; }
.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
  padding-top: 36px;
  border-top: 1px solid var(--c-border);
}
.about__stat .num {
  font-family: var(--f-serif);
  font-size: clamp(2.2rem, 4vw, 3rem);
  color: var(--c-wine);
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}
.about__stat .lbl {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-muted);
}
.about__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--c-powder), var(--c-green));
  box-shadow: var(--shadow-lg);
}
.about__visual::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.3) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(53,15,23,0.3) 0%, transparent 60%);
}
.about__visual-monogram {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  color: rgba(250,247,243,0.85);
  width: 160px;
}
.about__visual-slogan {
  position: absolute;
  left: 30px; right: 30px; bottom: 30px;
  color: var(--c-cream);
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
}

@media (max-width: 800px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__stats { grid-template-columns: 1fr 1fr 1fr; }
}

/* ── Directions ─────────────────────────────────────────── */
.directions__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.direction {
  position: relative;
  background: var(--c-cream);
  border-radius: var(--radius);
  padding: 32px 26px 28px;
  border: 1px solid var(--c-border);
  overflow: hidden;
  transition: all 0.4s var(--ease);
}
.direction::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--c-wine);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.direction:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(53,15,23,0.2);
}
.direction:hover::before { transform: scaleX(1); }
.direction__icon {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--c-soft);
  color: var(--c-wine);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.35s var(--ease);
}
.direction:hover .direction__icon {
  background: var(--c-wine);
  color: var(--c-cream);
}
.direction__icon svg { width: 26px; height: 26px; }
.direction__title {
  font-size: 1.45rem;
  font-weight: 500;
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}
.direction__desc {
  font-size: 0.92rem;
  color: var(--c-muted);
  line-height: 1.55;
  margin-bottom: 16px;
}
.direction__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}
.direction__level {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-green);
  font-weight: 500;
}
.direction__level::before {
  content: '';
  width: 18px; height: 1px;
  background: currentColor;
}
.direction__price {
  font-family: var(--f-serif);
  font-size: 1.2rem;
  color: var(--c-wine);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.direction { display: flex; flex-direction: column; }

/* Loaders & empty states */
.grid-loader {
  padding: 80px 24px;
  text-align: center;
  color: var(--c-muted);
  font-style: italic;
  grid-column: 1 / -1;
  border: 1px dashed var(--c-border);
  border-radius: var(--radius);
}
.pricing__empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 24px;
  background: var(--c-cream);
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-border);
}
.pricing__empty p { margin-bottom: 20px; color: var(--c-muted); font-size: 1.05rem; }

/* ── Coaches ────────────────────────────────────────────── */
.coaches__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}
.coach {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--c-cream);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.coach:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.coach__photo {
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, var(--c-powder), var(--c-green));
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.coach__photo img {
  width: 100%; height: 100%; object-fit: cover;
}
.coach__initials {
  font-family: var(--f-serif);
  font-size: 4.5rem;
  color: rgba(250,247,243,0.9);
  letter-spacing: 0.02em;
  font-weight: 300;
}
.coach__info {
  padding: 22px 24px 26px;
}
.coach__name {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 4px;
  color: var(--c-wine);
}
.coach__role {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-green);
  margin-bottom: 14px;
}
.coach__bio {
  font-size: 0.9rem;
  color: var(--c-muted);
  line-height: 1.55;
}

/* ── Schedule ───────────────────────────────────────────── */
#pr-schedule {
  --pr-bg:      var(--c-cream);
  --pr-card:    var(--c-white);
  --pr-border:  var(--c-border);
  --pr-ink:     var(--c-ink);
  --pr-muted:   var(--c-muted);
  --pr-accent:  var(--c-wine);
  --pr-accent2: var(--c-green);
  --pr-warn:    #b85c45;
  --pr-few:     #c4833a;
  font-family: var(--f-sans);
  color: var(--pr-ink);
  max-width: 1000px;
  margin: 0 auto;
}
.pr-tabs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
  margin-bottom: 28px;
  scrollbar-width: none;
}
.pr-tabs::-webkit-scrollbar { display: none; }
.pr-tab {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 18px 10px;
  min-width: 64px;
  border: 1.5px solid var(--pr-border);
  border-radius: var(--radius-sm);
  background: var(--pr-card);
  cursor: pointer;
  transition: all 0.25s var(--ease);
}
.pr-tab:hover { border-color: var(--pr-accent); }
.pr-tab.is-active {
  background: var(--pr-accent);
  border-color: var(--pr-accent);
  color: var(--c-cream);
}
.pr-tab__wd {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 4px;
}
.pr-tab__d {
  font-family: var(--f-serif);
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1;
}
.pr-tab__cnt {
  margin-top: 4px;
  font-size: 0.6rem;
  background: rgba(0,0,0,0.08);
  padding: 2px 8px;
  border-radius: 20px;
}
.pr-tab.is-active .pr-tab__cnt { background: rgba(255,255,255,0.25); }
.pr-tab--next { border-style: dashed; }

.pr-separator {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 26px 0 16px;
  color: var(--pr-muted);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.pr-separator::before, .pr-separator::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--pr-border);
}

.pr-day {
  display: none;
  animation: fadeIn 0.4s var(--ease);
}
.pr-day.is-visible { display: grid; gap: 12px; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.pr-card {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 18px 20px;
  background: var(--pr-card);
  border: 1px solid var(--pr-border);
  border-radius: var(--radius);
  transition: all 0.25s var(--ease);
}
.pr-card:hover {
  border-color: var(--pr-accent);
  transform: translateX(4px);
}
.pr-card__time {
  font-family: var(--f-serif);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--pr-accent);
  line-height: 1;
}
.pr-card__time small {
  display: block;
  font-family: var(--f-sans);
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--pr-muted);
  margin-top: 4px;
  letter-spacing: 0.08em;
}
.pr-card__name {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--pr-ink);
  margin-bottom: 3px;
}
.pr-card__staff {
  font-size: 0.85rem;
  color: var(--pr-muted);
}
.pr-card__slots {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 100px;
  background: var(--c-soft);
  color: var(--pr-accent);
  white-space: nowrap;
  font-weight: 500;
}
.pr-card__slots.is-few { background: rgba(196,131,58,0.15); color: var(--pr-few); }
.pr-card__slots.is-full { background: rgba(184,92,69,0.12); color: var(--pr-warn); }
.pr-card__action {
  display: flex;
  align-items: center;
  gap: 10px;
}
.pr-card__btn {
  padding: 10px 18px;
  background: var(--pr-accent);
  color: var(--c-cream);
  border-radius: 100px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}
.pr-card__btn:hover { background: var(--c-ink); }
.pr-card__btn[disabled] { opacity: 0.4; cursor: not-allowed; }

.pr-loading, .pr-empty {
  padding: 60px 20px;
  text-align: center;
  color: var(--pr-muted);
  font-style: italic;
  border: 1px dashed var(--pr-border);
  border-radius: var(--radius);
}

@media (max-width: 640px) {
  .pr-card {
    grid-template-columns: 1fr;
    gap: 10px;
    text-align: left;
  }
  .pr-card__time {
    display: flex;
    align-items: baseline;
    gap: 12px;
  }
  .pr-card__time small { margin-top: 0; }
  .pr-card__action { justify-content: flex-start; }
}

/* ── Pricing ────────────────────────────────────────────── */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.pricing__card {
  padding: 38px 32px 34px;
  background: var(--c-cream);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}
.pricing__card.is-featured {
  background: var(--c-wine);
  color: var(--c-cream);
  border-color: var(--c-wine);
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}
.pricing__card.is-featured h3 { color: var(--c-cream); }
.pricing__card.is-featured .pricing__note { color: rgba(221,215,211,0.7); }
.pricing__card:hover { transform: translateY(-6px); }
.pricing__card.is-featured:hover { transform: translateY(-6px) scale(1.03); }
.pricing__tag {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 100px;
  background: var(--c-powder);
  color: var(--c-wine);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 500;
}
.pricing__card.is-featured .pricing__tag { background: var(--c-cream); }
.pricing__card h3 {
  font-size: 1.5rem;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}
.pricing__amount {
  font-family: var(--f-serif);
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 6px;
  font-weight: 400;
}
.pricing__amount small {
  font-size: 1rem;
  letter-spacing: 0.05em;
  opacity: 0.7;
}
.pricing__note {
  font-size: 0.82rem;
  color: var(--c-muted);
  margin-bottom: 22px;
  letter-spacing: 0.04em;
}
.pricing__features {
  display: grid;
  gap: 10px;
  text-align: left;
  font-size: 0.9rem;
  margin-bottom: 24px;
}
.pricing__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.pricing__features li::before {
  content: '◆';
  color: var(--c-green);
  font-size: 0.7rem;
  line-height: 1.6;
  flex-shrink: 0;
}
.pricing__card.is-featured .pricing__features li::before { color: var(--c-powder); }

/* ── Contacts ───────────────────────────────────────────── */
.contacts__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(36px, 6vw, 72px);
  align-items: start;
}
.contact-list {
  display: grid;
  gap: 22px;
}
.contact-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.contact-item__icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--c-powder);
  color: var(--c-wine);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-item__icon svg { width: 20px; height: 20px; }
.contact-item__label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 4px;
}
.contact-item__value {
  font-size: 1.05rem;
  color: var(--c-ink);
  line-height: 1.4;
}
.contact-item__value a { border-bottom: 1px solid transparent; transition: border-color 0.25s; }
.contact-item__value a:hover { border-color: var(--c-wine); }

.socials {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.socials--contacts {
  margin-top: 36px;
  gap: 14px;
}
.socials--contacts a {
  width: auto;
  min-height: 48px;
  padding: 0 20px 0 14px;
  border-radius: 100px;
  gap: 10px;
}
.socials--contacts a span {
  font-family: var(--f-sans);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}
.socials a {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--c-cream);
  color: var(--c-wine);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s var(--ease);
  border: 1px solid var(--c-border);
}
.socials a:hover {
  background: var(--c-wine);
  color: var(--c-cream);
  border-color: var(--c-wine);
  transform: translateY(-2px);
}
.socials svg { width: 20px; height: 20px; }

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--c-cream);
  box-shadow: var(--shadow-soft);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

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

/* ── CTA band ───────────────────────────────────────────── */
.cta-band {
  padding: clamp(50px, 8vw, 90px) 24px;
  background: linear-gradient(135deg, var(--c-wine) 0%, var(--c-green) 100%);
  color: var(--c-cream);
  text-align: center;
  border-radius: var(--radius-lg);
  margin: 60px auto;
  max-width: 1100px;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -50%; left: -10%;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214,186,186,0.25), transparent 60%);
}
.cta-band::after {
  content: '';
  position: absolute;
  bottom: -40%; right: -5%;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214,186,186,0.2), transparent 60%);
}
.cta-band > * { position: relative; }
.cta-band h2 {
  color: var(--c-cream);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 14px;
}
.cta-band p {
  font-style: italic;
  font-family: var(--f-serif);
  font-size: 1.2rem;
  margin-bottom: 28px;
  opacity: 0.85;
}

/* ── Footer ─────────────────────────────────────────────── */
.site-footer {
  background: var(--c-wine);
  color: var(--c-cream);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-grid h4 {
  color: var(--c-cream);
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-family: var(--f-sans);
  font-weight: 500;
}
.footer-grid ul { display: grid; gap: 10px; }
.footer-grid a {
  font-size: 0.9rem;
  color: rgba(221,215,211,0.7);
  transition: color 0.25s;
}
.footer-grid a:hover { color: var(--c-cream); }
.footer__brand svg { width: 120px; height: 60px; color: var(--c-powder); margin-bottom: 16px; }
.footer__brand p {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(221,215,211,0.85);
  max-width: 320px;
}
.footer__bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(221,215,211,0.15);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.8rem;
  color: rgba(221,215,211,0.6);
  flex-wrap: wrap;
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
}

/* ── Modal ──────────────────────────────────────────────── */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(35,35,35,0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.25s var(--ease);
}
.modal.is-open { display: flex; }
.modal__box {
  background: var(--c-cream);
  border-radius: var(--radius-lg);
  max-width: 560px;
  width: 100%;
  max-height: 92vh;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
}
.modal__box--wide { max-width: 860px; height: 90vh; }
.modal__close {
  position: absolute;
  top: 14px; right: 14px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(53,15,23,0.08);
  color: var(--c-wine);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: all 0.2s;
}
.modal__close:hover { background: var(--c-wine); color: var(--c-cream); }
.modal__header {
  padding: 28px 32px 18px;
  border-bottom: 1px solid var(--c-border);
}
.modal__title { font-size: 1.6rem; margin-bottom: 6px; }
.modal__subtitle { color: var(--c-muted); font-size: 0.92rem; }
.modal__body {
  padding: 26px 32px 32px;
  overflow-y: auto;
}
.modal__body--frame { padding: 0; flex: 1; }
.modal__body--frame iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ── Form ───────────────────────────────────────────────── */
.form-grid {
  display: grid;
  gap: 16px;
}
.form-row {
  display: grid;
  gap: 6px;
}
.form-row label {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-muted);
  font-weight: 500;
}
.form-row input, .form-row select, .form-row textarea {
  font-family: inherit;
  font-size: 0.98rem;
  padding: 13px 16px;
  border-radius: 10px;
  border: 1px solid var(--c-border);
  background: var(--c-white);
  color: var(--c-ink);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: 0;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  border-color: var(--c-wine);
  box-shadow: 0 0 0 3px rgba(53,15,23,0.08);
}
.form-row textarea { resize: vertical; min-height: 88px; }
.form-msg { padding: 12px 16px; border-radius: 10px; font-size: 0.92rem; margin-top: 8px; }
.form-msg.is-ok { background: rgba(41,66,61,0.08); color: var(--c-green); }
.form-msg.is-err { background: rgba(184,92,69,0.08); color: #b85c45; }

/* --- Logo (PNG) --- */
.brand__logo {
  height: 36px;
  width: auto;
  display: block;
  object-fit: contain;
}
.footer__logo {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

/* --- CTA in nav: ensure readable color over wine background --- */
.nav-menu a.btn.btn--primary,
.nav-menu a.btn.btn--primary:hover,
.nav-menu a.btn.btn--primary:focus {
  color: var(--c-cream) !important;
}
.nav-menu a.btn.btn--primary {
  background: var(--c-wine);
  border-color: var(--c-wine);
}
.nav-menu a.btn.btn--primary:hover {
  background: var(--c-ink);
  border-color: var(--c-ink);
}

/* --- Footer contacts with icons --- */
.footer-contacts { list-style: none; padding: 0; margin: 0; }
.footer-contacts li { margin-bottom: 10px; line-height: 1.5; }
.footer-contacts a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contacts li > svg.footer-ico,
.footer-contacts li > span:first-child { vertical-align: middle; }
.footer-contacts li:first-child {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.footer-contacts a:hover { color: var(--c-powder); }
.footer-ico {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  opacity: 0.85;
}
.footer-contacts a:hover .footer-ico { opacity: 1; }


/* ═══════════════════════════════════════════════════════════════
   Sprint 1 — Trial + Gift + Testimonials + Gallery + FAQ
   ═══════════════════════════════════════════════════════════════ */

/* --- Trial / Перше заняття --- */
.trial__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: start;
}
.trial__list {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: grid;
  gap: 20px;
}
.trial__list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
}
.trial__num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--c-wine);
  color: var(--c-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif, 'Cormorant Garamond', serif);
  font-size: 1.1rem;
  font-weight: 500;
  flex-shrink: 0;
}
.trial__list li strong {
  display: block;
  color: var(--c-ink);
  font-weight: 600;
  margin-bottom: 4px;
  font-size: 1.02rem;
}
.trial__list li span {
  display: block;
  color: var(--c-ink);
  opacity: 0.75;
  font-size: 0.95rem;
  line-height: 1.55;
}

.trial__offer {
  position: sticky;
  top: 100px;
}
.trial__offer-inner {
  background: var(--c-powder);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(53, 15, 23, 0.08);
}
.trial__offer-tag {
  display: inline-block;
  background: var(--c-wine);
  color: var(--c-cream);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.trial__offer-inner h3 {
  font-family: var(--font-serif, 'Cormorant Garamond', serif);
  font-size: 1.85rem;
  color: var(--c-ink);
  margin: 0 0 12px;
  line-height: 1.25;
  font-weight: 400;
}
.trial__offer-inner h3 em {
  color: var(--c-wine);
  font-style: italic;
  font-weight: 500;
}
.trial__offer-inner p {
  color: var(--c-ink);
  opacity: 0.75;
  margin: 0 0 24px;
  font-size: 0.95rem;
}
.trial__offer-inner .btn {
  width: 100%;
  margin-bottom: 12px;
}
.trial__offer-note {
  font-size: 0.85rem !important;
  margin-top: 8px !important;
  margin-bottom: 12px !important;
}

@media (max-width: 860px) {
  .trial__grid { grid-template-columns: 1fr; gap: 40px; }
  .trial__offer { position: static; }
}

/* --- Gift Certificates --- */
.gift__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}
.gift-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(53, 15, 23, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.gift-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--c-wine), var(--c-green));
}
.gift-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(53, 15, 23, 0.12);
}
.gift-card__title {
  font-family: var(--font-serif, 'Cormorant Garamond', serif);
  font-size: 1.3rem;
  color: var(--c-ink);
  margin: 0 0 12px;
  font-weight: 500;
}
.gift-card__amount {
  font-family: var(--font-serif, 'Cormorant Garamond', serif);
  font-size: 2.4rem;
  color: var(--c-wine);
  font-weight: 500;
  margin: 8px 0;
  line-height: 1;
}
.gift-card__currency {
  font-size: 1.1rem;
  opacity: 0.7;
  margin-left: 4px;
}
.gift-card__desc {
  font-size: 0.9rem;
  color: var(--c-ink);
  opacity: 0.7;
  margin: 12px 0 24px;
  line-height: 1.5;
}
.gift-card__btn {
  width: 100%;
}
.gift__cta {
  text-align: center;
  padding: 24px;
}
.gift__cta p {
  margin-bottom: 16px;
  color: var(--c-ink);
  opacity: 0.75;
}

/* --- Testimonials --- */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.testimonial {
  background: var(--c-powder);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.testimonial::before {
  content: '\201C';
  position: absolute;
  top: 8px;
  right: 24px;
  font-family: var(--font-serif, 'Cormorant Garamond', serif);
  font-size: 5rem;
  line-height: 1;
  color: var(--c-wine);
  opacity: 0.15;
}
.testimonial__stars {
  color: var(--c-wine);
  font-size: 1.05rem;
  letter-spacing: 0.1em;
}
.testimonial__quote {
  font-family: var(--font-serif, 'Cormorant Garamond', serif);
  font-size: 1.08rem;
  line-height: 1.55;
  color: var(--c-ink);
  margin: 0;
  font-style: italic;
  font-weight: 400;
}
.testimonial__author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(53, 15, 23, 0.12);
}
.testimonial__name {
  font-weight: 600;
  color: var(--c-ink);
  font-size: 0.95rem;
}
.testimonial__meta {
  font-size: 0.82rem;
  color: var(--c-ink);
  opacity: 0.65;
  letter-spacing: 0.02em;
}

/* --- Gallery --- */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 12px;
  margin-bottom: 32px;
}
.gallery__item {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.gallery__item:hover {
  transform: scale(1.02);
}
.gallery__item--tall {
  grid-row: span 2;
}
.gallery__item--wide {
  grid-column: span 2;
}
.gallery__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--c-powder) 0%, #c9a5a5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-wine);
  position: relative;
}
.gallery__placeholder svg {
  width: 64px;
  height: 64px;
  opacity: 0.45;
}
.gallery__placeholder::after {
  content: attr(data-label);
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  font-size: 0.78rem;
  color: var(--c-wine);
  opacity: 0.7;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.gallery__item figcaption {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 16px;
  background: linear-gradient(180deg, transparent 50%, rgba(53, 15, 23, 0.7) 100%);
  color: #fff;
  font-family: var(--font-serif, 'Cormorant Garamond', serif);
  font-size: 1.15rem;
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery__item:hover figcaption {
  opacity: 1;
}
.gallery__cta {
  text-align: center;
  margin-top: 16px;
}

@media (max-width: 860px) {
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }
  .gallery__item--wide { grid-column: span 2; }
  .gallery__item--tall { grid-row: span 1; }
}

/* --- FAQ --- */
.faq {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq__item {
  background: var(--c-powder);
  border-radius: 12px;
  overflow: hidden;
  transition: background 0.2s ease;
}
.faq__item[open] {
  background: #fff;
  box-shadow: 0 4px 16px rgba(53, 15, 23, 0.08);
}
.faq__item summary {
  cursor: pointer;
  padding: 20px 24px;
  font-weight: 500;
  color: var(--c-ink);
  font-size: 1.02rem;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color 0.2s ease;
}
.faq__item summary::-webkit-details-marker {
  display: none;
}
.faq__item summary::after {
  content: '+';
  font-family: var(--font-serif, 'Cormorant Garamond', serif);
  font-size: 1.6rem;
  color: var(--c-wine);
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq__item[open] summary::after {
  content: '−';
  transform: rotate(180deg);
}
.faq__item summary:hover {
  color: var(--c-wine);
}
.faq__answer {
  padding: 0 24px 22px;
  color: var(--c-ink);
  opacity: 0.8;
  line-height: 1.65;
  font-size: 0.96rem;
}


/* ═══════════════════════════════════════════════════════════════
   Sprint 2 — Direction pages
   ═══════════════════════════════════════════════════════════════ */

/* --- Breadcrumb --- */
.breadcrumb {
  background: var(--c-cream);
  padding: 20px 0;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  border-bottom: 1px solid rgba(53, 15, 23, 0.08);
  margin-top: 72px;
}
.breadcrumb .container {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  color: var(--c-ink);
  opacity: 0.8;
}
.breadcrumb a {
  color: var(--c-wine);
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.breadcrumb a:hover { opacity: 0.7; }
.breadcrumb span { opacity: 0.5; }
.breadcrumb__current {
  color: var(--c-ink);
  font-weight: 500;
  opacity: 1 !important;
}

/* --- Direction hero --- */
.direction-hero {
  background: linear-gradient(135deg, var(--c-wine) 0%, #4a1f28 100%);
  color: var(--c-cream);
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}
.direction-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(214, 186, 186, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}
.direction-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.direction-hero__inner .eyebrow {
  color: var(--c-powder);
  opacity: 0.8;
}
.direction-hero__title {
  font-family: var(--font-serif, 'Cormorant Garamond', serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin: 16px 0 12px;
  font-weight: 400;
  line-height: 1.1;
  color: var(--c-cream);
}
.direction-hero__subtitle {
  font-size: 1.25rem;
  color: var(--c-powder);
  margin: 0 0 20px;
  font-weight: 300;
  line-height: 1.4;
}
.direction-hero__lead {
  font-size: 1.02rem;
  line-height: 1.6;
  opacity: 0.88;
  margin: 0 0 36px;
  max-width: 680px;
}
.direction-hero__meta {
  display: flex;
  gap: 48px;
  margin-bottom: 36px;
  flex-wrap: wrap;
  padding: 20px 0;
  border-top: 1px solid rgba(221, 215, 211, 0.2);
  border-bottom: 1px solid rgba(221, 215, 211, 0.2);
}
.direction-hero__meta > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.meta-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.6;
}
.meta-value {
  font-family: var(--font-serif, 'Cormorant Garamond', serif);
  font-size: 1.2rem;
  color: var(--c-cream);
}
.direction-hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.direction-hero__actions .btn--outline {
  color: var(--c-cream);
  border-color: var(--c-powder);
}
.direction-hero__actions .btn--outline:hover {
  background: var(--c-cream);
  color: var(--c-wine);
}

/* --- For Whom --- */
.direction-for-whom {
  max-width: 760px;
}
.direction-for-whom__text {
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--c-ink);
  margin-top: 12px;
}

/* --- Benefits grid --- */
.direction-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}
.direction-benefit {
  background: var(--c-powder);
  padding: 32px 28px;
  border-radius: 16px;
  position: relative;
  transition: transform 0.3s ease;
}
.direction-benefit:hover {
  transform: translateY(-4px);
}
.direction-benefit__num {
  font-family: var(--font-serif, 'Cormorant Garamond', serif);
  font-size: 2.8rem;
  color: var(--c-wine);
  opacity: 0.25;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 12px;
}
.direction-benefit h3 {
  font-family: var(--font-serif, 'Cormorant Garamond', serif);
  font-size: 1.35rem;
  color: var(--c-ink);
  margin: 0 0 10px;
  font-weight: 500;
}
.direction-benefit p {
  color: var(--c-ink);
  opacity: 0.8;
  line-height: 1.55;
  font-size: 0.95rem;
  margin: 0;
}

/* --- Format steps --- */
.direction-format {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.format-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  counter-reset: step;
}
.format-step {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px solid rgba(53, 15, 23, 0.1);
}
.format-step:last-child {
  border-bottom: none;
}
.format-step__time {
  font-family: var(--font-serif, 'Cormorant Garamond', serif);
  font-size: 1.5rem;
  color: var(--c-wine);
  font-weight: 500;
  line-height: 1.2;
}
.format-step__text {
  color: var(--c-ink);
  line-height: 1.55;
  font-size: 1rem;
  padding-top: 6px;
}
@media (max-width: 860px) {
  .direction-format { grid-template-columns: 1fr; gap: 32px; }
  .format-step { grid-template-columns: 100px 1fr; gap: 16px; }
}

/* --- Direction pricing --- */
.direction-pricing {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.direction-pricing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 32px 0 20px;
}
.direction-price-card {
  background: #fff;
  padding: 28px 20px;
  border-radius: 12px;
  border: 1px solid rgba(53, 15, 23, 0.1);
  transition: border-color 0.2s ease, transform 0.3s ease;
}
.direction-price-card:hover {
  border-color: var(--c-wine);
  transform: translateY(-2px);
}
.direction-price-card__label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-ink);
  opacity: 0.65;
  margin-bottom: 10px;
}
.direction-price-card__amount {
  font-family: var(--font-serif, 'Cormorant Garamond', serif);
  font-size: 2rem;
  color: var(--c-wine);
  font-weight: 500;
  line-height: 1;
}
.direction-price-card__amount small {
  font-size: 1rem;
  opacity: 0.7;
  margin-left: 2px;
}
.direction-price-card__note {
  font-size: 0.85rem;
  color: var(--c-ink);
  opacity: 0.7;
  margin-top: 8px;
}
.direction-pricing__note {
  color: var(--c-ink);
  opacity: 0.75;
  margin-top: 20px;
  font-size: 0.95rem;
}
.direction-pricing__note a {
  color: var(--c-wine);
  text-decoration: underline;
}

/* --- Related directions --- */
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
.related-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px 24px;
  text-decoration: none;
  color: var(--c-ink);
  border: 1px solid rgba(53, 15, 23, 0.1);
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  display: block;
}
.related-card:hover {
  border-color: var(--c-wine);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(53, 15, 23, 0.1);
}
.related-card .eyebrow {
  color: var(--c-wine);
  font-size: 0.7rem;
  margin-bottom: 8px;
}
.related-card h3 {
  font-family: var(--font-serif, 'Cormorant Garamond', serif);
  font-size: 1.5rem;
  margin: 0 0 10px;
  font-weight: 500;
  color: var(--c-ink);
}
.related-card p {
  color: var(--c-ink);
  opacity: 0.75;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0 0 20px;
}
.related-card__arrow {
  position: absolute;
  bottom: 24px;
  right: 24px;
  font-size: 1.4rem;
  color: var(--c-wine);
  transition: transform 0.3s ease;
}
.related-card:hover .related-card__arrow {
  transform: translateX(6px);
}

/* --- Direction CTA --- */
.direction-cta {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 56px 32px;
  background: linear-gradient(135deg, var(--c-powder) 0%, #e9cfcf 100%);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}
.direction-cta::before {
  content: '';
  position: absolute;
  top: -60px;
  left: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(53, 15, 23, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.direction-cta h2 {
  font-family: var(--font-serif, 'Cormorant Garamond', serif);
  font-size: 2.2rem;
  color: var(--c-ink);
  margin: 0 0 12px;
  font-weight: 400;
  position: relative;
}
.direction-cta p {
  color: var(--c-ink);
  opacity: 0.8;
  margin: 0 0 28px;
  font-size: 1.05rem;
  position: relative;
}
.direction-cta .btn {
  position: relative;
}

/* Adjust site-header for pages with breadcrumb directly below */
body:has(.breadcrumb) .site-header {
  border-bottom: 1px solid rgba(53, 15, 23, 0.08);
}

@media (max-width: 720px) {
  .direction-hero { padding: 60px 0 70px; }
  .direction-hero__meta { gap: 24px; }
}


/* --- Direction card as link (Sprint 2) --- */
a.direction {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  position: relative;
  cursor: pointer;
}
a.direction:hover {
  transform: translateY(-4px);
}
.direction__more {
  margin-top: auto;
  padding-top: 16px;
  font-size: 0.85rem;
  color: var(--c-wine);
  letter-spacing: 0.04em;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.3s ease;
  opacity: 0.9;
}
a.direction:hover .direction__more {
  gap: 10px;
}


/* ============================================================
   SPRINT 3 — PROGRAM LANDING PAGES (prenatal / postnatal / back-pain)
   ============================================================ */

/* Program hero — schemu like direction-hero but softer (powder) */
.program-hero {
  background: linear-gradient(135deg, var(--c-powder) 0%, #E8D5D0 100%);
  color: var(--c-ink);
  padding: 64px 0 72px;
  position: relative;
  overflow: hidden;
}
.program-hero::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 50%;
  height: 180%;
  background: radial-gradient(ellipse, rgba(53,15,23,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.program-hero__tag {
  display: inline-block;
  background: var(--c-wine);
  color: var(--c-cream);
  padding: 6px 14px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  margin-bottom: 18px;
  font-weight: 600;
}
.program-hero__title {
  font-family: var(--font-display, 'Another Shabby', Georgia, serif);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.05;
  margin: 0 0 14px;
  color: var(--c-wine);
  max-width: 720px;
}
.program-hero__subtitle {
  font-size: 1.2rem;
  color: var(--c-green);
  margin: 0 0 18px;
  font-weight: 500;
  max-width: 640px;
}
.program-hero__lead {
  font-size: 1.02rem;
  line-height: 1.7;
  max-width: 620px;
  color: var(--c-ink);
  opacity: 0.9;
  margin: 0 0 28px;
}
.program-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* "це про тебе якщо" list */
.program-foryou {
  background: #fff;
  border-left: 4px solid var(--c-wine);
  padding: 28px 32px;
  margin-top: 32px;
}
.program-foryou__heading {
  font-family: var(--font-display, 'Another Shabby', Georgia, serif);
  font-size: 1.3rem;
  color: var(--c-wine);
  margin: 0 0 16px;
}
.program-foryou__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.program-foryou__list li {
  position: relative;
  padding-left: 28px;
  line-height: 1.55;
  font-size: 0.98rem;
}
.program-foryou__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  background: var(--c-green);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: bold;
  top: 2px;
}

/* Program approach steps */
.program-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 36px;
}
.program-step {
  background: #fff;
  padding: 28px 24px;
  border: 1px solid #E8DEDA;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.program-step__num {
  font-family: var(--font-display, 'Another Shabby', Georgia, serif);
  font-size: 2.6rem;
  line-height: 1;
  color: var(--c-wine);
  opacity: 0.3;
  margin-bottom: 4px;
}
.program-step__title {
  font-family: var(--font-display, 'Another Shabby', Georgia, serif);
  font-size: 1.2rem;
  color: var(--c-ink);
  margin: 0;
}
.program-step__desc {
  font-size: 0.94rem;
  line-height: 1.6;
  color: var(--c-ink);
  opacity: 0.85;
  margin: 0;
}

/* Program benefits */
.program-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 32px;
}
.program-benefit {
  background: var(--c-cream);
  padding: 22px 20px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.program-benefit__title {
  font-family: var(--font-display, 'Another Shabby', Georgia, serif);
  font-size: 1.05rem;
  color: var(--c-wine);
  margin: 0;
}
.program-benefit__desc {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--c-ink);
  opacity: 0.85;
  margin: 0;
}

/* Program trainer block */
.program-trainer {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  align-items: center;
  background: #fff;
  padding: 36px 36px;
  margin-top: 32px;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.program-trainer__visual {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-powder), var(--c-wine));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-cream);
  font-family: var(--font-display, 'Another Shabby', Georgia, serif);
  font-size: 3rem;
  flex-shrink: 0;
}
.program-trainer__initials {
  letter-spacing: 0.05em;
}
.program-trainer__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.program-trainer__name {
  font-family: var(--font-display, 'Another Shabby', Georgia, serif);
  font-size: 1.5rem;
  color: var(--c-wine);
  margin: 0;
}
.program-trainer__cred {
  font-size: 0.88rem;
  color: var(--c-green);
  font-weight: 500;
  letter-spacing: 0.03em;
  margin: 0;
}
.program-trainer__quote {
  font-style: italic;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--c-ink);
  opacity: 0.9;
  border-left: 3px solid var(--c-powder);
  padding-left: 16px;
  margin: 4px 0 0;
}

/* Client stories */
.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  margin-top: 32px;
}
.story-card {
  background: #fff;
  border: 1px solid #EAE0DC;
  padding: 28px 26px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.story-card::before {
  content: "\201C";
  position: absolute;
  top: 6px;
  left: 14px;
  font-family: Georgia, serif;
  font-size: 4.5rem;
  color: var(--c-powder);
  line-height: 1;
  opacity: 0.7;
}
.story-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(53,15,23,0.08);
}
.story-card__quote {
  font-size: 0.96rem;
  line-height: 1.65;
  color: var(--c-ink);
  margin: 0;
  position: relative;
  z-index: 1;
  padding-top: 8px;
  flex-grow: 1;
}
.story-card__footer {
  border-top: 1px solid #EAE0DC;
  padding-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.story-card__name {
  font-family: var(--font-display, 'Another Shabby', Georgia, serif);
  font-size: 1.05rem;
  color: var(--c-wine);
  margin: 0;
}
.story-card__meta {
  font-size: 0.82rem;
  color: var(--c-ink);
  opacity: 0.7;
  margin: 0;
  letter-spacing: 0.02em;
}

/* Mobile adjustments */
@media (max-width: 720px) {
  .program-trainer {
    grid-template-columns: 1fr;
    padding: 28px 22px;
    gap: 20px;
    text-align: center;
  }
  .program-trainer__visual {
    margin: 0 auto;
    width: 160px;
    height: 160px;
    font-size: 2.4rem;
  }
  .program-trainer__quote {
    text-align: left;
  }
  .program-hero {
    padding: 48px 0 56px;
  }
  .program-foryou {
    padding: 22px 20px;
  }
}


/* ============================================================
   SPRINT 4 — Events + B2B
   ============================================================ */

/* Events homepage section */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.event-card {
  background: #fff;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid #EAE0DC;
  border-top: 4px solid var(--c-wine);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.event-card--retreat {
  border-top-color: var(--c-green);
  background: linear-gradient(180deg, #F7F3F0 0%, #fff 40%);
}
.event-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(53,15,23,0.08);
}
.event-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.event-card__tag {
  background: var(--c-wine);
  color: var(--c-cream);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  font-weight: 600;
}
.event-card--retreat .event-card__tag {
  background: var(--c-green);
}
.event-card__date {
  font-size: 0.82rem;
  color: var(--c-ink);
  opacity: 0.7;
  font-weight: 500;
}
.event-card__title {
  font-family: var(--font-display, 'Another Shabby', Georgia, serif);
  font-size: 1.25rem;
  color: var(--c-wine);
  margin: 0;
  line-height: 1.2;
}
.event-card__short {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--c-ink);
  opacity: 0.88;
  margin: 0;
  flex-grow: 1;
}
.event-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 14px;
  border-top: 1px solid #EFE4E0;
  font-size: 0.82rem;
  color: var(--c-ink);
  opacity: 0.75;
}
.event-card__price {
  color: var(--c-wine);
  font-weight: 600;
  opacity: 1;
  margin-left: auto;
}
.event-card__more {
  color: var(--c-wine);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  margin-top: 4px;
}
.event-card__more:hover {
  text-decoration: underline;
}

/* Events page hero */
.events-hero {
  background: linear-gradient(135deg, var(--c-green) 0%, #1F322E 100%);
  color: var(--c-cream);
  padding: 72px 0;
  margin-top: 72px;
}
.breadcrumb + .events-hero {
  margin-top: 0;
}
.events-hero__title {
  font-family: var(--font-display, 'Another Shabby', Georgia, serif);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin: 0 0 16px;
  color: var(--c-cream);
}
.events-hero__lead {
  font-size: 1.08rem;
  line-height: 1.65;
  max-width: 640px;
  opacity: 0.92;
  margin: 0;
}

/* Event filter tabs */
.events-filter {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  justify-content: center;
}
.events-filter__btn {
  background: transparent;
  border: 1px solid var(--c-wine);
  color: var(--c-wine);
  padding: 10px 22px;
  font-family: inherit;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: 2px;
}
.events-filter__btn:hover {
  background: rgba(53,15,23,0.06);
}
.events-filter__btn.is-active {
  background: var(--c-wine);
  color: var(--c-cream);
}

/* Full event card (events page) */
.events-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.event-full {
  background: #fff;
  padding: 36px 34px;
  border: 1px solid #EAE0DC;
  border-left: 5px solid var(--c-wine);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.event-full--retreat {
  border-left-color: var(--c-green);
  background: linear-gradient(180deg, #F7F3F0 0%, #fff 60%);
}
.event-full__head {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.event-full__tag {
  align-self: flex-start;
  background: var(--c-wine);
  color: var(--c-cream);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  font-weight: 600;
}
.event-full--retreat .event-full__tag {
  background: var(--c-green);
}
.event-full__title {
  font-family: var(--font-display, 'Another Shabby', Georgia, serif);
  font-size: 1.75rem;
  color: var(--c-wine);
  margin: 0;
  line-height: 1.15;
}
.event-full__meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  padding: 20px 22px;
  background: var(--c-cream);
  border-radius: 3px;
}
.event-full__meta > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.event-full__meta strong {
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-ink);
  opacity: 0.6;
  font-weight: 600;
}
.event-full__meta span {
  font-size: 0.98rem;
  color: var(--c-ink);
}
.event-full__price {
  color: var(--c-wine) !important;
  font-weight: 600;
}
.event-full__desc {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--c-ink);
  opacity: 0.9;
  margin: 0;
}
.event-full__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Events archive info */
.events-archive {
  margin-top: 64px;
  padding: 40px 36px;
  background: var(--c-cream);
  border-radius: 4px;
}
.events-archive h2 {
  font-family: var(--font-display, 'Another Shabby', Georgia, serif);
  font-size: 1.6rem;
  color: var(--c-wine);
  margin: 0 0 20px;
}
.events-archive__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.events-archive__grid strong {
  display: block;
  font-size: 0.92rem;
  color: var(--c-wine);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.events-archive__grid p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--c-ink);
  opacity: 0.85;
  margin: 0;
}

/* ===== B2B page ===== */
.b2b-hero {
  background: linear-gradient(135deg, #350F17 0%, #4A1F28 100%);
  color: var(--c-cream);
  padding: 72px 0;
  margin-top: 72px;
}
.breadcrumb + .b2b-hero {
  margin-top: 0;
}
.b2b-hero__inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: center;
}
.b2b-hero__tag {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  color: var(--c-cream);
  padding: 6px 14px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  margin-bottom: 18px;
  font-weight: 600;
}
.b2b-hero__title {
  font-family: var(--font-display, 'Another Shabby', Georgia, serif);
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  line-height: 1.1;
  margin: 0 0 18px;
  color: var(--c-cream);
}
.b2b-hero__lead {
  font-size: 1.05rem;
  line-height: 1.7;
  opacity: 0.92;
  margin: 0 0 28px;
  max-width: 560px;
}
.b2b-hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.b2b-hero__ctas .btn--outline {
  border-color: var(--c-cream);
  color: var(--c-cream);
}
.b2b-hero__ctas .btn--outline:hover {
  background: var(--c-cream);
  color: var(--c-wine);
}
.b2b-hero__stats {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.b2b-stat {
  background: rgba(255,255,255,0.08);
  padding: 20px 24px;
  border-radius: 3px;
  border-left: 3px solid var(--c-powder);
}
.b2b-stat__num {
  display: block;
  font-family: var(--font-display, 'Another Shabby', Georgia, serif);
  font-size: 2.4rem;
  line-height: 1;
  color: var(--c-cream);
  margin-bottom: 6px;
}
.b2b-stat__label {
  display: block;
  font-size: 0.9rem;
  opacity: 0.88;
  line-height: 1.4;
}

/* B2B packages */
.b2b-packages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.b2b-package {
  background: #fff;
  padding: 32px 30px;
  border: 1px solid #EAE0DC;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  transition: transform 0.3s ease;
}
.b2b-package:hover {
  transform: translateY(-4px);
}
.b2b-package--featured {
  background: linear-gradient(180deg, #FDF7F3 0%, #fff 40%);
  border-color: var(--c-wine);
  box-shadow: 0 12px 40px rgba(53,15,23,0.1);
  transform: scale(1.02);
}
.b2b-package__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-wine);
  color: var(--c-cream);
  padding: 6px 18px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  font-weight: 600;
  white-space: nowrap;
}
.b2b-package__head {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.b2b-package__tag {
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-green);
  font-weight: 600;
}
.b2b-package__title {
  font-family: var(--font-display, 'Another Shabby', Georgia, serif);
  font-size: 1.5rem;
  color: var(--c-wine);
  margin: 0;
  line-height: 1.15;
}
.b2b-package__desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--c-ink);
  opacity: 0.88;
  margin: 0;
  flex-grow: 1;
}
.b2b-package__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid #EFE4E0;
  padding-top: 16px;
}
.b2b-package__features li {
  position: relative;
  padding-left: 22px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--c-ink);
}
.b2b-package__features li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--c-wine);
  font-weight: bold;
}
.b2b-package__price {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid #EFE4E0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.b2b-package__price-label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-ink);
  opacity: 0.6;
  font-weight: 600;
}
.b2b-package__price-num {
  font-family: var(--font-display, 'Another Shabby', Georgia, serif);
  font-size: 1.75rem;
  color: var(--c-wine);
  line-height: 1;
}
.b2b-package__price-meta {
  font-size: 0.82rem;
  color: var(--c-ink);
  opacity: 0.75;
}

/* B2B cases */
.b2b-cases {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.b2b-case {
  background: #fff;
  padding: 26px 24px;
  border-left: 3px solid var(--c-wine);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.b2b-case__logo {
  font-family: var(--font-display, 'Another Shabby', Georgia, serif);
  font-size: 1.1rem;
  color: var(--c-wine);
  letter-spacing: 0.03em;
}
.b2b-case blockquote {
  font-size: 0.96rem;
  line-height: 1.65;
  color: var(--c-ink);
  font-style: italic;
  margin: 0;
  padding: 0;
  opacity: 0.92;
}
.b2b-case cite {
  font-size: 0.85rem;
  color: var(--c-ink);
  opacity: 0.7;
  font-style: normal;
}

/* B2B form */
.b2b-form-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  background: #fff;
  padding: 48px 46px;
  border: 1px solid #EAE0DC;
  border-radius: 4px;
  box-shadow: 0 8px 30px rgba(53,15,23,0.06);
}
.b2b-form-wrap__intro {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.b2b-form-wrap__intro p {
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--c-ink);
  opacity: 0.88;
}
.b2b-form-wrap__contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
}
.b2b-form-wrap__contact div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.b2b-form-wrap__contact strong {
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-ink);
  opacity: 0.6;
}
.b2b-form-wrap__contact a {
  color: var(--c-wine);
  font-size: 1rem;
  text-decoration: none;
  font-weight: 500;
}
.b2b-form-wrap__contact a:hover {
  text-decoration: underline;
}
.b2b-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.b2b-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--c-ink);
  opacity: 0.85;
}
.b2b-form label input,
.b2b-form label select,
.b2b-form label textarea {
  font-family: inherit;
  font-size: 0.96rem;
  padding: 10px 12px;
  border: 1px solid #D8C8C4;
  background: #fff;
  border-radius: 2px;
  color: var(--c-ink);
  transition: border-color 0.2s ease;
}
.b2b-form label input:focus,
.b2b-form label select:focus,
.b2b-form label textarea:focus {
  outline: none;
  border-color: var(--c-wine);
}
.b2b-form__wide {
  grid-column: 1 / -1;
}
.b2b-form__submit {
  grid-column: 1 / -1;
  justify-self: flex-start;
  margin-top: 4px;
}

/* Mobile */
@media (max-width: 900px) {
  .b2b-hero__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .b2b-form-wrap {
    grid-template-columns: 1fr;
    padding: 32px 26px;
    gap: 32px;
  }
  .b2b-package--featured {
    transform: none;
  }
}
@media (max-width: 560px) {
  .b2b-form {
    grid-template-columns: 1fr;
  }
  .event-full {
    padding: 28px 22px;
  }
  .event-full__meta {
    padding: 16px;
  }
  .events-archive {
    padding: 28px 22px;
  }
}


/* ============================================================
   SPRINT 5 — HOMEPAGE PROGRAMS SECTION
   ============================================================ */

.programs__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
  margin-top: 48px;
}

.program-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 36px 30px 32px;
  background: #fff;
  border: 1px solid #EAE0DC;
  border-radius: 4px;
  text-decoration: none;
  color: var(--c-ink);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}
.program-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--c-wine) 0%, var(--c-powder) 100%);
  opacity: 0.85;
}
.program-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(53, 15, 23, 0.12);
  border-color: var(--c-powder);
}
.program-card__icon {
  width: 56px;
  height: 56px;
  color: var(--c-wine);
  margin-bottom: 4px;
}
.program-card__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.program-card__tag {
  display: inline-block;
  align-self: flex-start;
  background: var(--c-cream);
  color: var(--c-wine);
  padding: 4px 12px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 2px;
}
.program-card h3 {
  font-family: var(--font-display, 'Another Shabby', Georgia, serif);
  font-size: 1.5rem;
  color: var(--c-wine);
  margin: 2px 0 0;
  line-height: 1.15;
}
.program-card p {
  font-size: 0.96rem;
  line-height: 1.6;
  color: var(--c-ink);
  opacity: 0.85;
  margin: 0;
  flex-grow: 1;
}
.program-card__arrow {
  color: var(--c-wine);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  margin-top: 8px;
  align-self: flex-start;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.program-card:hover .program-card__arrow {
  border-bottom-color: var(--c-wine);
  transform: translateX(3px);
}

.programs__footnote {
  margin-top: 36px;
  text-align: center;
  font-size: 0.94rem;
  color: var(--c-ink);
  opacity: 0.8;
}
.programs__footnote .link-btn {
  background: none;
  border: none;
  color: var(--c-wine);
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  font: inherit;
  border-bottom: 1px solid currentColor;
}

@media (max-width: 720px) {
  .programs__grid {
    gap: 18px;
  }
  .program-card {
    padding: 28px 24px;
  }
  .program-card h3 {
    font-size: 1.35rem;
  }
}


/* ============================================================
   SPRINT 5 — CONTACTS SOCIALS (ICON-ONLY VARIANT)
   ============================================================ */
.socials--contacts {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(53, 15, 23, 0.12);
}
.socials--contacts .socials__label {
  font-family: var(--f-sans);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-ink);
  opacity: 0.75;
  font-weight: 500;
}
.socials--contacts .socials__list {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.socials--contacts .socials__list a {
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--c-wine);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(53, 15, 23, 0.15);
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  text-decoration: none;
}
.socials--contacts .socials__list a:hover {
  background: var(--c-wine);
  color: var(--c-cream);
  border-color: var(--c-wine);
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(53, 15, 23, 0.2);
}
.socials--contacts .socials__list svg {
  width: 22px;
  height: 22px;
  display: block;
}
