/* ============================================================
   Bonheurbrillant — Editorial Mediterranean Travel
   Palette : stone / linen / terracotta / olive / brass
   ============================================================ */

:root {
  --linen: #f4eee2;
  --linen-2: #ece2d0;
  --paper: #faf6ec;
  --ink: #2a2925;
  --ink-soft: #625c50;
  --terracotta: #b06a4e;
  --olive: #70704e;
  --brass: #b08b4f;
  --deep: #16292e;
  --line: rgba(42, 41, 37, .16);
  --line-strong: rgba(42, 41, 37, .32);
  --line-light: rgba(244, 238, 226, .28);
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Manrope", "Helvetica Neue", Arial, sans-serif;
  --ease: cubic-bezier(.22, .7, .24, 1);
  --header-h: 88px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--linen);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }

a { color: inherit; text-decoration: none; }

p { margin: 0 0 1.1em; }

::selection { background: var(--brass); color: #fff; }

/* ---------- Typography ---------- */

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.08;
  margin: 0 0 .5em;
  letter-spacing: .005em;
}

h1 { font-size: clamp(2.9rem, 6.4vw, 5.4rem); }
h2 { font-size: clamp(2.1rem, 4.2vw, 3.4rem); }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.7rem); }

.serif-i { font-style: italic; font-weight: 400; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .9rem;
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 1.4rem;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--brass);
}
.eyebrow--center::after {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--brass);
}

.lead {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  line-height: 1.45;
  color: var(--ink-soft);
  font-weight: 400;
}

.muted { color: var(--ink-soft); }
.small { font-size: .82rem; }

/* ---------- Layout ---------- */

.container {
  width: min(1240px, calc(100% - 48px));
  margin-inline: auto;
}

.section { padding: clamp(4.5rem, 9vw, 8rem) 0; }
.section--tight { padding: clamp(3rem, 6vw, 5rem) 0; }
.section--paper { background: var(--paper); }
.section--deep { background: var(--deep); color: var(--linen); }
.section--deep .lead,
.section--deep .muted { color: rgba(244, 238, 226, .72); }

.rule-top { border-top: 1px solid var(--line); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.split--wide-left { grid-template-columns: 1.15fr .85fr; }
.split--wide-right { grid-template-columns: .85fr 1.15fr; }

.center { text-align: center; }
.center .eyebrow { justify-content: center; }
.maxw-720 { max-width: 720px; margin-inline: auto; }
.maxw-560 { max-width: 560px; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .95rem 2.1rem;
  font-family: var(--sans);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  cursor: pointer;
  transition: background .35s var(--ease), color .35s var(--ease),
              border-color .35s var(--ease), transform .35s var(--ease);
}
.btn:hover { background: var(--ink); color: var(--linen); border-color: var(--ink); transform: translateY(-2px); }

.btn--solid { background: var(--terracotta); border-color: var(--terracotta); color: #fff; }
.btn--solid:hover { background: var(--ink); border-color: var(--ink); color: var(--linen); }

.btn--light { color: var(--linen); border-color: var(--line-light); }
.btn--light:hover { background: var(--linen); color: var(--ink); border-color: var(--linen); }

.btn--small { padding: .7rem 1.5rem; font-size: .68rem; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--terracotta);
  border-bottom: 1px solid transparent;
  transition: gap .3s var(--ease), color .3s;
}
.link-arrow:hover { gap: .95rem; color: var(--ink); }
.link-arrow::after { content: "→"; font-family: var(--serif); font-size: 1rem; }

/* ---------- Header ---------- */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  height: var(--header-h);
  color: var(--linen);
  transition: background .45s var(--ease), color .45s var(--ease),
              box-shadow .45s var(--ease), height .45s var(--ease);
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(244, 238, 226, .88);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  opacity: 0;
  transition: opacity .45s var(--ease);
}
.site-header.is-solid { color: var(--ink); height: 72px; box-shadow: 0 1px 0 var(--line); }
.site-header.is-solid::before { opacity: 1; }

.header-inner {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: min(1440px, calc(100% - 56px));
  margin-inline: auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: .02em;
  white-space: nowrap;
}
.brand img { width: 34px; height: 34px; }

.main-nav { display: flex; align-items: center; justify-content: center; flex: 1; }
.main-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 2vw, 2rem);
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav a {
  position: relative;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: .4rem 0;
  opacity: .92;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease);
}
.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }

.header-side { display: flex; align-items: center; gap: 1.4rem; }
.header-phone { font-size: .8rem; font-weight: 600; letter-spacing: .06em; white-space: nowrap; opacity: .85; }

.site-header .btn { color: inherit; border-color: currentColor; padding: .68rem 1.4rem; font-size: .66rem; }
.site-header.is-solid .btn:hover { background: var(--ink); color: var(--linen); border-color: var(--ink); }
.site-header:not(.is-solid) .btn:hover { background: var(--linen); color: var(--ink); border-color: var(--linen); }

.burger {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.burger span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: currentColor;
  transition: transform .35s var(--ease), opacity .3s;
}
.burger.is-open span:nth-child(1) { transform: translateY(3.25px) rotate(45deg); }
.burger.is-open span:nth-child(2) { transform: translateY(-3.25px) rotate(-45deg); }

/* ---------- Mobile menu ---------- */

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 55;
  background: var(--deep);
  color: var(--linen);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: calc(var(--header-h) + 4.5rem) 8vw 3rem;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity .45s var(--ease), visibility .45s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu ul { list-style: none; margin: 0 0 2.5rem; padding: 0; }
.mobile-menu li { border-bottom: 1px solid var(--line-light); }
.mobile-menu a.mnav-link {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 1rem 0;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 5vw, 2.2rem);
}
.mobile-menu a.mnav-link span { font-family: var(--sans); font-size: .65rem; letter-spacing: .25em; opacity: .5; }
.mobile-menu__contacts {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 2.2rem;
  font-size: .82rem;
  color: rgba(244, 238, 226, .72);
}
.mobile-menu__contacts strong { display: block; font-size: .62rem; letter-spacing: .28em; text-transform: uppercase; color: var(--brass); margin-bottom: .2rem; }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: var(--linen);
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 112%; object-fit: cover; }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(22, 41, 46, .62) 0%, rgba(22, 41, 46, .28) 34%, rgba(22, 41, 46, 0) 55%),
    linear-gradient(0deg, rgba(22, 41, 46, .55) 0%, rgba(22, 41, 46, 0) 45%);
}
.hero__content {
  position: relative;
  z-index: 2;
  padding-bottom: clamp(5rem, 10vh, 8rem);
  padding-top: calc(var(--header-h) + 3rem);
}
.hero h1 { max-width: 15ch; color: #fff; }
.hero .lead { color: rgba(244, 238, 226, .85); max-width: 46ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }
.hero__meta {
  display: flex;
  gap: 2.5rem;
  margin-top: 3.2rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line-light);
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(244, 238, 226, .66);
}

/* ---------- Page hero (subpages) ---------- */

.page-hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: flex-end;
  color: var(--linen);
  overflow: hidden;
}
.page-hero__media { position: absolute; inset: 0; }
.page-hero__media img { width: 100%; height: 115%; object-fit: cover; }
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(22, 41, 46, .62) 0%, rgba(22, 41, 46, .2) 40%, rgba(22, 41, 46, 0) 60%),
    linear-gradient(0deg, rgba(22, 41, 46, .62) 0%, rgba(22, 41, 46, 0) 55%);
}
.page-hero .container { position: relative; z-index: 2; padding-bottom: 4rem; padding-top: calc(var(--header-h) + 3rem); }
.page-hero h1 { color: #fff; max-width: 18ch; }
.page-hero .lead { color: rgba(244, 238, 226, .85); max-width: 52ch; }

.page-title {
  padding: calc(var(--header-h) + clamp(3rem, 7vw, 5.5rem)) 0 clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid var(--line);
}
.page-title h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }

/* ---------- Breadcrumbs ---------- */

.breadcrumbs {
  position: relative;
  z-index: 2;
  font-size: .7rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
}
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: .7rem; list-style: none; margin: 0; padding: 0; }
.breadcrumbs li { display: flex; align-items: center; gap: .7rem; opacity: .8; }
.breadcrumbs li + li::before { content: "—"; opacity: .5; }
.breadcrumbs a:hover { text-decoration: underline; }
.page-title .breadcrumbs { color: var(--ink-soft); }

/* ---------- Cards ---------- */

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.6rem, 3vw, 2.6rem);
}
.card-grid--4 { grid-template-columns: repeat(4, 1fr); }
.card-grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  position: relative;
  display: flex;
  flex-direction: column;
}
.card__media {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
}
.card__media::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(244, 238, 226, .45);
  pointer-events: none;
}
.card__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}
.card:hover .card__media img { transform: scale(1.05); }
.card__body { padding: 1.5rem .2rem 0; display: flex; flex-direction: column; flex: 1; }
.card__tag {
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: .5rem;
}
.card h3 { margin-bottom: .4em; }
.card p { font-size: .92rem; color: var(--ink-soft); flex: 1; }
.card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.2rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
}
.card__meta { font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); }
.card__price { font-family: var(--serif); font-size: 1.25rem; font-style: italic; color: var(--terracotta); }

/* Feature / advantage items */

.feature {
  padding: 2.2rem 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.6rem;
  align-items: start;
}
.feature__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--brass);
  border: 1px solid var(--line);
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature h3 { font-size: 1.45rem; }
.feature p { font-size: .94rem; color: var(--ink-soft); margin: 0; }

/* ---------- Editorial blocks ---------- */

.figure {
  position: relative;
  border: 1px solid var(--line);
}
.figure img { width: 100%; height: 100%; object-fit: cover; }
.figure--offset { margin-top: clamp(2rem, 6vw, 5rem); }
.figure figcaption {
  position: absolute;
  left: 1.2rem;
  bottom: 1.2rem;
  font-size: .68rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--linen);
  background: rgba(22, 41, 46, .5);
  padding: .5rem .9rem;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.quote-band {
  border-block: 1px solid var(--line);
  padding: clamp(3rem, 6vw, 5rem) 0;
}
.quote-band blockquote {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.6rem, 3.4vw, 2.6rem);
  line-height: 1.3;
  max-width: 26ch;
}
.quote-band cite {
  display: block;
  margin-top: 1.4rem;
  font-family: var(--sans);
  font-style: normal;
  font-size: .72rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--brass);
}

/* ---------- Casino / info panels ---------- */

.notice {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.1rem 1.4rem;
  border: 1px solid var(--line-strong);
  background: var(--paper);
  font-size: .85rem;
}
.notice strong { color: var(--terracotta); }
.notice--dark { background: rgba(244, 238, 226, .06); border-color: var(--line-light); color: rgba(244, 238, 226, .85); }
.notice--dark strong { color: var(--brass); }

.responsible {
  border: 1px solid var(--line);
  background: var(--paper);
  padding: clamp(1.8rem, 4vw, 3rem);
}
.responsible h2, .responsible h3 { font-size: 1.7rem; }

.review-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem; }
.review {
  border: 1px solid var(--line);
  padding: 1.8rem;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.review p { font-family: var(--serif); font-style: italic; font-size: 1.12rem; line-height: 1.5; margin: 0; flex: 1; }
.review footer { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-soft); }

/* ---------- FAQ ---------- */

.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 0;
  background: none;
  border: 0;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  text-align: left;
  color: var(--ink);
  cursor: pointer;
}
.faq__q .faq__icon {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 1rem;
  transition: transform .4s var(--ease), background .3s;
}
.faq__item.is-open .faq__icon { transform: rotate(45deg); background: var(--terracotta); color: #fff; border-color: var(--terracotta); }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s var(--ease);
}
.faq__a-inner { padding: 0 0 1.6rem; max-width: 62ch; color: var(--ink-soft); font-size: .95rem; }

/* ---------- Forms ---------- */

.form { display: grid; gap: 1.3rem; }
.form--2col { grid-template-columns: 1fr 1fr; }
.form--2col .field--full { grid-column: 1 / -1; }

.field label {
  display: block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: .5rem;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: .95rem 1.1rem;
  font-family: var(--sans);
  font-size: .95rem;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 0;
  transition: border-color .3s;
}
.field input:focus,
.field textarea:focus,
.field select:focus { outline: none; border-color: var(--terracotta); }
.field textarea { min-height: 130px; resize: vertical; }
.field.has-error input,
.field.has-error textarea { border-color: #a94438; }
.field__error {
  display: none;
  margin-top: .45rem;
  font-size: .76rem;
  color: #a94438;
}
.field.has-error .field__error { display: block; }

.consent {
  display: flex;
  gap: .8rem;
  align-items: flex-start;
  font-size: .8rem;
  color: var(--ink-soft);
}
.consent input { width: 16px; height: 16px; margin-top: 2px; accent-color: var(--terracotta); flex: 0 0 auto; }
.consent.has-error { color: #a94438; }

/* ---------- Overlays (booking / success) ---------- */

.overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(22, 41, 46, .55);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s var(--ease), visibility .35s;
}
.overlay.is-open { opacity: 1; visibility: visible; }

.dialog {
  position: relative;
  width: min(560px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  background: var(--linen);
  border: 1px solid var(--line-light);
  padding: clamp(2rem, 5vw, 3rem);
  transform: translateY(24px);
  transition: transform .45s var(--ease);
}
.overlay.is-open .dialog { transform: translateY(0); }
.dialog::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid var(--line);
  pointer-events: none;
}
.dialog > * { position: relative; }
.dialog h2 { font-size: 1.9rem; padding-right: 2rem; }
.dialog .eyebrow { margin-bottom: .8rem; }

.dialog__close {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: transparent;
  font-size: 1.15rem;
  line-height: 1;
  color: var(--ink);
  cursor: pointer;
  transition: background .3s, color .3s;
  z-index: 2;
}
.dialog__close:hover { background: var(--ink); color: var(--linen); }

.success-overlay .dialog { text-align: center; }
.success-mark {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.6rem;
  border: 1px solid var(--brass);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--brass);
}

/* ---------- Cookie banner ---------- */

.cookie-banner {
  position: fixed;
  left: 1.5rem;
  bottom: 1.5rem;
  z-index: 80;
  width: min(430px, calc(100% - 3rem));
  background: var(--deep);
  color: var(--linen);
  border: 1px solid var(--line-light);
  padding: 1.7rem;
  transform: translateY(24px);
  opacity: 0;
  visibility: hidden;
  transition: transform .5s var(--ease), opacity .5s, visibility .5s;
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; visibility: visible; }
.cookie-banner p { font-size: .85rem; color: rgba(244, 238, 226, .82); margin-bottom: 1.2rem; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: .7rem; align-items: center; }
.cookie-banner .btn { font-size: .64rem; padding: .65rem 1.3rem; }
.cookie-banner__more { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--brass); border-bottom: 1px solid var(--brass); padding-bottom: 2px; }
.cookie-banner__confirm { font-size: .8rem; color: var(--brass); margin: 0; }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--deep);
  color: rgba(244, 238, 226, .78);
  padding: clamp(4rem, 8vw, 6rem) 0 2.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: 3.5rem;
  border-bottom: 1px solid var(--line-light);
}
.footer-brand .brand { font-size: 1.8rem; color: var(--linen); margin-bottom: 1rem; }
.footer-brand p { font-size: .88rem; max-width: 32ch; }
.footer-col h4 {
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 1.3rem;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .65rem; font-size: .88rem; }
.footer-col a { transition: color .3s; }
.footer-col a:hover { color: var(--linen); }
.footer-contact p { font-size: .88rem; margin-bottom: .7rem; }
.footer-contact .f-label { font-size: .62rem; letter-spacing: .26em; text-transform: uppercase; color: var(--brass); display: block; }
.footer-bottom {
  padding-top: 2.2rem;
  display: grid;
  gap: .6rem;
  font-size: .78rem;
  color: rgba(244, 238, 226, .55);
}
.footer-bottom .legal-note { color: rgba(244, 238, 226, .7); }

/* ---------- Contact page ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(3rem, 7vw, 6rem);
  align-items: start;
}
.contact-list { display: grid; gap: 1.6rem; }
.contact-item { border-top: 1px solid var(--line); padding-top: 1.2rem; }
.contact-item .f-label { font-size: .64rem; letter-spacing: .28em; text-transform: uppercase; color: var(--brass); display: block; margin-bottom: .4rem; }
.contact-item p { margin: 0; font-size: .98rem; }

.map-frame { border: 1px solid var(--line); padding: 10px; background: var(--paper); }
.map-frame iframe { display: block; width: 100%; height: 440px; border: 0; }

/* ---------- Legal pages ---------- */

.prose { max-width: 760px; }
.prose h2 { font-size: 1.8rem; margin-top: 2.4em; }
.prose h3 { font-size: 1.3rem; margin-top: 1.8em; font-family: var(--sans); font-weight: 700; font-size: .95rem; letter-spacing: .04em; }
.prose p, .prose li { font-size: .95rem; color: var(--ink-soft); }
.prose ul { padding-left: 1.2rem; }
.prose li { margin-bottom: .4rem; }

/* ---------- Reveal & parallax ---------- */

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .12s; }
.reveal[data-delay="2"] { transition-delay: .24s; }
.reveal[data-delay="3"] { transition-delay: .36s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: .001s !important; transition-duration: .001s !important; }
}

/* ---------- Responsive ---------- */

@media (max-width: 1380px) {
  .header-phone { display: none; }
}

@media (max-width: 1150px) {
  .main-nav { display: none; }
  .site-header .header-cta { display: none; }
  .burger { display: flex; }
}

@media (max-width: 900px) {
  .card-grid, .card-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .review-grid { grid-template-columns: repeat(2, 1fr); }
  .split, .split--wide-left, .split--wide-right { grid-template-columns: 1fr; }
  .figure--offset { margin-top: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form--2col { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .card-grid, .card-grid--4, .card-grid--2 { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero__meta { flex-direction: column; gap: .8rem; }
  .header-inner { width: calc(100% - 36px); }
}
