:root {
  --cream: #FAF6F0;
  --charcoal: #2E2E2E;
  --orange: #FF6B1A;
  --purple: #7B3FA0;
  --tan: #F2E2C4;
  --muted: #6B6259;
  --ink-70: rgba(46, 46, 46, 0.7);
  --border: rgba(46, 46, 46, 0.14);
  --container: 1200px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--charcoal);
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; font-weight: 400; margin: 0; }
p { margin: 0; line-height: 1.7; }
a { color: var(--orange); text-decoration: none; }
a:hover { color: var(--purple); }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }

.eyebrow { display: inline-block; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--purple); }
.eyebrow--light { color: var(--orange); }
.eyebrow-small { font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; color: #8A7F72; }

.badge {
  display: inline-flex; align-items: center; align-self: flex-start; background: var(--orange); color: #fff;
  font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase; padding: 7px 12px; border-radius: 2px;
}

.btn {
  display: inline-block; border-radius: 2px; padding: 14px 24px; font-size: 14.5px; font-weight: 500;
  border: 1px solid transparent; cursor: pointer; font-family: inherit;
}
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--charcoal); color: #fff; }
.btn-outline { background: transparent; color: var(--charcoal); border-color: rgba(46,46,46,0.3); }
.btn-outline:hover { border-color: var(--orange); color: var(--orange); }
.btn-outline-light { background: transparent; color: var(--cream); border-color: rgba(250,246,240,0.55); }
.btn-outline-light:hover { background: rgba(250,246,240,0.12); }
.btn-dark { background: var(--charcoal); color: var(--cream); border: 0; }
.btn-dark:hover { background: var(--orange); color: #fff; }
.btn-block { display: block; width: 100%; text-align: center; }

.section { max-width: var(--container); margin: 0 auto; padding: 56px 20px; }
.section--tan { background: var(--tan); }
.section--dark { background: var(--charcoal); color: var(--cream); }
.section--dark .eyebrow { color: var(--orange); }
.section--dark h2, .section--dark h1 { color: var(--cream); }
.section--dark p { color: rgba(250, 246, 240, 0.85); }
.page-header { max-width: var(--container); margin: 0 auto; padding: 56px 20px 44px; }
.page-header h1 { font-size: 40px; line-height: 1.08; margin-top: 12px; max-width: 22ch; }
.page-header__lead { font-size: 16px; color: var(--muted); max-width: 52ch; margin-top: 16px; }

/* ── Header ────────────────────────────────────────────────────────── */

.site-header {
  position: sticky; top: 0; z-index: 20; background: rgba(250,246,240,0.94);
  border-bottom: 1px solid var(--border);
}
.site-header__inner {
  max-width: var(--container); margin: 0 auto; padding: 14px 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.site-header__brand { display: flex; align-items: center; gap: 10px; }
.site-header__logo { height: 38px; width: auto; }
.site-header__wordmark { display: flex; flex-direction: column; line-height: 1; }
.site-header__name { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 500; letter-spacing: 0.06em; color: var(--charcoal); }
.site-header__tag { font-size: 8.5px; letter-spacing: 0.24em; color: #8A7F72; margin-top: 3px; }

.site-header__toggle { background: none; border: 0; padding: 6px; cursor: pointer; position: relative; width: 34px; height: 34px; }
.site-header__toggle span {
  position: absolute; left: 6px; width: 22px; height: 2px; background: var(--charcoal);
  transition: transform .2s ease, opacity .15s ease, top .2s ease;
}
.site-header__toggle span:nth-child(1) { top: 11px; }
.site-header__toggle span:nth-child(2) { top: 16px; }
.site-header__toggle span:nth-child(3) { top: 21px; }
.site-header__toggle[aria-expanded="true"] span:nth-child(1) { top: 16px; transform: rotate(45deg); }
.site-header__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.site-header__toggle[aria-expanded="true"] span:nth-child(3) { top: 16px; transform: rotate(-45deg); }

.site-header__nav {
  position: fixed; inset: 61px 0 0 0; background: var(--cream); z-index: 19;
  display: flex; flex-direction: column; gap: 4px; padding: 20px;
  transform: translateY(-8px); opacity: 0; pointer-events: none; transition: opacity .15s ease, transform .15s ease;
}
.site-header__nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
.site-header__nav a { color: var(--charcoal); font-size: 16px; padding: 12px 4px; border-bottom: 1px solid var(--border); }
.site-header__nav a.is-active { color: var(--orange); }
.site-header__nav a.btn { color: #fff; padding: 14px 24px; border-bottom: 0; }
.site-header__nav .btn { margin-top: 12px; text-align: center; }

@media (min-width: 900px) {
  .site-header__toggle { display: none; }
  .site-header__nav {
    position: static; inset: auto; background: none; display: flex; flex-direction: row;
    align-items: center; gap: 22px; padding: 0; opacity: 1; pointer-events: auto; transform: none;
  }
  .site-header__nav a { font-size: 14.5px; border-bottom: 2px solid transparent; padding: 4px 0; white-space: nowrap; }
  .site-header__nav a.is-active { border-bottom-color: var(--orange); }
  .site-header__nav a.btn { padding: 12px 20px; border-bottom: 0; }
  .site-header__nav .btn { margin-top: 0; }
  .page-header h1 { font-size: 60px; }
}

/* ── Footer ────────────────────────────────────────────────────────── */

.site-footer { background: var(--tan); border-top: 1px solid var(--border); }
.site-footer__inner {
  max-width: var(--container); margin: 0 auto; padding: 48px 20px 24px;
  display: grid; gap: 32px; grid-template-columns: 1fr;
}
.site-footer__brand { display: flex; gap: 16px; align-items: center; }
.site-footer__brand img { height: 48px; width: auto; flex: none; }
.site-footer__name { font-family: 'Cormorant Garamond', serif; font-size: 24px; letter-spacing: 0.06em; }
.site-footer__tag { font-size: 9px; letter-spacing: 0.24em; color: #8A7F72; margin: 4px 0 10px; }
.site-footer__brand p { font-size: 14px; color: var(--muted); max-width: 26ch; }
.site-footer__label { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: #8A7F72; margin-bottom: 10px; }
.site-footer__inner p { font-size: 13px; line-height: 1.6; }
.site-footer__address { max-width: 20ch; }
.site-footer__links { display: flex; gap: 14px; margin-top: 8px; font-size: 13px; }
.site-footer__bottom {
  max-width: var(--container); margin: 0 auto; padding: 16px 20px 28px; border-top: 1px solid var(--border);
  font-size: 13px; color: var(--muted);
  display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: space-between;
}
.site-footer__legal a { color: var(--muted); text-decoration: none; }
.site-footer__legal a:hover { color: var(--orange); }
@media (min-width: 900px) {
  .site-footer__inner { grid-template-columns: 1.4fr 1fr 1fr; }
}

/* ── Hero ──────────────────────────────────────────────────────────── */

.hero { position: relative; height: 520px; overflow: hidden; background: var(--charcoal); }
.hero__slider, .hero__slide { position: absolute; inset: 0; }
.hero__slide { opacity: 0; transition: opacity 1s ease; }
.hero__slide.is-active { opacity: 1; }
.hero__slide img { width: 100%; height: 100%; object-fit: cover; }
.hero__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(46,46,46,0.55) 0%, rgba(46,46,46,0.35) 45%, rgba(46,46,46,0.65) 100%); }
.hero__dots { position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 2; }
.hero__dot { width: 8px; height: 8px; border-radius: 50%; border: 1px solid rgba(250,246,240,0.7); background: transparent; padding: 0; cursor: pointer; }
.hero__dot.is-active { background: #fff; }
.hero__content {
  position: relative; z-index: 1; max-width: var(--container); margin: 0 auto; padding: 0 20px;
  height: 100%; display: flex; flex-direction: column; justify-content: center;
}
.hero__content h1 { font-size: 40px; line-height: 1.05; color: var(--cream); margin: 18px 0 0; max-width: 16ch; }
.hero__subhead { font-size: 16px; line-height: 1.6; color: rgba(250,246,240,0.9); max-width: 46ch; margin-top: 16px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
@media (min-width: 900px) {
  .hero { height: 640px; }
  .hero__content h1 { font-size: 68px; }
  .hero__subhead { font-size: 18px; }
}

.hero-divider { display: flex; flex-direction: column; }
.hero-divider span:nth-child(1) { height: 22px; background: var(--orange); }
.hero-divider span:nth-child(2) { height: 10px; background: var(--cream); }
.hero-divider span:nth-child(3) { height: 22px; background: var(--orange); }

/* ── Studio section ────────────────────────────────────────────────── */

.studio__grid { display: grid; gap: 40px; align-items: center; }
.studio h2 { font-size: 32px; line-height: 1.14; margin-top: 14px; max-width: 20ch; }
.studio p { color: #4A443D; font-size: 16px; margin-top: 18px; }
.studio__highlight { font-weight: 700; }
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; border-top: 1px solid var(--border); padding-top: 22px; }
.stat__number { display: block; font-family: 'Cormorant Garamond', serif; font-size: 30px; color: var(--orange); }
.stat__label { display: block; font-size: 12.5px; color: var(--muted); margin-top: 6px; }
.studio__photos { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.studio__photo { width: 100%; height: 140px; object-fit: cover; }
.studio__photo--wide { grid-column: 1 / 3; height: 200px; }
@media (min-width: 900px) {
  .studio__grid { grid-template-columns: 1.05fr 0.95fr; gap: 70px; }
  .studio h2 { font-size: 42px; }
}

/* ── I corsi (home) ────────────────────────────────────────────────── */

.section__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 30px; }
.section__head h2 { font-size: 32px; margin-top: 10px; }
.link-arrow { font-size: 14px; border-bottom: 1px solid var(--charcoal); padding-bottom: 4px; white-space: nowrap; }
.link-arrow:hover { color: var(--orange); border-color: var(--orange); }
.corsi-grid { display: grid; gap: 14px; grid-template-columns: 1fr; }
.corsi-card {
  text-align: left; background: var(--cream); border-top: 3px solid var(--orange); padding: 24px 22px 26px;
  display: flex; flex-direction: column; min-height: 190px; color: var(--charcoal);
}
.corsi-card:hover { background: #fff; }
.corsi-card__level { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: #8A7F72; }
.corsi-card__name { font-family: 'Cormorant Garamond', serif; font-size: 26px; margin-top: 12px; }
.corsi-card__claim { font-size: 14px; line-height: 1.6; color: #4A443D; margin-top: 10px; }
.corsi-card__durata { margin-top: auto; padding-top: 16px; font-size: 13px; color: var(--muted); }
@media (min-width: 700px) { .corsi-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .corsi-grid { grid-template-columns: repeat(3, 1fr); } }

/* ── Prossimo ritiro ───────────────────────────────────────────────── */

.retreat { position: relative; overflow: hidden; background: var(--charcoal); color: var(--cream); }
.retreat__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.9; }
.retreat__scrim { position: absolute; inset: 0; background: rgba(46, 46, 46, 0.55); }
.retreat .eyebrow--light { color: var(--orange); }
.retreat p { color: rgba(250, 246, 240, 0.9); margin-top: 18px; }
.retreat .btn-outline-light { margin-top: 28px; }
.retreat__grid {
  position: relative; z-index: 1; max-width: var(--container); margin: 0 auto; padding: 56px 20px;
  display: grid; gap: 32px; align-items: center;
}
.retreat h2 { font-size: 34px; line-height: 1.1; margin-top: 12px; color: var(--cream); }
.retreat__card { background: var(--cream); color: var(--charcoal); padding: 28px; }
.retreat__dates { font-family: 'Cormorant Garamond', serif; font-size: 28px; }
.retreat__facts { display: grid; gap: 10px; margin-top: 20px; border-top: 1px solid var(--border); padding-top: 18px; }
.retreat__fact { display: flex; justify-content: space-between; gap: 16px; font-size: 14px; }
.retreat__fact span:first-child { color: var(--muted); }
.retreat__card .btn { margin-top: 20px; }
@media (min-width: 900px) { .retreat__grid { grid-template-columns: 1fr 1fr; gap: 70px; } .retreat h2 { font-size: 44px; } }

/* ── Community / testimonials ──────────────────────────────────────── */

.community h2 { font-size: 30px; margin-top: 12px; }
.community__grid { display: grid; gap: 30px; margin-top: 34px; }
.quote { margin: 0; border-left: 2px solid var(--orange); padding-left: 18px; }
.quote blockquote { margin: 0; font-family: 'Cormorant Garamond', serif; font-size: 19px; line-height: 1.5; font-style: italic; }
.quote figcaption { margin-top: 12px; font-size: 13px; color: var(--muted); }
@media (min-width: 700px) { .community__grid { grid-template-columns: 1fr 1fr; gap: 40px; } }

/* ── Corsi page detail ─────────────────────────────────────────────── */

.corso-detail { border-bottom: 1px solid var(--border); background: var(--cream); }
.corso-detail--alt { background: #FFFDFA; }
.corso-detail__grid { max-width: var(--container); margin: 0 auto; padding: 48px 20px; display: grid; gap: 30px; }
.corso-detail__photo { width: 100%; height: 240px; object-fit: cover; }
.corso-detail__meta { display: flex; align-items: center; gap: 10px; }
.dot { width: 9px; height: 9px; border-radius: 50%; display: inline-block; }
.corso-detail h2 { font-size: 30px; margin-top: 10px; }
.corso-detail__testo { color: #4A443D; margin-top: 16px; white-space: pre-line; }
.corso-detail__benefici { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 18px; }
.corso-detail__benefici li { display: flex; gap: 6px; font-size: 14px; color: #4A443D; }
.corso-detail__facts { display: flex; gap: 30px; margin-top: 22px; border-top: 1px solid var(--border); padding-top: 18px; }
.corso-detail__facts > div { display: flex; flex-direction: column; gap: 5px; }
.corso-detail__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
@media (min-width: 900px) { .corso-detail__grid { grid-template-columns: 0.9fr 1.1fr; align-items: center; padding: 70px 20px; } .corso-detail__photo { height: 340px; } }

/* ── Orari (schedule grid) ─────────────────────────────────────────── */

.schedule-filters-section { padding-bottom: 0; }
.schedule-filters { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.schedule-filters__label { font-size: 13px; color: #8A7F72; margin-right: 4px; }
.filter-pill {
  border: 1px solid rgba(46, 46, 46, 0.22); background: transparent; color: var(--charcoal);
  border-radius: 999px; padding: 10px 18px; cursor: pointer; font-size: 13.5px;
  font-family: inherit; letter-spacing: 0.02em; white-space: nowrap;
}
.filter-pill:hover { border-color: var(--charcoal); }
.filter-pill.is-active[data-filter="tutti"] { background: var(--charcoal); border-color: var(--charcoal); color: var(--cream); }
.filter-pill.is-active:not([data-filter="tutti"]) { background: var(--filter-color); border-color: var(--filter-color); color: var(--cream); }
.schedule__slot { transition: opacity .15s ease; }
.schedule__slot.is-dimmed { opacity: 0.18; }

.schedule { overflow-x: auto; }
.schedule__grid {
  display: grid; grid-template-columns: 64px repeat(var(--schedule-cols), minmax(120px, 1fr));
  gap: 8px; min-width: 640px;
}
.schedule__corner { }
.schedule__day-label {
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; padding-bottom: 10px;
  border-bottom: 2px solid var(--charcoal); white-space: nowrap;
}
.schedule__time { font-family: 'Cormorant Garamond', serif; font-size: 18px; padding-top: 10px; border-top: 1px solid var(--border); }
.schedule__cell { padding-top: 10px; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 6px; }
.schedule__slot { background: rgba(46,46,46,0.03); border-left: 3px solid var(--orange); padding: 8px 10px; }
.schedule__slot-course { font-family: 'Cormorant Garamond', serif; font-size: 16px; line-height: 1.2; }
.schedule__slot-time { font-size: 11px; color: var(--muted); margin-top: 4px; }
.schedule__slot-teacher { font-size: 11.5px; color: var(--muted); margin-top: 2px; }

.pricing-list { margin-top: 30px; border-top: 1px solid rgba(250,246,240,0.18); }
.pricing-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 18px 0; border-bottom: 1px solid rgba(250,246,240,0.18); }
.pricing-row__name { display: flex; flex-direction: column; gap: 4px; }
.pricing-row__note { font-size: 12.5px; color: rgba(250,246,240,0.55); }
.pricing-row__price { font-family: 'Cormorant Garamond', serif; font-size: 26px; color: var(--cream); white-space: nowrap; }
.pricing-row__price.is-highlighted { color: var(--orange); }
.pricing-title { font-size: 36px; margin-top: 10px; }
.pricing-footer { display: flex; flex-wrap: wrap; align-items: center; gap: 20px; margin-top: 24px; }
.pricing-note { font-size: 14.5px; color: rgba(250, 246, 240, 0.65); }

/* ── Workshop page ─────────────────────────────────────────────────── */

.workshop-block { border-bottom: 1px solid var(--border); }
.workshop-block__inner { max-width: var(--container); margin: 0 auto; padding: 48px 20px; }
.workshop-block__intro { display: grid; gap: 24px; align-items: center; }
.workshop-block__intro h2 { font-size: 36px; margin-top: 10px; }
.workshop-block__intro p { color: #4A443D; margin-top: 14px; }
.workshop-block__intro img { width: 100%; height: 220px; object-fit: cover; }
.workshop-block--formation { background: var(--charcoal); color: var(--cream); }
.workshop-block--formation .workshop-block__intro h2 { color: var(--cream); }
.workshop-block--formation .workshop-block__intro p { color: rgba(250, 246, 240, 0.85); }
.cost-card.workshop-block__side-box { background: #fff; color: var(--charcoal); }
.workshop-block__costs { display: grid; gap: 14px; margin-top: 36px; }
.cost-card { background: var(--tan); padding: 26px 22px; }
.cost-card--light { background: #fff; }
.cost-card h3 { font-size: 22px; }
.cost-card__rows { display: grid; gap: 12px; margin-top: 18px; }
.cost-card__row { display: flex; justify-content: space-between; gap: 16px; border-bottom: 1px solid var(--border); padding-bottom: 10px; font-size: 14.5px; }
.cost-card ul { display: grid; gap: 10px; margin-top: 18px; }
.cost-card ul li { font-size: 14.5px; line-height: 1.6; }
.cost-card > .btn { margin-top: 24px; }
.workshop-block__details { margin-top: 24px; display: grid; gap: 14px; }
.workshop-block__program { margin-top: 36px; display: grid; gap: 22px; }
.program-day h4 { font-size: 18px; font-family: 'DM Sans', sans-serif; font-weight: 600; }
.program-day__items { display: grid; gap: 8px; margin-top: 12px; }
.program-item { display: grid; grid-template-columns: 130px 1fr; gap: 12px; font-size: 13.5px; }
.program-item span:first-child { font-weight: 600; }
@media (min-width: 900px) {
  .workshop-block__intro { grid-template-columns: 1fr 1fr; gap: 60px; }
  .workshop-block__intro h2 { font-size: 44px; }
  .workshop-block__costs { grid-template-columns: 1fr 1fr; }
}

/* ── Chi siamo / teachers ──────────────────────────────────────────── */

.teachers h2 { font-size: 30px; margin-top: 10px; }
.teacher { margin-top: 30px; }
.teacher img, .teacher__placeholder { width: 100%; height: 220px; object-fit: cover; background: var(--tan); }
.teacher--founder { display: grid; gap: 20px; }
.teacher--founder img, .teacher--founder .teacher__placeholder { height: 280px; }
.teacher__name-row { display: flex; align-items: baseline; gap: 12px; margin-top: 16px; }
.teacher__name-row h3 { font-size: 24px; }
.teacher p { font-size: 14.5px; color: #4A443D; margin-top: 10px; }
.teacher__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.tag { border: 1px solid var(--orange); border-radius: 999px; padding: 5px 11px; font-size: 12px; }
.teachers__grid { display: grid; gap: 30px; margin-top: 20px; }
@media (min-width: 700px) { .teachers__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) {
  .teacher--founder { grid-template-columns: 0.6fr 1.4fr; align-items: start; }
  .teachers__grid { grid-template-columns: repeat(3, 1fr); }
}

.cta-band { display: flex; flex-direction: column; gap: 20px; align-items: flex-start; }
.cta-band h2 { font-size: 34px; max-width: 24ch; }
.cta-band p { margin-top: 10px; }
@media (min-width: 700px) { .cta-band { flex-direction: row; align-items: center; justify-content: space-between; } }

/* ── Contatti ──────────────────────────────────────────────────────── */

.contatti-facts { display: grid; gap: 24px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding-top: 28px; padding-bottom: 28px; }
.contatti-facts p { margin-top: 10px; font-size: 15px; }
.contatti-facts__links { display: flex; flex-direction: column; gap: 6px; margin-top: 10px; }
@media (min-width: 900px) { .contatti-facts { grid-template-columns: repeat(4, 1fr); } }

.contatti-form-section { display: grid; gap: 20px; align-items: start; }
.contact-form { background: #FFFDFA; border: 1px solid var(--border); padding: 30px 24px; display: grid; gap: 16px; }
.contact-form { display: none; } /* hidden for now — remove this line to bring it back */
.contact-form h2 { font-size: 26px; }
.contact-form label { display: grid; gap: 7px; font-size: 12.5px; letter-spacing: 0.05em; text-transform: uppercase; color: #8A7F72; }
.contact-form input, .contact-form select, .contact-form textarea {
  font: inherit; font-size: 15px; color: var(--charcoal); background: var(--cream);
  border: 1px solid var(--border); border-radius: 2px; padding: 12px 13px; width: 100%;
}
.contact-form__row { display: grid; gap: 16px; }
#contact-form-status.is-success { color: #3E5C24; }
#contact-form-status.is-error { color: #A8365E; }
.contact-alt { background: var(--charcoal); color: var(--cream); padding: 26px 24px; }
.contact-alt h3 { font-size: 22px; color: var(--cream); }
.contact-alt p { color: rgba(250,246,240,0.72); margin-top: 10px; font-size: 14.5px; }
.contact-alt .btn { margin-top: 18px; }
@media (min-width: 900px) {
  .contatti-form-section { grid-template-columns: 1.05fr 0.95fr; }
  .contact-form__row { grid-template-columns: 1fr 1fr; }
}

/* ── Legal pages (Privacy, Cookie Policy) ─────────────────────────────── */

.legal-page { padding-top: 56px; padding-bottom: 80px; }
.legal-page h1 { font-size: 34px; line-height: 1.1; margin-bottom: 8px; }
.legal-page__body { max-width: 720px; margin-top: 28px; }
.legal-page__body h3 { font-family: 'DM Sans', sans-serif; font-size: 17px; font-weight: 600; margin: 28px 0 0; }
.legal-page__body p { margin-top: 12px; color: #4A443D; }
.legal-page__body a { text-decoration: underline; }

/* ── Cookie consent banner ─────────────────────────────────────────────── */

.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
  background: var(--charcoal); color: var(--cream);
  padding: 20px; box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.18);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner__inner {
  max-width: var(--container); margin: 0 auto;
  display: flex; flex-direction: column; gap: 16px; align-items: flex-start;
}
.cookie-banner p { font-size: 13.5px; line-height: 1.6; color: rgba(250, 246, 240, 0.88); max-width: 68ch; }
.cookie-banner a { color: var(--orange); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 12px; flex-wrap: wrap; flex: none; }
.cookie-banner .btn { padding: 11px 20px; font-size: 13.5px; }
@media (min-width: 700px) {
  .cookie-banner__inner { flex-direction: row; align-items: center; justify-content: space-between; }
}
