/* ============================================================
   MARIANNE D. LE SALON — Main Stylesheet
   Design: Premium beige palette, Cormorant Garamond + Jost
   Structure: Variables → Reset → Typography → Layout →
              Components → Pages → Animations → Responsive
   ============================================================ */

/* ─── Google Fonts ──────────────────────────────────────────── */
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Jost:wght@300;400;500;600&display=swap");

/* ─── Design Tokens ──────────────────────────────────────────── */
:root {
  /* Colors */
  --bg: #fdfaf5;
  --surface: #f5ede0;
  --surface-2: #ebd9c4;
  --accent: #c9a882;
  --accent-dark: #9a7552;
  --text: #2a1f14;
  --text-mid: #6b5340;
  --text-light: #9e8472;
  --border: #dfd0bc;
  --white: #ffffff;
  --off-white: #fdfbf8;
  --overlay: rgba(42, 31, 20, 0.42);

  /* Typography */
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Jost", system-ui, sans-serif;

  /* Type scale */
  --text-xs: 0.75rem; /* 12px */
  --text-sm: 0.875rem; /* 14px */
  --text-base: 1rem; /* 16px */
  --text-lg: 1.125rem; /* 18px */
  --text-xl: 1.25rem; /* 20px */
  --text-2xl: 1.5rem; /* 24px */
  --text-3xl: 1.875rem; /* 30px */
  --text-4xl: 2.25rem; /* 36px */
  --text-5xl: 3rem; /* 48px */
  --text-6xl: 3.75rem; /* 60px */
  --text-7xl: 4.5rem; /* 72px */

  /* Spacing */
  --sp-1: 0.25rem; /* 4px */
  --sp-2: 0.5rem; /* 8px */
  --sp-3: 0.75rem; /* 12px */
  --sp-4: 1rem; /* 16px */
  --sp-5: 1.25rem; /* 20px */
  --sp-6: 1.5rem; /* 24px */
  --sp-8: 2rem; /* 32px */
  --sp-10: 2.5rem; /* 40px */
  --sp-12: 3rem; /* 48px */
  --sp-16: 4rem; /* 64px */
  --sp-20: 5rem; /* 80px */
  --sp-24: 6rem; /* 96px */
  --sp-32: 8rem; /* 128px */

  /* Border radii */
  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 40px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 4px rgba(42, 31, 20, 0.06);
  --shadow-md: 0 4px 16px rgba(42, 31, 20, 0.1);
  --shadow-lg: 0 8px 32px rgba(42, 31, 20, 0.14);
  --shadow-xl: 0 16px 64px rgba(42, 31, 20, 0.18);

  /* Transitions */
  --t-fast: 150ms ease;
  --t-base: 250ms ease;
  --t-slow: 400ms ease;

  /* Layout */
  --container: 1200px;
  --container-narrow: 800px;
  --header-h: 80px;
}

/* ─── Reset ──────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 400;
  line-height: 1.7;
  color: var(--text);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea,
select {
  font: inherit;
}
ul,
ol {
  list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
}

/* Focus styles — accessible */
:focus-visible {
  outline: 2px solid var(--accent-dark);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ─── Typography ─────────────────────────────────────────────── */
.font-display {
  font-family: var(--font-display);
}

h1,
.h1 {
  font-family: var(--font-display);
  font-size: clamp(var(--text-4xl), 6vw, var(--text-7xl));
  font-weight: 300;
  letter-spacing: -0.01em;
}
h2,
.h2 {
  font-family: var(--font-display);
  font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
  font-weight: 400;
}
h3,
.h3 {
  font-family: var(--font-display);
  font-size: clamp(var(--text-2xl), 3vw, var(--text-4xl));
  font-weight: 400;
}
h4,
.h4 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 500;
}
h5,
.h5 {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

p {
  max-width: 68ch;
}
p + p {
  margin-top: var(--sp-4);
}

.text-xs {
  font-size: var(--text-xs);
}
.text-sm {
  font-size: var(--text-sm);
}
.text-base {
  font-size: var(--text-base);
}
.text-lg {
  font-size: var(--text-lg);
}
.text-xl {
  font-size: var(--text-xl);
}
.text-center {
  text-align: center;
}
.text-light {
  color: var(--text-light);
}
.text-mid {
  color: var(--text-mid);
}
.italic {
  font-style: italic;
}

/* Eyebrow label */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: var(--sp-3);
}

/* ─── Layout ─────────────────────────────────────────────────── */
.container {
  width: min(var(--container), 100% - var(--sp-8));
  margin-inline: auto;
}
.container--narrow {
  width: min(var(--container-narrow), 100% - var(--sp-8));
  margin-inline: auto;
}

.section {
  padding-block: var(--sp-20);
}
.section--sm {
  padding-block: var(--sp-12);
}
.section--lg {
  padding-block: var(--sp-32);
}

/* Grid utilities */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-8);
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8);
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
}
.grid-auto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--sp-8);
}

/* Flex utilities */
.flex {
  display: flex;
}
.flex-col {
  flex-direction: column;
}
.items-center {
  align-items: center;
}
.justify-between {
  justify-content: space-between;
}
.justify-center {
  justify-content: center;
}
.gap-4 {
  gap: var(--sp-4);
}
.gap-6 {
  gap: var(--sp-6);
}
.gap-8 {
  gap: var(--sp-8);
}

/* Backgrounds */
.bg-surface {
  background-color: var(--surface);
}
.bg-surface-2 {
  background-color: var(--surface-2);
}
.bg-white {
  background-color: var(--white);
}
.bg-dark {
  background-color: var(--text);
  color: var(--off-white);
}

/* ─── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 0.85em 2em;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.06em;
  border-radius: var(--r-full);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition:
    background var(--t-base),
    color var(--t-base),
    border-color var(--t-base),
    transform var(--t-fast),
    box-shadow var(--t-base);
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn:active {
  transform: translateY(0);
}

/* Primary */
.btn--primary {
  background: var(--text);
  color: var(--off-white);
  border-color: var(--text);
}
.btn--primary:hover {
  background: var(--text-mid);
  border-color: var(--text-mid);
  box-shadow: var(--shadow-md);
}

/* Secondary (outline) */
.btn--secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--text);
}
.btn--secondary:hover {
  background: var(--text);
  color: var(--off-white);
}

/* Accent */
.btn--accent {
  background: var(--accent);
  color: var(--text);
  border-color: var(--accent);
}
.btn--accent:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--off-white);
  box-shadow: var(--shadow-md);
}

/* Ghost (light background) */
.btn--ghost {
  background: rgba(253, 250, 245, 0.15);
  color: var(--off-white);
  border-color: rgba(253, 250, 245, 0.4);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover {
  background: rgba(253, 250, 245, 0.25);
  border-color: rgba(253, 250, 245, 0.6);
}

/* Phone CTA */
.btn--phone {
  background: var(--surface);
  color: var(--text);
  border-color: var(--border);
}
.btn--phone:hover {
  background: var(--surface-2);
}

.btn--sm {
  padding: 0.6em 1.4em;
  font-size: var(--text-xs);
}
.btn--lg {
  padding: 1em 2.4em;
  font-size: var(--text-base);
}

/* Button group */
.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  align-items: center;
}

/* ─── Header ─────────────────────────────────────────────────── */
/* Skip link — visible only on keyboard focus */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--sp-4);
  z-index: 200;
  background: var(--text);
  color: var(--off-white);
  padding: var(--sp-2) var(--sp-4);
  border-radius: 0 0 var(--r-md) var(--r-md);
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none;
  transition: top var(--t-fast);
}
.skip-link:focus {
  top: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(253, 250, 245, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition:
    border-color var(--t-base),
    box-shadow var(--t-base),
    background var(--t-base);
}

.site-header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
  background: rgba(253, 250, 245, 0.97);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
  width: 100%;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  flex-shrink: 0;
  text-decoration: none;
  margin-left: 20px;
}
.header-logo img {
  height: calc(var(--header-h) - var(--sp-4));
  width: auto;
}
.header-logo img:first-child {
  height: calc(var(--header-h) - var(--sp-4));
  width: auto;
}

/* Primary nav */
.site-nav {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.site-nav a {
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--text-mid);
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--r-sm);
  transition:
    color var(--t-fast),
    background var(--t-fast);
  white-space: nowrap;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--text);
  background: var(--surface);
}
.site-nav a[aria-current="page"] {
  font-weight: 500;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--sp-2);
  border-radius: var(--r-sm);
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text);
  transition:
    transform var(--t-base),
    opacity var(--t-base);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: var(--sp-4);
  z-index: 99;
  box-shadow: var(--shadow-lg);
}
.mobile-nav.open {
  display: block;
}
.mobile-nav a {
  display: block;
  padding: var(--sp-3) var(--sp-4);
  color: var(--text-mid);
  font-size: var(--text-base);
  border-radius: var(--r-sm);
  transition: background var(--t-fast);
}
.mobile-nav a:hover {
  background: var(--surface);
  color: var(--text);
}
.mobile-nav .btn {
  width: 100%;
  margin-top: var(--sp-3);
  justify-content: center;
}

/* Main content offset for fixed header */
body {
  padding-top: var(--header-h);
}

/* ─── Hero sections ─────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--surface);
}

.hero--full {
  min-height: 100svh;
}
.hero--medium {
  min-height: 60vh;
}
.hero--small {
  min-height: 40vh;
}

/* Decorative beige gradient background */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    var(--surface-2) 0%,
    var(--surface) 40%,
    var(--bg) 100%
  );
  z-index: 0;
}

/* Decorative woman figure in hero background */
.hero-brand-deco {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  height: 72%;
  width: auto;
  opacity: 0.07;
  z-index: 1;
  pointer-events: none;
  user-select: none;
}

/* Hero with photo overlay */
.hero--photo::before {
  background: var(--overlay);
  z-index: 1;
}
.hero--photo .hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content--center {
  text-align: center;
}
.hero-content--center .btn-group {
  justify-content: center;
}
.hero-content--center p {
  margin-inline: auto;
}

.hero-eyebrow {
  color: var(--accent-dark);
  margin-bottom: var(--sp-4);
}

.hero h1 {
  margin-bottom: var(--sp-6);
}

.hero--photo h1,
.hero--photo .hero-subtitle {
  color: var(--off-white);
}
.hero--photo .hero-eyebrow {
  color: rgba(253, 250, 245, 0.8);
}

.hero-subtitle {
  font-size: var(--text-lg);
  line-height: 1.65;
  color: var(--text-mid);
  margin-bottom: var(--sp-8);
  max-width: 60ch;
}

/* Decorative arch shape at bottom of hero */
.hero-arch {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--bg);
  border-radius: 50% 50% 0 0 / 80px 80px 0 0;
  z-index: 3;
}

/* ─── Section headers ─────────────────────────────────────────── */
.section-header {
  margin-bottom: var(--sp-12);
}
.section-header--center {
  text-align: center;
}
.section-header--center p {
  margin-inline: auto;
}
.section-header p {
  color: var(--text-mid);
  font-size: var(--text-lg);
  margin-top: var(--sp-4);
  max-width: 60ch;
}

/* ─── Image shapes ───────────────────────────────────────────── */
.img-arch {
  border-radius: 50% 50% 0 0 / 60% 60% 0 0;
  overflow: hidden;
  aspect-ratio: 3/4;
  object-fit: cover;
  width: 100%;
}
.img-rounded {
  border-radius: var(--r-lg);
  overflow: hidden;
  object-fit: cover;
}
.img-square {
  aspect-ratio: 1/1;
  object-fit: cover;
}
.img-portrait {
  aspect-ratio: 3/4;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/* Image wrapper with arch */
.img-arch-wrap {
  border-radius: 50% 50% 0 0 / 60% 60% 0 0;
  overflow: hidden;
  aspect-ratio: 3/4;
  width: 100%;
  position: relative;
}
.img-arch-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Rounded wrapper */
.img-rounded-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  width: 100%;
  position: relative;
}
.img-rounded-wrap img,
.img-rounded-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Square wrapper */
.img-square-wrap {
  aspect-ratio: 1/1;
  overflow: hidden;
  width: 100%;
  position: relative;
}
.img-square-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ─── Cards ──────────────────────────────────────────────────── */
/* Service card */
.service-card {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  transition: transform var(--t-base);
}
.service-card:hover {
  transform: translateY(-4px);
}

.service-card__image {
  border-radius: 50% 50% 0 0 / 60% 60% 0 0;
  overflow: hidden;
  aspect-ratio: 3/4;
  width: 100%;
}
.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.service-card:hover .service-card__image img {
  transform: scale(1.04);
}

.service-card__body {
  padding-inline: var(--sp-4);
}
.service-card__label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: var(--sp-2);
}
.service-card__title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 400;
  margin-bottom: var(--sp-3);
}
.service-card__text {
  color: var(--text-mid);
  font-size: var(--text-sm);
}

/* Philosophy card */
.philosophy-card {
  padding: var(--sp-8);
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  transition:
    box-shadow var(--t-base),
    transform var(--t-base);
}
.philosophy-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.philosophy-card__icon {
  width: 48px;
  height: 48px;
  background: var(--surface);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-5);
}
.philosophy-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent-dark);
}
.philosophy-card__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  margin-bottom: var(--sp-3);
}
.philosophy-card__text {
  color: var(--text-mid);
  font-size: var(--text-sm);
  line-height: 1.7;
}

/* Product card */
.product-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition:
    box-shadow var(--t-base),
    transform var(--t-base);
  text-decoration: none;
  color: inherit;
}
.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.product-card__image {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--surface);
}
.product-card__image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.product-card:hover .product-card__image > img {
  transform: scale(1.05);
}

.product-card__badge {
  position: absolute;
  top: var(--sp-3);
  left: var(--sp-3);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--off-white);
  background: var(--text);
  padding: 3px var(--sp-3);
  border-radius: var(--r-full);
}

.product-card__body {
  padding: var(--sp-5) var(--sp-5) var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  flex: 1;
}
.product-card__gamme {
  font-size: var(--text-xs);
  color: var(--accent-dark);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.product-card__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  line-height: 1.3;
}
.product-card__desc {
  font-size: var(--text-sm);
  color: var(--text-mid);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Product badges row */
.product-badges {
  display: flex;
  gap: var(--sp-2);
  flex-wrap: wrap;
  margin-top: var(--sp-3);
}
.product-badge {
  font-size: var(--text-xs);
  font-weight: 500;
  padding: 3px var(--sp-2);
  border-radius: var(--r-full);
  background: var(--surface);
  color: var(--text-mid);
  border: 1px solid var(--border);
}
.product-badge--green {
  background: #eef7ee;
  color: #2d6a2d;
  border-color: #b8ddb8;
}

/* Review / testimonial card */
.review-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
  border: 1px solid var(--border);
  position: relative;
  transition: box-shadow var(--t-base);
}
.review-card:hover {
  box-shadow: var(--shadow-md);
}

.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: var(--sp-4);
}
.review-star {
  color: var(--accent);
  font-size: var(--text-base);
}

.review-text {
  font-style: italic;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  line-height: 1.65;
  color: var(--text);
  margin-bottom: var(--sp-6);
}
.review-author {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: var(--r-full);
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--accent-dark);
  flex-shrink: 0;
}
.review-name {
  font-weight: 500;
  font-size: var(--text-sm);
}
.review-date {
  font-size: var(--text-xs);
  color: var(--text-light);
}

/* ─── Pricing table ──────────────────────────────────────────── */
.pricing-section {
}

.pricing-category {
  margin-bottom: var(--sp-12);
}
.pricing-category:last-child {
  margin-bottom: 0;
}

.pricing-category__header {
  margin-bottom: var(--sp-6);
  padding-bottom: var(--sp-4);
  border-bottom: 2px solid var(--surface-2);
}
.pricing-category__title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 400;
  color: var(--text);
}
.pricing-category__note {
  font-size: var(--text-sm);
  color: var(--text-light);
  margin-top: var(--sp-1);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
}
.pricing-table th {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  padding: var(--sp-3) var(--sp-4);
  text-align: left;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.pricing-table th:not(:first-child) {
  text-align: center;
}

.pricing-table td {
  padding: var(--sp-4) var(--sp-4);
  border-bottom: 1px solid rgba(223, 208, 188, 0.4);
  vertical-align: top;
}
.pricing-table td:not(:first-child) {
  text-align: center;
}

.pricing-table tr:hover td {
  background: rgba(245, 237, 224, 0.4);
}

.pricing-table__name {
  font-weight: 500;
  color: var(--text);
  font-size: var(--text-base);
}
.pricing-table__detail {
  font-size: var(--text-xs);
  color: var(--text-light);
  font-style: italic;
  margin-top: 2px;
}
.pricing-table__price {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
}
.pricing-table__note {
  font-size: var(--text-xs);
  color: var(--accent-dark);
  font-style: italic;
}

/* ─── CTA sections ─────────────────────────────────────────── */
.cta-section {
  background: var(--surface);
  border-radius: var(--r-xl);
  padding: var(--sp-16) var(--sp-8);
  text-align: center;
}
.cta-section--dark {
  background: var(--text);
  color: var(--off-white);
}
.cta-section h2 {
  margin-bottom: var(--sp-4);
  color: inherit;
}
.cta-section p {
  color: var(--text-mid);
  margin-bottom: var(--sp-8);
  margin-inline: auto;
  font-size: var(--text-lg);
}
.cta-section--dark p {
  color: rgba(253, 250, 245, 0.7);
}

/* Full-width CTA band */
.cta-band {
  background: var(--surface-2);
  padding: var(--sp-12) 0;
}
.cta-band__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
}
.container .cta-band .cta-band__inner {
  padding-inline: var(--sp-6);
}
.cta-band__text h3 {
  margin-bottom: var(--sp-2);
}
.cta-band__text p {
  color: var(--text-mid);
  max-width: 50ch;
}

/* ─── Hours / Contact ─────────────────────────────────────────── */
.hours-table {
  width: 100%;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--r-sm);
  transition: background var(--t-fast);
}
.hours-row:hover {
  background: var(--surface);
}
.hours-row.today {
  background: var(--surface-2);
  font-weight: 500;
}
.hours-row.today .hours-day::after {
  content: " (aujourd'hui)";
  font-size: var(--text-xs);
  color: var(--accent-dark);
  font-weight: 400;
}
.hours-closed {
  color: var(--text-light);
  font-style: italic;
}
.hours-open {
  color: var(--text);
}

/* Contact block */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}
.contact-item {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
}
.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--surface);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent-dark);
}
.contact-label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 2px;
}
.contact-value {
  font-size: var(--text-base);
  font-weight: 400;
  color: var(--text);
}
.contact-value a:hover {
  color: var(--accent-dark);
}

/* Map embed */
.map-embed {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 16/9;
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

/* Social links */
.social-links {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
}
.social-link {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-4);
  background: var(--surface);
  border-radius: var(--r-full);
  border: 1px solid var(--border);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text);
  transition:
    background var(--t-fast),
    border-color var(--t-fast),
    transform var(--t-fast);
  text-decoration: none;
}
.social-link:hover {
  background: var(--surface-2);
  border-color: var(--accent);
  transform: translateY(-1px);
}
.social-link svg {
  width: 18px;
  height: 18px;
}

/* ─── Reservation iframe ──────────────────────────────────────── */
.reservation-wrapper {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.reservation-wrapper .iframe-wrapper {
  width: 100%;
  height: 1400px;
  overflow: auto;
}
.reservation-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  /* margin-top: -150px; */
}

/* ─── Certificate gallery ───────────────────────────────────── */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}
.cert-card {
  aspect-ratio: 297/210;
  background: var(--surface);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow var(--t-base);
}
.cert-card:hover {
  box-shadow: var(--shadow-md);
}
.cert-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cert-placeholder {
  text-align: center;
  padding: var(--sp-6);
  color: var(--text-light);
}
.cert-placeholder svg {
  width: 48px;
  height: 48px;
  stroke: var(--border);
  margin: 0 auto var(--sp-3);
}
.cert-placeholder p {
  font-size: var(--text-xs);
  font-style: italic;
  max-width: 20ch;
  margin-inline: auto;
}

/* ─── Diagnostic / Coming soon ──────────────────────────────── */
.coming-soon {
  text-align: center;
  padding: var(--sp-20) var(--sp-8);
  background: var(--surface);
  border-radius: var(--r-xl);
  border: 1px dashed var(--accent);
}
.coming-soon__icon {
  width: 80px;
  height: 80px;
  background: var(--surface-2);
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-6);
}
.coming-soon__icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--accent-dark);
}
.coming-soon h3 {
  margin-bottom: var(--sp-4);
}
.coming-soon p {
  color: var(--text-mid);
  margin-inline: auto;
}

/* ─── Split layout (text + image) ──────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}
.split--reverse {
  direction: rtl;
}
.split--70-30 {
  grid-template-columns: 7fr 3fr;
}
.split--reverse > * {
  direction: ltr;
}

.split__text {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}
.split__text h2 {
  line-height: 1.15;
}
.split__text p {
  color: var(--text-mid);
}

/* ─── Stat blocks ─────────────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-1);
}
.stat-item {
  padding: var(--sp-8);
  text-align: center;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
}
.stat-item:first-child {
  border-radius: var(--r-lg) 0 0 var(--r-lg);
}
.stat-item:last-child {
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
}
.stat-value {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: 300;
  color: var(--text);
  line-height: 1;
  margin-bottom: var(--sp-2);
}
.stat-label {
  font-size: var(--text-base);
  color: var(--text-mid);
  letter-spacing: 0.04em;
  line-height: 1.4;
}

/* ─── Réalisations gallery (infinite marquee) ────────────── */
.gallery-scroll {
  overflow: hidden;
  padding-block: var(--sp-4);
}
.gallery-scroll__track {
  /* inline-flex shrinks to content width — more reliable than
     display:flex + width:max-content on iOS Safari */
  display: inline-flex;
  will-change: transform;
  -webkit-animation: marquee-scroll 28s linear infinite;
  animation: marquee-scroll 28s linear infinite;
}
.gallery-scroll__track:hover {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}
.gallery-scroll__item {
  flex: 0 0 160px;
  aspect-ratio: 3/4;
  border-radius: var(--r-md);
  overflow: hidden;
  margin-right: var(--sp-3);
}
.gallery-scroll__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-scroll__track:hover .gallery-scroll__item img {
  transform: scale(1.03);
}
/* --marquee-offset is set in JS from measured item widths;
   -50% is a safe fallback before JS runs */
@-webkit-keyframes marquee-scroll {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(var(--marquee-offset, -50%));
    transform: translateX(var(--marquee-offset, -50%));
  }
}
@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(var(--marquee-offset, -50%));
  }
}
@media (max-width: 768px) {
  .gallery-scroll__item {
    flex: 0 0 110px;
    margin-right: var(--sp-2);
  }
}
@media (prefers-reduced-motion: reduce) {
  .gallery-scroll__track {
    -webkit-animation: none;
    animation: none;
  }
}

/* ─── Notice / Advice blocks ─────────────────────────────── */
.advice-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.advice-item {
  display: flex;
  gap: var(--sp-4);
  padding: var(--sp-5);
  background: var(--surface);
  border-radius: var(--r-md);
  border-left: 3px solid var(--accent);
}
.advice-item svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent-dark);
  flex-shrink: 0;
  margin-top: 2px;
}
.advice-item p {
  color: var(--text-mid);
  font-size: var(--text-sm);
  max-width: none;
}
.advice-item strong {
  color: var(--text);
  display: block;
  margin-bottom: 2px;
}

/* Cancellation policy */
.policy-block {
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  padding: var(--sp-8);
}
.policy-block h4 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  margin-bottom: var(--sp-4);
}
.policy-block p {
  color: var(--text-mid);
}

/* ─── Product detail page ────────────────────────────────── */
.product-detail {
  padding-top: var(--sp-16);
}
.product-detail__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: start;
}
.product-detail__image {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--surface);
}
.product-detail__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-detail__logo-overlay {
  position: absolute;
  bottom: var(--sp-4);
  right: var(--sp-4);
  width: 56px;
  height: 56px;
  background: rgba(42, 31, 20, 0.72);
  border-radius: var(--r-md);
  padding: var(--sp-2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-detail__logo-overlay img {
  filter: brightness(0) invert(1);
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-detail__info {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
}
.product-detail__gamme {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-dark);
}
.product-detail__title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
  font-weight: 400;
  line-height: 1.1;
}
.product-detail__format {
  font-size: var(--text-sm);
  color: var(--text-light);
}

.product-detail__chars {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
}
.product-char {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-1);
  padding: var(--sp-4) var(--sp-5);
  background: var(--surface);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  min-width: 90px;
  text-align: center;
}
.product-char__value {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--accent-dark);
}
.product-char__label {
  font-size: var(--text-xs);
  color: var(--text-light);
  letter-spacing: 0.05em;
}

.product-detail__section {
}
.product-detail__section h4 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  margin-bottom: var(--sp-3);
  color: var(--text);
}
.product-detail__ingredients {
  font-size: var(--text-xs);
  color: var(--text-light);
  line-height: 1.8;
}

/* ─── SEO page specifics ──────────────────────────────────── */
.seo-section {
  padding-block: var(--sp-12);
}
.internal-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--sp-4);
}
.internal-link {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-4);
  background: var(--surface);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  transition:
    background var(--t-fast),
    border-color var(--t-fast);
}
.internal-link:hover {
  background: var(--surface-2);
  border-color: var(--accent);
}
.internal-link svg {
  width: 16px;
  height: 16px;
  stroke: var(--accent-dark);
  flex-shrink: 0;
}

/* ─── Diagnostic placeholder ──────────────────────────────── */
.diagnostic-placeholder {
  text-align: center;
  padding: var(--sp-24) var(--sp-8);
}
.diagnostic-placeholder .eyebrow {
  display: block;
  margin-bottom: var(--sp-6);
}

/* ─── Legal / Mentions ──────────────────────────────────── */
.legal-content {
  max-width: 72ch;
  margin-inline: auto;
  padding-block: var(--sp-16);
}
.legal-content h2 {
  font-size: var(--text-2xl);
  margin-top: var(--sp-10);
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid var(--border);
}
.legal-content h3 {
  font-size: var(--text-xl);
  margin-top: var(--sp-6);
  margin-bottom: var(--sp-3);
}
.legal-content p,
.legal-content li {
  color: var(--text-mid);
  font-size: var(--text-sm);
  line-height: 1.8;
}
.legal-content ul {
  margin-left: var(--sp-5);
  list-style: disc;
}
.legal-content li {
  margin-bottom: var(--sp-2);
}
.legal-content a {
  color: var(--accent-dark);
  text-decoration: underline;
}

/* ─── Footer ─────────────────────────────────────────────── */
.site-footer {
  background: var(--text);
  color: rgba(253, 250, 245, 0.85);
  padding: var(--sp-16) 0 var(--sp-8);
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-10);
  padding-bottom: var(--sp-12);
  border-bottom: 1px solid rgba(253, 250, 245, 0.12);
}

.footer-brand {
}
.footer-brand__logo {
  margin-bottom: var(--sp-5);
  filter: brightness(0) invert(1);
  opacity: 0.85;
  height: 90px;
  width: auto;
}
.footer-brand__desc {
  font-size: var(--text-sm);
  line-height: 1.7;
  color: rgba(253, 250, 245, 0.6);
  margin-bottom: var(--sp-5);
  max-width: 28ch;
}
.footer-brand__social {
  display: flex;
  gap: var(--sp-3);
}
.footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: var(--r-full);
  border: 1px solid rgba(253, 250, 245, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    border-color var(--t-fast),
    background var(--t-fast);
}
.footer-social-link:hover {
  border-color: var(--accent);
  background: rgba(201, 168, 130, 0.15);
}
.footer-social-link svg {
  width: 16px;
  height: 16px;
  stroke: rgba(253, 250, 245, 0.8);
}

.footer-col__title {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(253, 250, 245, 0.55);
  margin-bottom: var(--sp-4);
}
.footer-col__links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.footer-col__links a {
  font-size: var(--text-sm);
  color: rgba(253, 250, 245, 0.65);
  transition: color var(--t-fast);
}
.footer-col__links a:hover {
  color: rgba(253, 250, 245, 1);
}

.footer-hours {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.footer-hour-row {
  display: flex;
  justify-content: space-between;
  font-size: var(--text-xs);
  gap: var(--sp-4);
}
.footer-hour-day {
  color: rgba(253, 250, 245, 0.5);
}
.footer-hour-time {
  color: rgba(253, 250, 245, 0.85);
}
.footer-hour-row.today .footer-hour-day,
.footer-hour-row.today .footer-hour-time {
  color: var(--accent);
}

.footer-address {
  font-size: var(--text-sm);
  color: rgba(253, 250, 245, 0.65);
  line-height: 1.7;
}
.footer-address a {
  color: rgba(253, 250, 245, 0.65);
}
.footer-address a:hover {
  color: rgba(253, 250, 245, 1);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-4);
  padding-top: var(--sp-8);
}
.footer-copyright {
  font-size: var(--text-xs);
  color: rgba(253, 250, 245, 0.35);
}
.footer-legal-links {
  display: flex;
  gap: var(--sp-5);
}
.footer-legal-links a {
  font-size: var(--text-xs);
  color: rgba(253, 250, 245, 0.35);
  transition: color var(--t-fast);
}
.footer-legal-links a:hover {
  color: rgba(253, 250, 245, 0.7);
}

/* ─── Scroll animations ─────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--delay-1 {
  transition-delay: 0.1s;
}
.reveal--delay-2 {
  transition-delay: 0.2s;
}
.reveal--delay-3 {
  transition-delay: 0.3s;
}
.reveal--delay-4 {
  transition-delay: 0.4s;
}
.reveal--delay-5 {
  transition-delay: 0.5s;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ─── Utilities ─────────────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
.divider {
  height: 1px;
  background: var(--border);
  margin-block: var(--sp-12);
}
.mt-4 {
  margin-top: var(--sp-4);
}
.mt-6 {
  margin-top: var(--sp-6);
}
.mt-8 {
  margin-top: var(--sp-8);
}
.mt-12 {
  margin-top: var(--sp-12);
}
.mb-4 {
  margin-bottom: var(--sp-4);
}
.mb-6 {
  margin-bottom: var(--sp-6);
}
.mb-8 {
  margin-bottom: var(--sp-8);
}

/* Tag / pill */
.tag {
  display: inline-block;
  padding: 2px var(--sp-3);
  background: var(--surface-2);
  border-radius: var(--r-full);
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--text-mid);
  letter-spacing: 0.06em;
}

/* ─── Responsive — Mobile first ──────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-8);
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 64px;
    --sp-20: 3rem;
    --sp-24: 4rem;
    --sp-32: 5rem;
  }

  /* Header nav hidden on mobile — CTA also hidden (present in mobile drawer) */
  .site-nav,
  .header-actions .btn {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  /* Hero adjustments */
  .hero {
    min-height: 80vh;
  }
  .hero--full {
    min-height: 85svh;
  }

  /* Grids */
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .split,
  .split--reverse,
  .split--70-30 {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }
  .split--reverse {
    direction: ltr;
  }

  .product-detail__grid {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }

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

  .stats-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-1);
  }
  .stat-item:first-child {
    border-radius: var(--r-lg) var(--r-lg) 0 0;
  }
  .stat-item:last-child {
    border-radius: 0 0 var(--r-lg) var(--r-lg);
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  /* Pricing */
  .pricing-table {
    font-size: var(--text-sm);
  }
  .pricing-table th,
  .pricing-table td {
    padding: var(--sp-3) var(--sp-2);
  }

  /* CTA band */
  .cta-band__inner {
    flex-direction: column;
    text-align: center;
  }

  /* Header actions */
  .header-actions {
    gap: var(--sp-2);
  }
}

@media (max-width: 480px) {
  .btn-group {
    flex-direction: column;
    align-items: stretch;
  }
  .btn-group .btn {
    justify-content: center;
  }
  .hero-subtitle {
    font-size: var(--text-base);
  }

  .pricing-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .product-detail__chars {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .product-char {
    flex: 1;
    min-width: 70px;
  }

  .cta-section {
    border-radius: var(--r-lg);
    padding: var(--sp-10) var(--sp-5);
  }
}

/* ─── Print styles ──────────────────────────────────────── */
@media print {
  .site-header,
  .site-footer,
  .btn,
  .nav-toggle,
  .mobile-nav {
    display: none;
  }
  body {
    padding-top: 0;
  }
}

/* Photo placeholder */
.photo-placeholder {
  background: linear-gradient(135deg, var(--surface-2) 0%, var(--surface) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 260px;
  color: var(--text-light);
  font-size: var(--text-xs);
  font-style: italic;
  text-align: center;
  padding: var(--sp-6);
  gap: var(--sp-3);
}
.photo-placeholder span {
  max-width: 20ch;
}

/* Table-responsive wrapper */
.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* Hide phone button in header on tablet — prevents overflow on iPad Pro 11" */
@media (max-width: 1024px) {
  .header-actions .btn--phone {
    display: none;
  }
}
