/* Atelier — ink/sand/caramel editorial salon site.
   Brand colours load at runtime from /v1/brand into CSS vars. */
:root {
  --ink: #1F2A44;
  --ink-soft: #475063;
  --ink-mute: #7B8198;
  --sand: #E9DCC9;
  --sand-soft: #F2E9DA;
  --sand-deep: #D9C8AE;
  --caramel: #A87E5C;
  --caramel-deep: #8E6643;
  --paper: #FBF7F1;
  --paper-warm: #F5EEE2;
  --line: rgba(31, 42, 68, 0.12);
  --line-light: rgba(31, 42, 68, 0.07);

  --brand-primary: var(--ink);
  --brand-secondary: var(--sand);
  --brand-accent: var(--caramel);

  --font-display: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

  --r-sm: 4px;
  --r: 8px;
  --r-lg: 18px;

  --shadow-sm: 0 1px 2px rgba(31, 42, 68, 0.05), 0 0 0 1px rgba(31, 42, 68, 0.04);
  --shadow: 0 18px 40px -22px rgba(31, 42, 68, 0.28), 0 1px 2px rgba(31, 42, 68, 0.04);
  --shadow-lg: 0 32px 60px -28px rgba(31, 42, 68, 0.35), 0 2px 4px rgba(31, 42, 68, 0.05);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; }

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--brand-primary); color: var(--paper); padding: 8px 12px;
}
.skip:focus { left: 8px; top: 8px; z-index: 100; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 28px; }

/* ─── Type scale ─────────────────────────────────────────────────────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--brand-accent);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: ""; width: 18px; height: 1px; background: currentColor;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.005em;
  line-height: 1.04;
  margin: 0 0 18px;
  color: var(--ink);
  font-feature-settings: "ss01", "liga", "kern";
}
h1 { font-size: clamp(48px, 8vw, 104px); font-weight: 300; letter-spacing: -0.025em; }
h2 { font-size: clamp(32px, 4.6vw, 60px); font-weight: 400; letter-spacing: -0.012em; }
h3 { font-size: 24px; font-weight: 500; line-height: 1.18; }
h4 { font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 14px; font-family: var(--font-body); }

p { margin: 0 0 16px; }
p.lede { font-size: 20px; line-height: 1.5; color: var(--ink-soft); max-width: 50ch; font-weight: 300; }
.prose { font-size: 17px; line-height: 1.75; color: var(--ink-soft); max-width: 56ch; }

em, .em { font-family: var(--font-display); font-style: italic; font-weight: 400; }

/* ─── Header ─────────────────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 247, 241, 0.82);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid var(--line-light);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px; gap: 28px;
}
.brand {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-display); font-weight: 500;
  font-size: 22px; letter-spacing: 0.01em;
  color: var(--brand-primary);
}
.brand-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--brand-primary); color: var(--paper-warm);
  font-family: var(--font-display); font-size: 18px; font-style: italic;
  font-weight: 500;
}
.nav nav { display: flex; gap: 32px; }
.nav nav a {
  font-size: 13.5px; font-weight: 500; color: var(--ink-soft);
  letter-spacing: 0.02em;
  position: relative; padding: 4px 0;
  transition: color 0.18s;
}
.nav nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px;
  height: 1px; background: var(--brand-accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s ease;
}
.nav nav a:hover { color: var(--brand-primary); }
.nav nav a:hover::after { transform: scaleX(1); }

/* ─── Buttons ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 15px 28px; border-radius: 999px;
  font-size: 13.5px; font-weight: 500; letter-spacing: 0.04em;
  border: 1px solid transparent;
  transition: all 0.22s ease;
  white-space: nowrap;
}
.btn-sm { padding: 10px 20px; font-size: 12.5px; letter-spacing: 0.06em; }
.btn-primary {
  background: var(--brand-primary); color: var(--paper-warm);
}
.btn-primary:hover { background: #14203A; transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-primary:disabled { opacity: 0.4; cursor: not-allowed; transform: none; box-shadow: none; }
.btn-ghost {
  background: transparent; color: var(--ink); border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--brand-primary); }
.btn-link {
  background: transparent; color: var(--ink-soft);
  padding: 14px 6px; gap: 10px;
  font-weight: 500; letter-spacing: 0.04em;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
}
.btn-link:hover { color: var(--brand-primary); border-bottom-color: var(--brand-primary); }

/* ─── Hero ───────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: clamp(64px, 9vw, 128px) 0 0;
  background:
    radial-gradient(ellipse at 90% 0%, rgba(168, 126, 92, 0.08), transparent 55%),
    linear-gradient(180deg, var(--paper) 0%, var(--paper-warm) 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
  padding-bottom: clamp(56px, 8vw, 104px);
}
.hero-copy h1 { margin-bottom: 28px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; margin-top: 36px; }
.kpi {
  margin: 64px 0 0; padding: 28px 0 0;
  border-top: 1px solid var(--line);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  max-width: 480px;
}
.kpi > div { display: flex; flex-direction: column; gap: 6px; }
.kpi dt { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-mute); font-weight: 500; }
.kpi dd { margin: 0; font-family: var(--font-display); font-size: 22px; color: var(--ink); }

/* Hero art — real photograph in an editorial frame */
.hero-art { position: relative; margin: 0; aspect-ratio: 4 / 5; width: 100%; max-width: 520px; justify-self: end; }
.hero-art-frame {
  position: absolute; inset: 0;
  border-radius: 6px;
  background: linear-gradient(160deg, var(--sand-deep) 0%, var(--sand) 100%);
  overflow: hidden;
  box-shadow: 0 40px 80px -32px rgba(31, 42, 68, 0.4), 0 8px 24px -10px rgba(31, 42, 68, 0.18);
}
.hero-art-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.8s cubic-bezier(.2,.7,.2,1);
}
.hero-art:hover .hero-art-photo { transform: scale(1.05); }
.hero-art-card {
  position: absolute; left: -28px; bottom: 64px;
  background: var(--paper);
  border-radius: 6px;
  padding: 18px 22px;
  display: flex; align-items: center; gap: 14px;
  box-shadow: 0 16px 40px -16px rgba(31, 42, 68, 0.35);
  max-width: 240px;
}
.hero-art-card-num {
  font-family: var(--font-display); font-style: italic;
  font-size: 36px; line-height: 1; color: var(--brand-accent);
  font-weight: 400;
}
.hero-art-card-line {
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-soft); font-weight: 500; line-height: 1.4;
}
.hero-art-caption {
  position: absolute; right: 0; bottom: -56px;
  display: flex; flex-direction: column;
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-soft); font-weight: 500;
  text-align: right;
}
.hero-art-caption-eyebrow {
  font-family: var(--font-display); font-style: italic;
  font-size: 22px; letter-spacing: 0; text-transform: none;
  color: var(--brand-accent);
  margin-bottom: 4px; font-weight: 400;
}

/* Marquee */
.hero-marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-warm);
  padding: 22px 0;
  overflow: hidden;
  margin-top: clamp(40px, 6vw, 64px);
}
.hero-marquee-track {
  display: inline-flex; align-items: center; gap: 28px;
  white-space: nowrap;
  font-family: var(--font-display); font-style: italic; font-size: 22px;
  color: var(--ink-soft);
  animation: marquee 40s linear infinite;
}
.hero-marquee-track .dot { color: var(--brand-accent); font-style: normal; font-size: 18px; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── Sections ───────────────────────────────────────────────────────────── */
.section { padding: clamp(72px, 10vw, 128px) 0; }
.section-alt { background: var(--paper-warm); }
.section-dark {
  background: var(--ink);
  color: var(--sand-soft);
}
.section-dark h2, .section-dark .pane-heading, .section-dark .brand { color: var(--sand-soft); }
.section-dark .eyebrow { color: var(--sand-deep); }
.section-dark .section-head p { color: rgba(233, 220, 201, 0.7); }

.section-head {
  max-width: 720px; margin-bottom: 64px;
}
.section-head p { color: var(--ink-soft); font-size: 18px; max-width: 50ch; line-height: 1.55; }
.section-head-light p { color: rgba(233, 220, 201, 0.7); }

/* ─── About ──────────────────────────────────────────────────────────────── */
.about-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.checklist {
  list-style: none; padding: 0; margin: 28px 0 0;
}
.checklist li {
  padding: 14px 0 14px 32px;
  border-bottom: 1px solid var(--line);
  position: relative;
  font-size: 15px;
  color: var(--ink);
}
.checklist li:last-child { border-bottom: none; }
.checklist li::before {
  content: "";
  position: absolute; left: 0; top: 22px;
  width: 16px; height: 1px;
  background: var(--brand-accent);
}

.about-art { position: relative; margin: 0; aspect-ratio: 4 / 5; width: 100%; max-width: 460px; justify-self: center; }
.about-art-card {
  position: absolute; inset: 0;
  border-radius: var(--r-lg);
  background: var(--paper);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
}
.about-art-photo {
  flex: 1;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--sand-deep) 0%, var(--caramel) 70%, var(--ink) 130%);
}
.about-art-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-art-caption {
  padding: 22px 26px;
  border-top: 1px solid var(--line-light);
  font-family: var(--font-display);
}
.about-art-caption span { font-size: 22px; display: block; }
.about-art-caption small { font-family: var(--font-body); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-mute); }
.about-art-stamp {
  position: absolute; top: -16px; right: -16px;
  width: 92px; height: 92px;
  background: var(--brand-accent); color: var(--paper);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-style: italic; font-size: 20px;
  transform: rotate(8deg);
  box-shadow: var(--shadow);
}

/* ─── Services ───────────────────────────────────────────────────────────── */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
}
.service {
  display: flex; flex-direction: column;
  background: var(--paper-warm);
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-light);
  transition: transform 0.25s cubic-bezier(.2,.7,.2,1), box-shadow 0.25s ease, border-color 0.25s ease;
}
.service:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-accent);
}
.service-image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, var(--sand-deep), var(--caramel));
}
.service-image img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(.2,.7,.2,1);
}
.service:hover .service-image img { transform: scale(1.04); }
.service-body { display: flex; flex-direction: column; flex: 1; padding: 32px 32px 28px; }
.service-num {
  position: absolute; top: 16px; left: 16px;
  font-family: var(--font-display); font-style: italic;
  font-size: 24px; line-height: 1;
  background: rgba(251, 247, 241, 0.94);
  color: var(--brand-accent);
  padding: 10px 16px; border-radius: 999px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 4px 12px rgba(31, 42, 68, 0.15);
}
.service-name {
  font-family: var(--font-display); font-size: 28px; font-weight: 400;
  line-height: 1.15; margin-bottom: 8px;
}
.service-meta {
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-mute); margin-bottom: 18px;
}
.service-meta strong { color: var(--brand-accent); font-weight: 500; }
.service-desc {
  color: var(--ink-soft); font-size: 15px; line-height: 1.65;
  margin: 0 0 24px;
}
.service-foot {
  margin-top: auto; padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex; align-items: baseline; justify-content: space-between; gap: 16px;
}
.service-price {
  font-family: var(--font-display); font-weight: 400;
  font-size: 32px; line-height: 1; color: var(--ink);
}
.service-price small { font-size: 14px; color: var(--ink-mute); margin-left: 4px; }
.service-book {
  font-size: 12.5px; font-weight: 500; letter-spacing: 0.06em;
  color: var(--brand-accent);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: color 0.18s;
}
.service-book:hover { color: var(--ink); }

/* ─── Booking widget ─────────────────────────────────────────────────────── */
.booking-widget {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(280px, 1.3fr) minmax(220px, 1fr);
  gap: 28px;
  margin-bottom: 36px;
}
.booking-pane {
  background: rgba(251, 247, 241, 0.05);
  border: 1px solid rgba(233, 220, 201, 0.16);
  border-radius: var(--r-lg);
  padding: 24px 24px 28px;
}
.pane-heading {
  font-family: var(--font-body); font-size: 12px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(233, 220, 201, 0.6);
  margin: 0 0 18px;
}
.pane-heading-step { color: rgba(233, 220, 201, 0.6); }

/* Service picker */
.booking-service-list { display: flex; flex-direction: column; gap: 10px; }
.booking-service-chip {
  display: flex; flex-direction: column; gap: 4px;
  padding: 16px 18px;
  background: transparent;
  border: 1px solid rgba(233, 220, 201, 0.18);
  border-radius: var(--r);
  text-align: left; cursor: pointer;
  color: var(--sand-soft);
  transition: all 0.18s ease;
}
.booking-service-chip:hover { border-color: var(--brand-accent); background: rgba(168, 126, 92, 0.06); }
.booking-service-chip.is-selected {
  border-color: var(--brand-accent);
  background: rgba(168, 126, 92, 0.14);
  box-shadow: inset 3px 0 0 var(--brand-accent);
}
.booking-service-chip .name { font-family: var(--font-display); font-size: 19px; line-height: 1.15; }
.booking-service-chip .meta { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(233, 220, 201, 0.55); }
.booking-service-chip .meta strong { color: var(--brand-accent); font-weight: 500; }

/* Calendar */
.calendar-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px; gap: 8px;
}
.calendar-nav { display: inline-flex; align-items: center; gap: 12px; }
.calendar-label {
  font-family: var(--font-display); font-size: 20px; font-weight: 400;
  color: var(--sand-soft); min-width: 140px; text-align: center;
}
.calendar-nav-btn {
  width: 32px; height: 32px;
  border: 1px solid rgba(233, 220, 201, 0.2);
  border-radius: 50%;
  background: transparent;
  color: var(--sand-soft);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 14px;
  transition: all 0.18s;
}
.calendar-nav-btn:hover { border-color: var(--brand-accent); color: var(--brand-accent); }
.calendar-weekdays {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px;
  margin-bottom: 8px;
}
.calendar-weekdays span {
  text-align: center;
  font-size: 10px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(233, 220, 201, 0.45);
  padding: 6px 0;
}
.calendar-grid {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px;
}
.cal-cell {
  aspect-ratio: 1;
  border: 1px solid transparent;
  background: transparent;
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--sand-soft); font-weight: 400;
  cursor: pointer;
  position: relative;
  transition: all 0.15s;
}
.cal-cell.is-blank { cursor: default; opacity: 0; pointer-events: none; }
.cal-cell.is-disabled { color: rgba(233, 220, 201, 0.2); cursor: not-allowed; }
.cal-cell.is-closed { color: rgba(233, 220, 201, 0.25); cursor: not-allowed; }
.cal-cell.is-closed::after {
  content: ""; position: absolute; left: 30%; right: 30%; bottom: 18%;
  height: 1px; background: rgba(233, 220, 201, 0.2);
}
.cal-cell.is-available {
  background: rgba(168, 126, 92, 0.1);
  color: var(--sand-soft);
}
.cal-cell.is-available:hover {
  background: rgba(168, 126, 92, 0.22);
  border-color: var(--brand-accent);
}
.cal-cell.is-today {
  font-weight: 600;
}
.cal-cell.is-today::before {
  content: ""; position: absolute; bottom: 4px; left: 50%;
  width: 4px; height: 4px; transform: translateX(-50%);
  border-radius: 50%; background: var(--brand-accent);
}
.cal-cell.is-selected {
  background: var(--brand-accent); color: var(--ink);
  border-color: var(--brand-accent);
  font-weight: 600;
}
.cal-cell.is-selected.is-today::before { background: var(--ink); }

/* Slots */
.slot-list {
  display: flex; flex-direction: column; gap: 8px;
  max-height: 320px; overflow-y: auto; padding-right: 4px;
}
.slot-list::-webkit-scrollbar { width: 6px; }
.slot-list::-webkit-scrollbar-thumb { background: rgba(233, 220, 201, 0.25); border-radius: 3px; }
.slot-hint, .slot-empty {
  font-size: 13px; color: rgba(233, 220, 201, 0.55);
  text-align: center; padding: 28px 12px;
  font-family: var(--font-display); font-style: italic; font-size: 16px;
  margin: 0;
}
.slot-btn {
  padding: 12px 16px;
  border: 1px solid rgba(233, 220, 201, 0.18);
  background: transparent;
  border-radius: var(--r);
  color: var(--sand-soft);
  text-align: left;
  font-size: 14px; font-weight: 500;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 10px;
  transition: all 0.16s;
}
.slot-btn:hover { border-color: var(--brand-accent); background: rgba(168, 126, 92, 0.08); }
.slot-btn.is-selected {
  background: var(--brand-accent);
  color: var(--ink);
  border-color: var(--brand-accent);
}
.slot-btn .duration {
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  opacity: 0.7;
}

/* Booking form */
.booking-form {
  background: rgba(251, 247, 241, 0.03);
  border: 1px solid rgba(233, 220, 201, 0.14);
  border-radius: var(--r-lg);
  padding: 32px;
}
.booking-form-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
  margin-bottom: 24px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field-wide { grid-column: 1 / -1; }
.field label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(233, 220, 201, 0.6);
}
.field .optional {
  font-weight: 400; letter-spacing: 0.04em; text-transform: none;
  font-style: italic; opacity: 0.6; margin-left: 6px;
}
.field input, .field textarea {
  padding: 14px 16px;
  border-radius: var(--r);
  border: 1px solid rgba(233, 220, 201, 0.18);
  background: rgba(233, 220, 201, 0.04);
  color: var(--sand-soft);
  font: inherit;
  font-size: 15px;
  resize: vertical;
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--brand-accent);
  background: rgba(233, 220, 201, 0.08);
}
.field input::placeholder, .field textarea::placeholder { color: rgba(233, 220, 201, 0.3); }
.booking-form-foot {
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  flex-wrap: wrap;
}
.booking-summary {
  margin: 0;
  font-family: var(--font-display); font-style: italic;
  font-size: 17px;
  color: rgba(233, 220, 201, 0.7);
  flex: 1; min-width: 240px;
}
.booking-summary.is-set { color: var(--sand-soft); font-style: normal; font-family: var(--font-body); font-size: 14px; line-height: 1.55; }
.booking-summary.is-set strong { color: var(--brand-accent); font-weight: 500; }
.booking-form .btn-primary {
  background: var(--brand-accent); color: var(--ink);
}
.booking-form .btn-primary:hover { background: #B98A66; }
.form-status {
  font-size: 13px; min-height: 1.4em; margin: 16px 0 0;
  color: var(--brand-accent);
}
.form-status.is-error { color: #F4A88C; }
.form-status.is-success { color: var(--sand-deep); }

/* ─── Blog ───────────────────────────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
}
.blog-card {
  display: flex; flex-direction: column;
  background: var(--paper-warm);
  border: 1px solid var(--line-light);
  border-radius: var(--r-lg);
  transition: transform 0.25s cubic-bezier(.2,.7,.2,1), border-color 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}
.blog-card:hover { transform: translateY(-4px); border-color: var(--brand-accent); box-shadow: var(--shadow-lg); }
.blog-cover {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, var(--sand-deep), var(--caramel));
}
.blog-cover img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(.2,.7,.2,1);
}
.blog-card:hover .blog-cover img { transform: scale(1.04); }
.blog-body { padding: 32px 32px 28px; display: flex; flex-direction: column; flex: 1; }
.blog-meta {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--brand-accent); margin-bottom: 16px;
  display: flex; gap: 10px; align-items: center;
}
.blog-meta::after { content: ""; flex: 1; border-top: 1px solid var(--line); }
.blog-title { font-size: 26px; line-height: 1.18; margin-bottom: 10px; }
.blog-excerpt { color: var(--ink-soft); font-size: 15.5px; line-height: 1.65; margin-bottom: 24px; }
.blog-readmore {
  margin-top: auto;
  font-family: var(--font-display); font-style: italic;
  font-size: 16px; color: var(--brand-accent);
}

/* ─── Contact ────────────────────────────────────────────────────────────── */
.contact-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.contact-meta {
  margin-top: 24px;
  font-style: normal;
  font-size: 14.5px; line-height: 1.75;
  font-family: var(--font-body);
  color: var(--ink);
}
.contact-link {
  display: inline-block; margin-top: 16px;
  font-family: var(--font-display); font-size: 26px;
  color: var(--brand-primary);
  border-bottom: 1px solid var(--brand-accent);
  padding-bottom: 4px;
  transition: color 0.18s;
}
.contact-link:hover { color: var(--brand-accent); }

.contact-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px;
  position: relative;
  box-shadow: var(--shadow);
}
.contact-card-eyebrow {
  font-family: var(--font-display); font-style: italic;
  font-size: 18px; color: var(--brand-accent);
  display: block; margin-bottom: 16px;
}
.contact-card p { font-size: 16px; line-height: 1.65; color: var(--ink); margin: 0; }
.contact-card-rule {
  display: block; height: 1px;
  background: var(--line); margin: 24px 0;
}
.contact-card-hours { font-size: 14.5px; line-height: 1.85; color: var(--ink-soft); }
.contact-card-hours strong { display: inline-block; min-width: 90px; color: var(--ink); font-weight: 500; }

/* ─── Footer ─────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  color: rgba(233, 220, 201, 0.6);
  padding: 80px 0 36px;
  font-size: 14px;
}
.site-footer .brand { color: var(--sand-soft); }
.site-footer .brand-mark { background: var(--brand-accent); color: var(--ink); }
.site-footer h4 { color: var(--sand-soft); }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(233, 220, 201, 0.1);
}
.footer-grid p { font-size: 13px; max-width: 32ch; margin: 14px 0 0; color: rgba(233, 220, 201, 0.5); }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; font-size: 13px; }
.footer-grid a:hover { color: var(--sand-soft); }
.footer-bottom { padding-top: 28px; }
.footer-bottom small { font-size: 12px; color: rgba(233, 220, 201, 0.4); letter-spacing: 0.04em; }
.footer-bottom a { color: var(--sand-deep); border-bottom: 1px dotted rgba(217, 200, 174, 0.5); }

/* ─── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 920px) {
  .booking-widget {
    grid-template-columns: 1fr 1fr;
  }
  .booking-services { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .nav nav { display: none; }
  .nav { height: 64px; }
  .hero { padding-top: 56px; }
  .hero-grid, .about-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .hero-art { order: -1; max-width: 420px; margin: 0 auto; justify-self: center; }
  .hero-art-card { left: -16px; bottom: 32px; padding: 14px 18px; }
  .hero-art-card-num { font-size: 28px; }
  .hero-art-caption { position: static; margin-top: 28px; text-align: left; }
  .about-art { max-width: 360px; }
  .kpi { grid-template-columns: 1fr 1fr; gap: 18px; max-width: 100%; }
  .booking-widget { grid-template-columns: 1fr; gap: 18px; }
  .booking-form-grid { grid-template-columns: 1fr; }
  .booking-form-foot { flex-direction: column; align-items: stretch; }
  .booking-form .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .service-grid { gap: 22px; }
  .service-body { padding: 28px 24px 24px; }
  .blog-body { padding: 28px 24px 24px; }
  .contact-card { padding: 28px; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .hero-marquee-track { font-size: 18px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .booking-form { padding: 22px; }
  .booking-pane { padding: 20px 18px 22px; }
  .calendar-label { min-width: 100px; font-size: 16px; }
  .calendar-grid { gap: 3px; }
  .cal-cell { font-size: 13px; }
  .calendar-weekdays span { font-size: 9px; padding: 4px 0; }
  .slot-list { max-height: none; }
  .hero-art-card { left: 0; bottom: 24px; }
  .nav { gap: 12px; }
  .nav .btn-sm { padding: 8px 14px; font-size: 11.5px; }
  h1 { font-size: clamp(40px, 12vw, 56px); }
  h2 { font-size: clamp(28px, 8vw, 40px); }
  .hero-ctas { flex-direction: column; align-items: stretch; gap: 12px; width: 100%; }
  .hero-ctas .btn { width: 100%; }
}
