/* ═══════════════════════════════════════════════════
   SEGNO STUDIO — tattoo studio case study
   designed by scompa.exe · 2026
   ═══════════════════════════════════════════════════ */

:root {
  --bg: #f5f0e4;
  --bg-alt: #ece4d0;
  --bg-deep: #1e1a18;
  --text: #1e1a18;
  --text-muted: #6e645a;
  --accent: #b5935a;
  --accent-deep: #8a6d3e;
  --accent-soft: #e0cfa6;
  --border: #d8cdb4;
  --max-w: 1240px;
  --font-serif: 'Fraunces', Georgia, serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; transition: all .3s var(--ease); }

::selection { background: var(--accent); color: var(--bg); }

/* ─── Typography ─── */
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 400; letter-spacing: -0.01em; line-height: 1.1; }
h1 { font-size: clamp(3rem, 7vw, 6rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.3rem, 2vw, 1.75rem); }
h4 { font-size: 1.1rem; font-weight: 500; }
p { font-size: 1rem; }
em, i { font-style: italic; color: var(--accent-deep); }

/* ─── Layout ─── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2.5rem; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}
.eyebrow::before {
  content: ''; width: 32px; height: 1px; background: var(--accent-deep);
}

.divider-svg {
  width: 140px; height: 24px;
  color: var(--accent);
  margin: 3rem auto;
  display: block;
  opacity: 0.7;
}

/* ─── Nav ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 1.5rem 2.5rem;
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(245, 241, 232, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.nav.scrolled { border-bottom-color: var(--border); }
.nav-logo { color: var(--text); height: 42px; width: auto; }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-size: 0.88rem;
  color: var(--text);
  font-weight: 400;
  position: relative;
  padding: 0.2rem 0;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--accent-deep);
  transition: width .3s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  padding: 0.6rem 1.3rem;
  border: 1px solid var(--text);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all .3s var(--ease);
}
.nav-cta:hover { background: var(--text); color: var(--bg); }
.nav-burger { display: none; background: none; border: 0; cursor: pointer; width: 28px; height: 24px; position: relative; }
.nav-burger span {
  display: block; position: absolute; left: 0; width: 100%; height: 1.5px;
  background: var(--text); transition: all .3s var(--ease);
}
.nav-burger span:nth-child(1) { top: 4px; }
.nav-burger span:nth-child(2) { top: 11px; }
.nav-burger span:nth-child(3) { top: 18px; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .3s var(--ease);
  text-decoration: none;
}
.btn-primary {
  background: var(--bg-deep);
  color: var(--bg);
  border-color: var(--bg-deep);
}
.btn-primary:hover {
  background: var(--accent-deep);
  border-color: var(--accent-deep);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover {
  border-color: var(--text);
  background: var(--bg-alt);
}
.btn-accent {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-accent:hover { background: var(--accent-deep); }

/* ─── Hero (home) ─── */
.hero {
  min-height: 100vh;
  padding: 10rem 2.5rem 4rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
}
.hero-content { position: relative; z-index: 2; }
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 9vw, 8rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  font-weight: 400;
  margin-bottom: 2rem;
}
.hero-title em {
  font-style: italic;
  color: var(--accent-deep);
  font-weight: 300;
}
.hero-desc {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--text-muted);
  max-width: 50ch;
  margin-bottom: 2.5rem;
  line-height: 1.65;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-visual {
  position: relative;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--accent);
}
.hero-visual svg { max-height: 100%; opacity: 0.55; }
.hero-visual::before {
  content: '';
  position: absolute;
  inset: 20% 10%;
  background: radial-gradient(circle at center, var(--accent-soft) 0%, transparent 70%);
  opacity: 0.4;
  z-index: -1;
}

.hero-meta {
  position: absolute;
  bottom: 3rem;
  left: 2.5rem;
  right: 2.5rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}

/* ─── Sections ─── */
.section { padding: 7rem 0; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--bg-deep); color: var(--bg); }
.section-dark .eyebrow { color: var(--accent-soft); }
.section-dark .eyebrow::before { background: var(--accent-soft); }
.section-dark h2 { color: var(--bg); }
.section-dark p { color: rgba(245, 241, 232, 0.75); }

.section-head { max-width: 640px; margin-bottom: 4rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head p { color: var(--text-muted); font-size: 1.1rem; margin-top: 1.25rem; }

/* ─── Pillars (home) ─── */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pillar {
  padding: 3rem 2.5rem;
  border-right: 1px solid var(--border);
}
.pillar:last-child { border-right: 0; }
.pillar-num {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--accent-deep);
  font-style: italic;
  margin-bottom: 1rem;
}
.pillar h3 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  margin-bottom: 1rem;
}
.pillar p { color: var(--text-muted); font-size: 0.96rem; }

/* ─── Featured gallery ─── */
.featured-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 300px 300px;
  gap: 1.2rem;
}
.featured-item {
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform .5s var(--ease);
}
.featured-item:first-child { grid-row: span 2; }
.featured-item:nth-child(4) { grid-column: span 2; }
.featured-item::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(45deg, transparent 48%, rgba(181, 147, 90, 0.10) 48%, rgba(181, 147, 90, 0.10) 52%, transparent 52%);
  background-size: 12px 12px;
}
.featured-item::after {
  content: attr(data-label);
  position: absolute;
  bottom: 1.2rem; left: 1.2rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--accent-deep);
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.featured-item:hover { transform: scale(0.98); }
.featured-item:hover::after { opacity: 1; }

/* ─── About preview (home) ─── */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}
.about-photo {
  aspect-ratio: 4/5;
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
}
.about-photo::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(135deg, transparent, transparent 14px, rgba(181, 147, 90, 0.12) 14px, rgba(181, 147, 90, 0.12) 15px);
}
.about-photo::after {
  content: '[ ritratto — Giulia ]';
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--accent-deep);
  opacity: 0.5;
  font-size: 0.9rem;
}
.about-preview h2 { margin-bottom: 2rem; }
.about-preview p { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 1.2rem; }

/* ─── Process (home) ─── */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.step {
  position: relative;
  padding-top: 3rem;
}
.step::before {
  content: '';
  position: absolute; top: 1.2rem; left: 0;
  width: 50px; height: 1px; background: var(--accent);
}
.step-n {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--accent-deep);
  margin-bottom: 0.6rem;
}
.step h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}
.step p { color: var(--text-muted); font-size: 0.95rem; }

/* ─── CTA block ─── */
.cta-block {
  padding: 6rem 0;
  text-align: center;
}
.cta-block h2 { max-width: 20ch; margin: 0 auto 1.5rem; }
.cta-block p { color: var(--text-muted); max-width: 50ch; margin: 0 auto 2.5rem; font-size: 1.1rem; }

/* ─── Footer ─── */
.footer {
  background: var(--bg-deep);
  color: var(--bg);
  padding: 5rem 0 2rem;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer-big {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  color: var(--bg);
}
.footer-big em { color: var(--accent-soft); font-style: italic; font-weight: 300; }
.footer-tag {
  color: rgba(245, 241, 232, 0.6);
  max-width: 34ch;
  font-size: 0.95rem;
}
.footer h4 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.footer ul { list-style: none; }
.footer li { margin-bottom: 0.65rem; }
.footer li a { color: rgba(245, 241, 232, 0.75); font-size: 0.95rem; }
.footer li a:hover { color: var(--bg); }
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(245, 241, 232, 0.15);
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(245, 241, 232, 0.5);
  letter-spacing: 0.05em;
}
.footer-bottom a { color: rgba(245, 241, 232, 0.7); }
.footer-bottom a:hover { color: var(--bg); }

/* ═══════════════════════════════════════════════════
   PAGE: STUDIO (about)
   ═══════════════════════════════════════════════════ */
.page-hero {
  padding: 10rem 0 5rem;
  border-bottom: 1px solid var(--border);
}
.page-hero h1 {
  max-width: 14ch;
  margin-bottom: 2rem;
}
.page-hero p {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 55ch;
}

.about-full {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
}
.about-full-photo {
  aspect-ratio: 3/4;
  background: var(--bg-alt);
  position: sticky;
  top: 8rem;
  position: relative;
  overflow: hidden;
}
.about-full-photo::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(135deg, transparent, transparent 14px, rgba(181, 147, 90, 0.12) 14px, rgba(181, 147, 90, 0.12) 15px);
}
.about-full-photo::after {
  content: '[ Giulia Ferrari — ritratto ]';
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--accent-deep);
  opacity: 0.5;
  font-size: 0.9rem;
}
.about-full-text h3 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  margin: 3rem 0 1.2rem;
}
.about-full-text h3:first-child { margin-top: 0; }
.about-full-text p {
  font-size: 1.08rem;
  color: var(--text-muted);
  margin-bottom: 1.3rem;
  line-height: 1.75;
}
.about-full-text p strong { color: var(--text); font-weight: 500; }

.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.value h4 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 0.8rem;
}
.value p { color: var(--text-muted); font-size: 0.95rem; }

.location {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.map-placeholder {
  aspect-ratio: 16/10;
  background:
    linear-gradient(0deg, rgba(181,147,90,0.10), rgba(181,147,90,0.10)),
    var(--bg-alt);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
}
.map-placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(181,147,90,0.14) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(181,147,90,0.14) 1px, transparent 1px);
  background-size: 40px 40px;
}
.map-placeholder::after {
  content: '📍';
  position: absolute;
  top: 42%; left: 48%;
  font-size: 2.5rem;
  filter: hue-rotate(60deg);
}

/* ═══════════════════════════════════════════════════
   PAGE: GALLERIA
   ═══════════════════════════════════════════════════ */
.filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.filter-btn {
  padding: 0.55rem 1.3rem;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: all .3s var(--ease);
}
.filter-btn:hover { color: var(--text); border-color: var(--text); }
.filter-btn.active {
  background: var(--bg-deep);
  color: var(--bg);
  border-color: var(--bg-deep);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.gallery-item {
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
  transition: transform .4s var(--ease);
  cursor: pointer;
}
.gallery-item:nth-child(1) { aspect-ratio: 3/4; }
.gallery-item:nth-child(2) { aspect-ratio: 1; }
.gallery-item:nth-child(3) { aspect-ratio: 3/4; }
.gallery-item:nth-child(4) { aspect-ratio: 4/5; }
.gallery-item:nth-child(5) { aspect-ratio: 1; }
.gallery-item:nth-child(6) { aspect-ratio: 4/5; }
.gallery-item:nth-child(7) { aspect-ratio: 1; }
.gallery-item:nth-child(8) { aspect-ratio: 3/4; }
.gallery-item:nth-child(9) { aspect-ratio: 1; }
.gallery-item:nth-child(10) { aspect-ratio: 4/5; }
.gallery-item:nth-child(11) { aspect-ratio: 3/4; }
.gallery-item:nth-child(12) { aspect-ratio: 1; }
.gallery-item::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 16px, rgba(181, 147, 90, 0.09) 16px, rgba(181, 147, 90, 0.09) 17px);
}
.gallery-item-overlay {
  position: absolute; inset: 0;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(to top, rgba(42,41,38,0.85), transparent 50%);
  opacity: 0;
  transition: opacity .3s var(--ease);
  color: var(--bg);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item:hover { transform: translateY(-4px); }
.gallery-item-title {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}
.gallery-item-meta {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 241, 232, 0.7);
}

/* ═══════════════════════════════════════════════════
   PAGE: CONTATTI
   ═══════════════════════════════════════════════════ */
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}
.booking-info h3 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  margin-bottom: 1rem;
}
.booking-info p { color: var(--text-muted); margin-bottom: 2rem; }
.contact-line {
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--border);
  display: flex; gap: 1.5rem; align-items: flex-start;
}
.contact-line:last-child { border-bottom: 0; }
.contact-line-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  min-width: 90px;
  padding-top: 0.15rem;
  font-weight: 500;
}
.contact-line-value { flex: 1; font-size: 1rem; }
.contact-line-value a:hover { color: var(--accent-deep); }

.booking-form {
  background: var(--bg-alt);
  padding: 3rem;
  border: 1px solid var(--border);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.form-field { margin-bottom: 1.5rem; }
.form-field label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
  font-weight: 500;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.9rem 1.1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: border-color .2s var(--ease);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent-deep);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-check { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.85rem; color: var(--text-muted); }
.form-check input { margin-top: 0.25rem; }

.booking-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  padding-top: 4rem;
  border-top: 1px solid var(--border);
}
.booking-step h4 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.8rem;
}
.booking-step .step-n {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--accent-deep);
  margin-bottom: 0.8rem;
  font-size: 1rem;
}
.booking-step p { color: var(--text-muted); font-size: 0.95rem; }

/* ═══════════════════════════════════════════════════
   PAGE: AFTERCARE
   ═══════════════════════════════════════════════════ */
.aftercare-intro {
  max-width: 720px;
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.timeline {
  display: grid;
  gap: 2rem;
}
.timeline-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 3rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.timeline-item:last-child { border-bottom: 0; }
.timeline-when {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--accent-deep);
  font-style: italic;
  position: sticky;
  top: 6rem;
}
.timeline-what h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  margin-bottom: 1rem;
  font-size: 1.35rem;
}
.timeline-what p { color: var(--text-muted); margin-bottom: 1rem; }
.timeline-what ul { list-style: none; padding-left: 0; }
.timeline-what li {
  padding: 0.4rem 0 0.4rem 1.5rem;
  position: relative;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.timeline-what li::before {
  content: '–';
  position: absolute; left: 0;
  color: var(--accent);
}

.dos-donts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 4rem;
}
.do-card, .dont-card {
  padding: 2rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
}
.do-card { border-left: 3px solid var(--accent); }
.dont-card { border-left: 3px solid #c67159; }
.do-card h4, .dont-card h4 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  margin-bottom: 1.2rem;
  font-weight: 500;
}
.do-card ul, .dont-card ul { list-style: none; }
.do-card li, .dont-card li {
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative;
  font-size: 0.95rem;
  color: var(--text);
}
.do-card li::before {
  content: '✓'; position: absolute; left: 0; color: var(--accent-deep); font-weight: 600;
}
.dont-card li::before {
  content: '×'; position: absolute; left: 0; color: #c67159; font-weight: 700; font-size: 1.1rem;
}

.download-block {
  background: var(--bg-deep);
  color: var(--bg);
  padding: 4rem 3rem;
  margin-top: 5rem;
  text-align: center;
}
.download-block h2 { color: var(--bg); margin-bottom: 1rem; }
.download-block p { color: rgba(245, 241, 232, 0.7); max-width: 50ch; margin: 0 auto 2rem; }

/* ═══════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .container { padding: 0 1.5rem; }
  .nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .nav-burger { display: block; }
  .nav-cta { display: none; }
  .hero {
    grid-template-columns: 1fr;
    padding: 8rem 1.5rem 3rem;
    min-height: auto;
  }
  .hero-visual { height: 400px; order: -1; }
  .hero-meta { position: static; flex-direction: column; gap: 0.5rem; margin-top: 3rem; }
  .pillars { grid-template-columns: 1fr; }
  .pillar { border-right: 0; border-bottom: 1px solid var(--border); }
  .pillar:last-child { border-bottom: 0; }
  .featured-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .featured-item:first-child, .featured-item:nth-child(4) {
    grid-column: span 2; grid-row: auto;
  }
  .about-preview, .about-full, .location, .booking-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-full-photo { position: relative; top: 0; max-width: 400px; margin: 0 auto; }
  .process, .values, .booking-steps { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 4rem 0; }
  .page-hero { padding: 8rem 0 3rem; }
  .booking-form { padding: 2rem 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .dos-donts { grid-template-columns: 1fr; }
  .timeline-item { grid-template-columns: 1fr; gap: 1rem; }
  .timeline-when { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 1rem; }
}

@media (max-width: 560px) {
  h1 { font-size: 3rem; }
  .hero-title { font-size: 3.2rem; }
  .process, .values, .booking-steps { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item { aspect-ratio: 4/5 !important; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ─── Mobile menu open ─── */
.nav-links.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--bg);
  padding: 2rem;
  border-bottom: 1px solid var(--border);
  gap: 1.5rem;
}

/* ─── Reveal animation ─── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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