/* =========================================================
   Professional Nail Academy — Nuoro
   Brand palette inspired by the Artistic Nails logo
   ========================================================= */

:root {
  /* Brand */
  --ink: #111111;
  --ink-soft: #2b2728;
  --paper: #faf6f1;
  --cream: #f3ede4;
  --line: rgba(17, 17, 17, 0.12);
  --line-strong: rgba(17, 17, 17, 0.22);
  --muted: #6b6260;
  --red: #d11b2c;
  --red-dark: #a3121f;
  --red-soft: rgba(209, 27, 44, 0.08);
  --white: #ffffff;

  /* Type */
  --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Layout */
  --header-h: 86px;
  --shell: min(1240px, calc(100% - 48px));
  --radius: 4px;
  --radius-lg: 10px;

  --shadow-sm: 0 4px 16px rgba(17, 17, 17, 0.06);
  --shadow-md: 0 18px 40px rgba(17, 17, 17, 0.12);
  --shadow-lg: 0 30px 80px rgba(17, 17, 17, 0.18);
}

/* ============== Reset ============== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}
body.nav-open { overflow: hidden; }
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

.page-shell { width: var(--shell); margin-inline: auto; }

.skip-link {
  position: absolute; top: -100px; left: 16px;
  background: var(--ink); color: var(--white);
  padding: 12px 18px; border-radius: var(--radius);
  font-weight: 600; z-index: 200;
}
.skip-link:focus { top: 16px; outline: 3px solid var(--red); }

/* ============== Headings ============== */
h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.05;
  color: var(--ink);
}
h1 em, h2 em, h3 em {
  font-style: italic;
  font-weight: 400;
  color: var(--red);
}

p { margin: 0; }

.eyebrow {
  display: inline-block;
  margin: 0 0 18px;
  padding: 6px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.6);
}
.eyebrow.on-dark {
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.06);
}

/* ============== Buttons ============== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; }

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(209, 27, 44, 0.28);
}
.btn-primary:hover { background: var(--red-dark); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-ghost:hover { border-color: var(--ink); background: rgba(17, 17, 17, 0.04); }
.btn-ghost.on-dark { color: var(--white); border-color: rgba(255, 255, 255, 0.4); }
.btn-ghost.on-dark:hover { background: rgba(255, 255, 255, 0.1); border-color: var(--white); }

.btn-light {
  background: var(--white);
  color: var(--ink);
}
.btn-light:hover { background: var(--cream); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  color: var(--red);
  font-weight: 600;
  letter-spacing: 0.04em;
  border-bottom: 1.5px solid currentColor;
  padding-bottom: 2px;
}
.text-link.on-dark { color: var(--white); }
.text-link:hover { gap: 12px; }

/* ============== Header ============== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(250, 246, 241, 0.78);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.site-header.is-scrolled {
  background: rgba(250, 246, 241, 0.96);
  border-bottom-color: var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.brand-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
  flex: 0 0 auto;
}
.brand-meta { display: grid; gap: 2px; min-width: 0; }
.brand-meta strong {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
}
.brand-meta span {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 500;
}
.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--ink);
  transition: color 0.2s ease, background 0.2s ease;
}
.site-nav a:hover { color: var(--red); }
.site-nav a.is-active {
  color: var(--red);
  background: var(--red-soft);
}

/* ============== Page hero (inner pages) ============== */
.page-hero {
  position: relative;
  padding: clamp(110px, 14vw, 180px) 0 clamp(80px, 9vw, 120px);
  background: var(--cream);
  overflow: hidden;
  isolation: isolate;
}
.page-hero.with-media {
  background: var(--ink);
  color: var(--white);
}
.page-hero.with-media::before {
  content: "";
  position: absolute; inset: 0;
  background-image: var(--page-hero-image);
  background-size: cover;
  background-position: var(--page-hero-position, center);
  z-index: -2;
  filter: saturate(110%);
}
.page-hero.with-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(17,17,17,0.78) 0%, rgba(17,17,17,0.5) 55%, rgba(17,17,17,0.3) 100%);
  z-index: -1;
}
.page-hero .breadcrumbs {
  display: flex;
  gap: 8px;
  align-items: center;
  margin: 0 0 22px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
}
.page-hero.with-media .breadcrumbs { color: rgba(255,255,255,0.65); }
.page-hero .breadcrumbs a { transition: color 0.2s ease; }
.page-hero .breadcrumbs a:hover { color: var(--red); }
.page-hero .breadcrumbs span[aria-current="page"] { color: var(--red); }
.page-hero h1 {
  font-size: clamp(44px, 6.5vw, 88px);
  font-weight: 500;
  max-width: 900px;
  line-height: 1.02;
}
.page-hero.with-media h1 { color: var(--white); }
.page-hero h1 em { color: var(--red); font-style: italic; }
.page-hero .lead {
  margin-top: 28px;
  max-width: 720px;
  font-size: clamp(16px, 1.4vw, 20px);
  color: var(--ink-soft);
  line-height: 1.6;
}
.page-hero.with-media .lead { color: rgba(255,255,255,0.85); }

/* ============== Service detail ============== */
.service-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
  padding-block: clamp(60px, 7vw, 90px);
  border-bottom: 1px solid var(--line);
}
.service-detail:last-child { border-bottom: 0; }
.service-detail.reverse .service-detail-media { order: 2; }
.service-detail-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.service-detail-body .service-number {
  display: inline-block;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 60px;
  color: var(--red);
  line-height: 1;
  margin-bottom: 8px;
}
.service-detail-body h2 {
  font-size: clamp(30px, 3.4vw, 44px);
  margin-bottom: 14px;
}
.service-detail-body > p {
  color: var(--muted);
  font-size: 16.5px;
  line-height: 1.7;
  margin-bottom: 22px;
}
.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 26px;
}
.feature-tags span {
  padding: 8px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
  background: var(--white);
}

/* ============== Academy curriculum ============== */
.curriculum {
  background: var(--white);
  padding: clamp(72px, 10vw, 120px) 0;
}
.curriculum-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.curriculum-card {
  padding: 36px 32px;
  background: var(--paper);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  display: grid;
  gap: 14px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.curriculum-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.curriculum-card .num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 40px;
  color: var(--red);
  line-height: 1;
}
.curriculum-card h3 {
  font-size: 22px;
  font-weight: 600;
}
.curriculum-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}
.curriculum-card ul {
  list-style: none;
  padding: 0;
  margin: 6px 0 0;
  display: grid;
  gap: 8px;
}
.curriculum-card ul li {
  position: relative;
  padding-left: 22px;
  color: var(--ink);
  font-size: 14px;
}
.curriculum-card ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 12px; height: 1.5px;
  background: var(--red);
}

/* ============== Stats band ============== */
.stats-band {
  background: var(--ink);
  color: var(--white);
  padding: clamp(50px, 6vw, 80px) 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.stat {
  text-align: center;
}
.stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 500;
  color: var(--red);
  line-height: 1;
}
.stat-label {
  margin-top: 12px;
  display: block;
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ============== Gallery full ============== */
.gallery-full {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  grid-auto-rows: 240px;
}
.gallery-full figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  position: relative;
}
.gallery-full figure img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.gallery-full figure:hover img { transform: scale(1.04); }
.gallery-full figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 14px 18px;
  background: linear-gradient(transparent, rgba(0,0,0,0.65));
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.gallery-full figure:hover figcaption { opacity: 1; transform: translateY(0); }
.gallery-full .tall { grid-row: span 2; }
.gallery-full .wide { grid-column: span 2; }

/* ============== Contact page ============== */
.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}
.contact-card {
  padding: 36px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.contact-card h3 {
  font-size: 22px;
  margin-bottom: 6px;
  font-weight: 600;
}
.contact-card p { color: var(--muted); font-size: 15px; margin-bottom: 18px; }
.contact-method {
  display: grid;
  gap: 12px;
}
.contact-method a {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.contact-method a:hover {
  transform: translateY(-2px);
  border-color: var(--red);
}
.contact-method .icon {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--red-soft);
  color: var(--red);
}
.contact-method .meta { display: grid; gap: 2px; }
.contact-method .meta-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--muted);
}
.contact-method .meta-value {
  font-family: var(--font-serif);
  font-size: 19px;
  color: var(--ink);
  font-weight: 500;
}
.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.map-frame iframe { display: block; width: 100%; height: 360px; border: 0; }

/* ============== Story / chi siamo ============== */
.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}
.story-timeline {
  display: grid;
  gap: 28px;
  margin-top: 32px;
}
.story-timeline li {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 22px;
  list-style: none;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.story-timeline li:last-child { border-bottom: 0; }
.story-timeline .year {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 500;
  color: var(--red);
  line-height: 1;
  font-style: italic;
}
.story-timeline .text strong {
  display: block;
  font-size: 17px;
  color: var(--ink);
  margin-bottom: 6px;
}
.story-timeline .text p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.65;
}

/* ============== Responsive add-on ============== */
@media (max-width: 1020px) {
  .service-detail, .service-detail.reverse { grid-template-columns: 1fr; }
  .service-detail.reverse .service-detail-media { order: 0; }
  .curriculum-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-full { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .contact-page-grid, .story-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .gallery-full { grid-template-columns: 1fr; grid-auto-rows: 260px; }
  .gallery-full .tall, .gallery-full .wide { grid-row: span 1; grid-column: span 1; }
  .stats-grid { grid-template-columns: 1fr; }
  .contact-card { padding: 26px; }
  .story-timeline li { grid-template-columns: 60px 1fr; gap: 14px; }
}

.site-nav .nav-cta {
  background: var(--red);
  color: var(--white);
  padding: 12px 22px;
  margin-left: 8px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 12px;
}
.site-nav .nav-cta:hover { background: var(--red-dark); color: var(--white); }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 16px;
  height: 1.5px;
  margin: 4px auto;
  background: var(--ink);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(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(-6px) rotate(-45deg); }

/* ============== Hero (text-only centered) ============== */
.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  background: var(--paper);
  overflow: hidden;
  isolation: isolate;
  display: grid;
  place-items: center;
  padding: clamp(50px, 6vw, 84px) 0;
}
.hero::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  transform: translate(-50%, -50%);
  opacity: 0;
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 960px;
  margin-inline: auto;
}
.hero .eyebrow {
  color: var(--ink);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.7);
  margin-bottom: 34px;
}
.hero h1 {
  font-size: clamp(46px, 6.5vw, 96px);
  color: var(--ink);
  letter-spacing: -0.02em;
  font-weight: 500;
  line-height: 1;
}
.hero h1 em {
  color: var(--red);
  font-style: italic;
}
.hero-lead {
  max-width: 640px;
  margin: 34px auto 0;
  font-size: clamp(16px, 1.3vw, 20px);
  color: var(--muted);
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 44px;
}
.hero .btn-ghost { color: var(--ink); border-color: var(--line-strong); }
.hero .btn-ghost:hover { background: rgba(17, 17, 17, 0.04); border-color: var(--ink); }

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px clamp(28px, 5vw, 64px);
  margin: clamp(38px, 4.5vw, 60px) auto 0;
  padding-top: clamp(24px, 2.6vw, 34px);
  border-top: 1px solid var(--line);
  max-width: 720px;
  width: 100%;
}
.hero-facts > div {
  display: grid;
  gap: 6px;
  text-align: center;
}
.fact-num {
  font-family: var(--font-serif);
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1;
  color: var(--ink);
  font-weight: 500;
}
.fact-num sup { font-size: 0.5em; color: var(--red); vertical-align: super; }
.fact-label {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ============== Section base ============== */
.section { padding: clamp(72px, 10vw, 130px) 0; }
.section[id] { scroll-margin-top: calc(var(--header-h) + 12px); }

.section-heading {
  max-width: 720px;
  margin-bottom: 64px;
}
.section-heading.center { margin-inline: auto; text-align: center; }
.section-heading h2 {
  margin-top: 4px;
  font-size: clamp(36px, 4.4vw, 60px);
}
.section-heading p {
  margin-top: 22px;
  font-size: clamp(15px, 1.2vw, 18px);
  color: var(--muted);
  line-height: 1.6;
}

/* ============== Statement band ============== */
.statement-band {
  padding: clamp(72px, 9vw, 130px) 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.statement-band p {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1.25;
  color: var(--ink);
  font-weight: 400;
  max-width: 900px;
  margin-inline: auto;
}
.statement-band em {
  font-style: italic;
  color: var(--red);
}

/* ============== Chapter shared ============== */
.chapter {
  padding: clamp(90px, 11vw, 160px) 0;
  background: var(--paper);
}
.chapter + .chapter { border-top: 1px solid var(--line); }
.chapter-header {
  display: flex;
  align-items: baseline;
  gap: 22px;
  margin-bottom: clamp(48px, 6vw, 84px);
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.chapter-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(48px, 6vw, 84px);
  line-height: 0.85;
  color: var(--red);
  font-weight: 500;
}
.chapter-tag {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}
.chapter-h2 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4.6vw, 68px);
  line-height: 1.03;
  font-weight: 500;
  margin-bottom: clamp(40px, 5vw, 60px);
  max-width: 900px;
}
.chapter-h2 em {
  color: var(--red);
  font-style: italic;
}
.chapter-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: var(--red);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1.5px solid currentColor;
  padding-bottom: 3px;
  transition: gap 0.2s ease;
}
.chapter-link:hover { gap: 12px; }

/* ============== Chapter · Chi siamo ============== */
.chapter-about .chapter-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: clamp(48px, 6vw, 90px);
  align-items: start;
}
.chapter-header.inline {
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.chapter-body h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4.2vw, 60px);
  line-height: 1.05;
  font-weight: 500;
  margin-bottom: 32px;
  max-width: 640px;
}
.chapter-body h2 em { color: var(--red); font-style: italic; }
.chapter-body .prose p {
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 560px;
}
.chapter-body .prose strong { color: var(--ink); }

.chapter-sidenotes {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 20px;
  align-self: start;
  padding-top: 62px;
}
.chapter-sidenotes li {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  align-items: baseline;
}
.chapter-sidenotes li:last-child { border-bottom: 1px solid var(--line); }
.sidenote-year {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 26px;
  color: var(--red);
  font-weight: 500;
  line-height: 1;
}
.sidenote-body {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
}

/* ============== Chapter · Menu servizi ============== */
.chapter-menu { background: var(--white); }
.menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.menu-row {
  display: grid;
  grid-template-columns: 1fr 44px;
  gap: 28px;
  align-items: center;
  padding: clamp(24px, 3vw, 34px) 0;
  border-top: 1px solid var(--line);
  transition: padding 0.3s ease;
}
.menu-row:last-child { border-bottom: 1px solid var(--line); }
.menu-row:hover { padding-left: 12px; }
.menu-body h3 {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 6px;
}
.menu-body p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 620px;
}
.menu-cta {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  color: var(--ink);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.menu-cta:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  transform: translateX(4px);
}
.menu-footer {
  margin-top: clamp(40px, 5vw, 60px);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px dashed var(--line-strong);
}
.menu-footer span {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

/* ============== Interlude ============== */
.interlude {
  background: var(--ink);
  color: var(--white);
  padding: clamp(80px, 10vw, 140px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.interlude::before {
  content: "";
  position: absolute;
  top: 30px; left: 50%;
  transform: translateX(-50%);
  width: 40px; height: 1px;
  background: var(--red);
}
.interlude-kicker {
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-weight: 700;
  margin-bottom: 30px;
}
.interlude-quote {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 56px);
  line-height: 1.15;
  color: var(--white);
  max-width: 900px;
  margin: 0 auto;
  font-weight: 400;
}
.interlude-quote em {
  color: var(--red);
  font-style: italic;
}
.interlude-sig {
  margin-top: 40px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  color: rgba(255,255,255,0.65);
}

/* ============== Chapter · Academy ============== */
.chapter-academy { background: var(--paper); }
.academy-editorial {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(48px, 6vw, 100px);
  align-items: start;
}
.academy-editorial .chapter-header { grid-column: 1 / -1; }
.academy-lead h2 {
  font-family: var(--font-serif);
  font-size: clamp(34px, 4.4vw, 62px);
  line-height: 1.05;
  font-weight: 500;
  margin-bottom: 30px;
}
.academy-lead h2 em { color: var(--red); font-style: italic; }
.academy-lead .prose p {
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 520px;
}
.academy-checklist {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}
.academy-checklist span {
  padding: 8px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
  background: var(--white);
}
.academy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 40px;
}
.academy-figure figure { margin: 0; }
.academy-figure img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 4px;
}
.academy-figure figcaption {
  display: flex;
  gap: 14px;
  align-items: baseline;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.figure-kicker {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--red);
  font-size: 16px;
}
.figure-text {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* ============== Filmstrip ============== */
.filmstrip {
  padding: clamp(80px, 10vw, 130px) 0;
  background: var(--cream);
  overflow: hidden;
}
.filmstrip-header {
  display: flex;
  align-items: baseline;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filmstrip-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.2vw, 46px);
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
}
.filmstrip-track {
  display: flex;
  gap: 18px;
  padding: 4px clamp(24px, 4vw, 48px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.filmstrip-track::-webkit-scrollbar { display: none; }
.filmstrip-track figure {
  flex: 0 0 clamp(220px, 24vw, 320px);
  margin: 0;
  scroll-snap-align: start;
}
.filmstrip-track img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 4px;
  transition: transform 0.5s ease;
}
.filmstrip-track figure:hover img { transform: scale(1.02); }
.filmstrip-track figcaption {
  margin-top: 12px;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.filmstrip-cta {
  margin-top: 40px;
}

/* ============== Chapter · Contatti (letterhead) ============== */
.chapter-contact { background: var(--paper); }
.letterhead-title {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5.5vw, 82px);
  line-height: 1;
  font-weight: 500;
  margin-bottom: clamp(56px, 6vw, 84px);
  max-width: 900px;
}
.letterhead-title em { color: var(--red); font-style: italic; }
.letterhead-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(32px, 4vw, 64px);
  padding: 44px 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.letterhead-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.letterhead-label {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 6px;
}
.letterhead-col address,
.letterhead-value {
  font-family: var(--font-serif);
  font-size: clamp(19px, 1.6vw, 24px);
  line-height: 1.35;
  color: var(--ink);
  font-style: normal;
  font-weight: 500;
}
.letterhead-value { transition: color 0.2s ease; }
.letterhead-value:hover { color: var(--red); }
.letterhead-link {
  margin-top: 8px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 3px;
  align-self: flex-start;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.letterhead-link:hover { color: var(--red); border-color: var(--red); }
.letterhead-hours {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.letterhead-hours li {
  display: grid;
  grid-template-columns: minmax(120px, auto) 1fr;
  gap: 12px;
  padding-bottom: 8px;
  border-bottom: 1px dashed var(--line);
  font-size: 14px;
}
.letterhead-hours li:last-child { border-bottom: 0; }
.letterhead-hours span:first-child {
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.04em;
}
.letterhead-hours span:last-child {
  color: var(--ink-soft);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 15px;
}
.letterhead-cta {
  margin-top: 44px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

@media (max-width: 1020px) {
  .chapter-about .chapter-grid,
  .academy-editorial,
  .letterhead-grid { grid-template-columns: 1fr; }
  .chapter-sidenotes { align-self: start; }
  .menu-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .menu-cta { display: none; }
}
@media (max-width: 640px) {
  .chapter-header { flex-direction: column; gap: 10px; align-items: flex-start; }
  .letterhead-hours li { grid-template-columns: 1fr; gap: 2px; padding-bottom: 12px; }
}

/* ============== Trust (legacy, kept for other pages) ============== */
.trust-section {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.trust-card {
  padding: 40px 32px;
  background: var(--paper);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}
.trust-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.trust-icon {
  display: inline-grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--red-soft);
  color: var(--red);
}
.trust-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
  font-weight: 600;
}
.trust-card p { color: var(--muted); font-size: 15px; }

/* ============== About ============== */
.about-section { background: var(--paper); }
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.about-media {
  position: relative;
}
.about-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 30%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-badge {
  position: absolute;
  bottom: -28px;
  right: -28px;
  width: 160px;
  height: 160px;
  display: grid;
  align-content: center;
  text-align: center;
  background: var(--ink);
  color: var(--white);
  border-radius: 50%;
  font-family: var(--font-serif);
  box-shadow: var(--shadow-md);
  padding: 14px;
}
.about-badge span {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}
.about-badge strong {
  display: block;
  font-size: 44px;
  color: var(--red);
  font-weight: 500;
  margin: 4px 0;
  line-height: 1;
}

.about-copy h2 { font-size: clamp(32px, 4vw, 54px); }
.about-copy .lead {
  margin: 26px 0 18px;
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink);
}
.about-copy p { color: var(--muted); font-size: 16px; }

.values-list {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: grid;
  gap: 14px;
}
.values-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
  font-size: 15px;
}
.values-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 11px;
  width: 14px; height: 1.5px;
  background: var(--red);
}

/* ============== Marquee ============== */
.marquee-band {
  background: var(--ink);
  color: var(--white);
  padding: 22px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 36px;
  white-space: nowrap;
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.2vw, 30px);
  font-style: italic;
  animation: marquee 38s linear infinite;
  width: max-content;
}
.marquee-track span { display: inline-block; }
.marquee-track span:nth-child(even) { color: var(--red); padding: 0 4px; font-size: 0.8em; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============== Services ============== */
.services-section { background: var(--white); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.service-card {
  display: grid;
  grid-template-rows: auto 1fr;
  background: var(--paper);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.service-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.service-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.service-card:hover .service-media img { transform: scale(1.04); }
.service-num {
  position: absolute;
  top: 20px; left: 20px;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
}
.service-body { padding: 30px 28px 32px; }
.service-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.service-card h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 14px;
}
.service-body > p { color: var(--muted); font-size: 14.5px; line-height: 1.65; }

.services-cta {
  margin-top: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 36px clamp(28px, 4vw, 48px);
  background: var(--cream);
  border-radius: var(--radius-lg);
}
.services-cta p {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.2vw, 28px);
  max-width: 560px;
}

/* ============== Academy ============== */
.academy-section {
  background:
    linear-gradient(160deg, var(--ink) 0%, #1a1313 100%);
  color: var(--white);
}
.academy-section h2 { color: var(--white); }
.academy-section h2 em { color: var(--red); }
.academy-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}
.academy-copy h2 { font-size: clamp(34px, 4.2vw, 56px); }
.academy-copy > p {
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 17px;
}

.academy-list {
  list-style: none;
  padding: 0;
  margin: 40px 0 0;
  display: grid;
  gap: 8px;
}
.academy-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.academy-list span {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 500;
  color: var(--red);
  line-height: 1;
  font-style: italic;
}
.academy-list strong {
  display: block;
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}
.academy-list p { color: rgba(255, 255, 255, 0.7); font-size: 14.5px; }

.academy-actions { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; margin-top: 36px; }

.academy-media { position: relative; }
.academy-media > img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.academy-quote {
  position: absolute;
  left: -32px;
  bottom: -28px;
  max-width: 320px;
  padding: 26px 28px;
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.academy-quote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 19px;
  line-height: 1.35;
}
.academy-quote cite {
  display: block;
  margin-top: 12px;
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
}

/* ============== Mission ============== */
.mission-section {
  background: var(--cream);
  text-align: center;
}
.mission-grid {
  max-width: 920px;
  margin-inline: auto;
}
.mission-section h2 {
  font-size: clamp(30px, 3.8vw, 52px);
  font-weight: 400;
  font-style: normal;
}
.mission-section h2 em {
  font-style: italic;
  color: var(--red);
}
.mission-section > .page-shell > p {
  max-width: 760px;
  margin: 32px auto 0;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.7;
}

/* ============== Gallery ============== */
.gallery-section { background: var(--paper); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}
.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  position: relative;
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.gallery-grid figure:hover img { transform: scale(1.04); }
.g-1 { grid-column: span 3; grid-row: span 2; }
.g-2 { grid-column: span 3; grid-row: span 1; }
.g-3 { grid-column: span 2; grid-row: span 1; }
.g-4 { grid-column: span 2; grid-row: span 1; }
.g-5 { grid-column: span 2; grid-row: span 1; }

/* ============== Contact ============== */
.contact-section {
  background: var(--ink);
  color: var(--white);
}
.contact-section h2 { color: var(--white); }
.contact-section h2 em { color: var(--red); }
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.85fr);
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
.contact-copy h2 { font-size: clamp(36px, 4.4vw, 58px); }
.contact-copy > p {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  max-width: 480px;
}
.contact-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 40px; }

.contact-panel {
  padding: 36px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
}
.contact-item {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.contact-item:first-child { padding-top: 0; }
.contact-label {
  display: block;
  margin-bottom: 8px;
  font-size: 10.5px;
  letter-spacing: 0.2em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--red);
}
.contact-item a {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--white);
  line-height: 1.3;
  transition: color 0.2s ease;
}
.contact-item a:hover { color: var(--red); }
.contact-hours { padding-top: 24px; }
.hours-list { display: grid; gap: 6px; margin: 14px 0 0; }
.hours-list div {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  padding: 6px 0;
  font-size: 14.5px;
}
.hours-list dt {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 11.5px;
  letter-spacing: 0.12em;
  align-self: center;
}
.hours-list dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

/* ============== Footer ============== */
.site-footer {
  background: #0a0a0a;
  color: rgba(255, 255, 255, 0.7);
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-logo {
  height: 72px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 18px;
}
.footer-brand-block p { font-size: 13px; line-height: 1.7; margin: 2px 0; color: rgba(255, 255, 255, 0.6); }
.footer-brand-block p strong { color: var(--white); font-size: 14px; }
.footer-col { display: grid; gap: 10px; align-content: start; }
.footer-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 8px;
}
.footer-col a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  padding-top: 28px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

/* ============== Reveal animation ============== */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============== Responsive ============== */
@media (max-width: 1020px) {
  :root { --header-h: 72px; }
  .nav-toggle { display: inline-grid; }
  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    height: calc(100svh - var(--header-h));
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 24px 24px 40px;
    background: var(--paper);
    border-top: 1px solid var(--line);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
  }
  .site-nav.is-open { transform: translateX(0); }
  .site-nav a {
    padding: 18px 8px;
    border-radius: 0;
    border-bottom: 1px solid var(--line);
    font-size: 22px;
    font-family: var(--font-serif);
  }
  .site-nav .nav-cta {
    margin: 24px 0 0;
    background: var(--red);
    color: var(--white);
    padding: 18px 22px;
    border-radius: 999px;
    text-align: center;
    font-size: 13px;
  }

  .brand-logo { height: 44px; }
  .brand-meta strong { font-size: 16px; }

  .hero::before,
  .hero::after { display: none; }
  .hero-facts { gap: 16px 24px; margin-top: 40px; padding-top: 24px; }

  .about-grid, .academy-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .academy-media { order: 2; }
  .about-badge { right: 0; }

  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-auto-rows: 180px; }
}

@media (max-width: 640px) {
  :root { --shell: min(100% - 28px, 1240px); }
  .header-inner { gap: 12px; }
  .brand-meta { display: none; }
  .brand-logo { height: 38px; }

  .hero { padding-block: 56px; }
  .hero h1 { font-size: clamp(40px, 11vw, 60px); }

  .section-heading { margin-bottom: 40px; }
  .hero-actions, .contact-actions, .academy-actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }

  .service-grid { grid-template-columns: 1fr; }
  .services-cta { flex-direction: column; align-items: stretch; text-align: center; }
  .services-cta .btn { width: auto; }

  .about-badge {
    width: 130px; height: 130px;
    bottom: -20px; right: 12px;
  }
  .about-badge strong { font-size: 34px; }

  .academy-quote {
    position: static;
    margin-top: 16px;
    max-width: none;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 280px;
  }
  .g-1, .g-2, .g-3, .g-4, .g-5 { grid-column: span 1; grid-row: span 1; }

  .contact-panel { padding: 24px; }
  .contact-item a { font-size: 18px; }
  .hours-list div { grid-template-columns: 50px 1fr; gap: 10px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 32px; }
  .footer-logo { height: 60px; }

}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .marquee-track { animation: none; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ============== Privacy page ============== */
.privacy-main {
  max-width: 880px;
  padding: clamp(60px, 8vw, 100px) 0 100px;
}
.privacy-main h1 {
  font-size: clamp(40px, 5vw, 64px);
  margin-bottom: 8px;
}
.privacy-main .subtitle { color: var(--muted); margin-bottom: 40px; }
.privacy-main h2 {
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 600;
  margin-top: 48px;
  margin-bottom: 16px;
  color: var(--ink);
}
.privacy-main p, .privacy-main li {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-soft);
}
.privacy-main p { margin-bottom: 16px; }
.privacy-main ul {
  padding-left: 22px;
  margin: 12px 0 20px;
}
.privacy-main li { margin-bottom: 6px; }
.privacy-main a { color: var(--red); font-weight: 600; }
.privacy-main a:hover { color: var(--red-dark); }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--red);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
}
.back-link:hover { gap: 12px; }
