/* ==========================================
   METAL HAIRCUT — GARAGE AESTHETIC
   ========================================== */

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

/* --- CUSTOM PROPERTIES --- */
:root {
  --bg-primary: #0A0A0A;
  --bg-secondary: #111111;
  --bg-card: #161616;
  --bg-card-hover: #1C1C1C;
  --accent: #D4A017;
  --accent-glow: #D4A01766;
  --accent-dim: #B8890F;
  --text-primary: #E8E4E0;
  --text-secondary: #8A8278;
  --text-muted: #5A554D;
  --rust: #8B2500;
  --border: #222;
  --border-light: #2A2A2A;
  --font-headline: 'Bebas Neue', 'Anton', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --font-mono: 'DM Mono', monospace;
  --font-raw: 'Walter Turncoat', cursive;
  --max-w: 1120px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 10rem;
}

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* --- NOISE OVERLAY --- */
.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

/* --- CONTAINER --- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* --- LINKS / GENERAL --- */
a { color: var(--accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--text-primary); }
img { max-width: 100%; height: auto; display: block; }

/* ==========================================
   HEADER / NAV
   ========================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.nav-bar {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem var(--space-md);
}

.nav-logo img {
  height: 40px;
  width: auto;
}

.nav-links-desktop {
  display: none;
  gap: 2rem;
}

.nav-link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.nav-link:hover {
  color: var(--text-primary);
  text-decoration: underline;
  text-decoration-style: wavy;
  text-underline-offset: 4px;
  text-decoration-color: rgba(212, 160, 23, 0.5);
}

.desktop-only { display: none !important; }

/* --- HAMBURGER --- */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- MOBILE MENU --- */
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: var(--space-md);
  padding-top: 0;
  gap: var(--space-sm);
  background: rgba(10, 10, 10, 0.98);
}
.mobile-menu.open { display: flex; }

.mobile-link {
  font-family: var(--font-headline);
  font-size: 1.8rem;
  color: var(--text-primary);
  letter-spacing: 0.05em;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}
.mobile-link:hover { color: var(--accent); }

.mobile-book {
  margin-top: var(--space-sm);
  text-align: center;
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn-book {
  display: inline-block;
  font-family: var(--font-headline);
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  padding: 0.85rem 2rem;
  background: var(--accent);
  color: var(--bg-primary);
  border: 2px solid var(--accent);
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
  position: relative;
}
.btn-book:hover {
  background: #E8B82A;
  color: var(--bg-primary);
  border-color: #E8B82A;
  transform: translateY(-1px);
  box-shadow:
    0 4px 20px rgba(212, 160, 23, 0.3),
    0 0 40px rgba(212, 160, 23, 0.1);
}
.btn-book:active {
  transform: translateY(1px);
  box-shadow: none;
}

/* ==========================================
   SECTION LABELS & HEADLINES
   ========================================== */
.section-label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-sm);
  text-shadow:
    1px 0 0 rgba(212, 160, 23, 0.1),
    -1px 0 0 rgba(212, 160, 23, 0.1);
}

.section-headline {
  font-family: var(--font-headline);
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: var(--space-lg);
}

.section {
  padding: var(--space-xl) 0;
  position: relative;
}

/* Alternate section backgrounds — subtle texture variation */
.about {
  background-color: #0D0B09;
}
.services {
  background:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 2px,
      rgba(255,255,255,0.008) 2px,
      rgba(255,255,255,0.008) 4px
    ),
    var(--bg-secondary);
}
.gallery {
  background-color: #111111;
}
.reviews {
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 5px,
      rgba(255,255,255,0.006) 5px,
      rgba(255,255,255,0.006) 6px
    ),
    var(--bg-primary);
}
.faq {
  background-color: #0D0B09;
}

/* Rough horizontal dividers between sections — painted stripe effect */
.section::before {
  content: '';
  display: block;
  width: 100%;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(212, 160, 23, 0.5) 5%,
    rgba(212, 160, 23, 0.7) 15%,
    rgba(212, 160, 23, 0.4) 40%,
    rgba(212, 160, 23, 0.8) 60%,
    rgba(212, 160, 23, 0.3) 85%,
    rgba(212, 160, 23, 0.6) 95%,
    transparent 100%
  );
  margin-bottom: var(--space-xl);
}

/* ==========================================
   HERO
   ========================================== */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-2xl) var(--space-md);
  position: relative;
  overflow: hidden;
  background-color: var(--bg-primary);
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translateX(-50%) translateY(-50%);
  z-index: 0;
  object-fit: cover;
  opacity: 0;
  filter: grayscale(100%) contrast(1.2);
  animation: fadeLoop 6s infinite;
  animation-delay: 0.5s;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: 
    radial-gradient(ellipse at 50% 50%, rgba(34, 34, 34, 0.4) 0%, rgba(34, 34, 34, 0.9) 100%),
    linear-gradient(180deg, rgba(34, 34, 34, 0.2) 0%, rgba(34, 34, 34, 0.8) 100%);
}

.hero::before {
  display: none; /* override section divider */
}

.hero-content {
  max-width: 900px;
  position: relative;
  z-index: 2;
}

.hero-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  color: var(--accent);
  margin-bottom: var(--space-md);
}

.hero-headline {
  font-family: var(--font-headline);
  font-size: clamp(3.5rem, 12vw, 10rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
  text-shadow: 0 0 80px rgba(212, 160, 23, 0.08);
}

.hero-sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
  letter-spacing: 0.05em;
}

.hero-cta {
  margin-bottom: var(--space-lg);
  font-size: 1.3rem;
  padding: 1rem 3rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.stat-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.stat-stars {
  color: var(--accent);
  font-size: 0.9rem;
}
.stat-text {
  color: var(--text-secondary);
}
.stat-divider {
  color: var(--border-light);
}
.stat-item {
  color: var(--text-secondary);
}

/* ==========================================
   ABOUT
   ========================================== */
.about-intro {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 720px;
  margin-bottom: var(--space-xl);
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.process-step {
  padding: var(--space-md);
  border-left: 3px solid var(--accent);
  background: var(--bg-secondary);
}

.step-number {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  display: block;
  margin-bottom: var(--space-xs);
}

.step-title {
  font-family: var(--font-headline);
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

.step-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* --- BARBER CARD --- */
.barber-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.barber-photo-wrap {
  overflow: hidden;
  position: relative;
}
.barber-photo-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 60px rgba(0,0,0,0.4);
  pointer-events: none;
}
.barber-photo {
  width: 100%;
  max-width: 280px;
  object-fit: cover;
  filter: saturate(0.8) contrast(1.1) brightness(0.85);
}

.barber-name {
  font-family: var(--font-headline);
  font-size: 1.6rem;
  letter-spacing: 0.12em;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.barber-role {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-sm);
}

.barber-bio {
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 440px;
}

/* ==========================================
   SERVICES / RATE SHEET
   ========================================== */
.rate-group {
  margin-bottom: var(--space-lg);
}

.rate-group-title {
  font-family: var(--font-headline);
  font-size: 1.5rem;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: var(--space-sm);
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--border-light);
}

.rate-list {
  list-style: none;
}

.rate-item {
  display: flex;
  align-items: baseline;
  padding: 0.65rem 0;
  border-bottom: 1px dashed var(--border);
}

.rate-name {
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-primary);
  white-space: nowrap;
}

.rate-dots {
  flex: 1;
  border-bottom: 1px dotted var(--text-muted);
  margin: 0 0.75rem;
  min-width: 2rem;
  position: relative;
  top: -4px;
}

.rate-price {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--accent);
  white-space: nowrap;
}

.rate-desc {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  padding: 0 0 0.5rem 0;
  line-height: 1.5;
}

.rate-note {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: var(--space-md);
}

.rate-cta {
  margin-top: var(--space-sm);
}

/* ==========================================
   GALLERY
   ========================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
}

.gallery-item {
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8) contrast(1.1) brightness(0.85);
  transition: filter 0.4s, transform 0.4s;
}
.gallery-item:hover img {
  filter: saturate(1) contrast(1) brightness(1);
  transform: scale(1.03);
}

/* Vignette overlay on photos */
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 60px rgba(0,0,0,0.4);
  pointer-events: none;
}

/* Halftone print effect on storefront (first gallery item) */
.gallery-item--wide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, #000 1px, transparent 1px);
  background-size: 4px 4px;
  opacity: 0.15;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 1;
}

.reviews-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

@media (min-width: 768px) {
  .reviews-header {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: var(--space-2xl);
  }
}

.reviews-header .section-label {
  margin-bottom: 0;
}

.rating-stamp {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: var(--space-md) var(--space-lg);
  border: 2px solid var(--accent);
  border-radius: 0;
  position: relative;
}
.rating-stamp::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 3px,
      rgba(10,10,10,0.3) 3px,
      rgba(10,10,10,0.3) 4px
    );
  pointer-events: none;
}

.stamp-score {
  font-family: var(--font-headline);
  font-size: 3.5rem;
  color: var(--accent);
  line-height: 1;
}

.stamp-stars {
  color: var(--accent);
  font-size: 1.2rem;
  margin: 0.25rem 0 0.5rem;
}

.stamp-source {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  text-transform: uppercase;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.review-card {
  padding: var(--space-md);
  border-left: 3px solid var(--accent);
  background: var(--bg-card);
  border-right: 1px solid var(--border);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.review-text {
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.review-author {
  display: flex;
  gap: 0.75rem;
  align-items: baseline;
  font-style: normal;
}

.review-author cite {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--text-secondary);
  font-style: normal;
}

.review-date {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==========================================
   FAQ
   ========================================== */
.faq-list {
  max-width: 720px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-primary);
  padding: var(--space-sm) 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+';
  font-family: var(--font-headline);
  font-size: 1.4em;
  font-weight: 800;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.2s;
}
details[open] .faq-question::after {
  content: '−';
}

.faq-answer {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  padding: 0 0 var(--space-sm) 0;
}

/* ==========================================
   CONTACT
   ========================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.shop-address {
  font-style: normal;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.address-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: block;
  margin-top: 0.25rem;
}

.contact-details {
  margin-bottom: var(--space-md);
}
.contact-details p {
  margin-bottom: 0.25rem;
}

.contact-link {
  color: var(--text-secondary);
  font-size: 0.95rem;
  border-bottom: 1px dashed var(--border-light);
  padding-bottom: 1px;
}
.contact-link:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.hours-table {
  margin-bottom: var(--space-md);
}

.hours-title {
  font-family: var(--font-headline);
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: var(--space-sm);
}

.hours-list {
  display: flex;
  flex-direction: column;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.35rem 0;
  border-bottom: 1px dashed var(--border);
  max-width: 280px;
}

.hours-row dt {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.hours-row dd {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.payment-info {
  margin-bottom: var(--space-md);
}

.payment-label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.payment-info p:last-child {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.contact-cta {
  margin-top: var(--space-sm);
}

/* --- MAP --- */
.contact-map {
  position: relative;
}

.contact-map iframe {
  width: 100%;
  min-height: 300px;
  border: 1px solid var(--border);
}

.map-link {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-top: 0.5rem;
  border-bottom: 1px dashed var(--border-light);
}
.map-link:hover {
  color: var(--accent);
}

/* ==========================================
   FOOTER
   ========================================== */
.site-footer {
  padding: var(--space-lg) 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}

.footer-logo img {
  height: 32px;
  width: auto;
  opacity: 0.6;
}

.footer-tagline {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

.footer-copy {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* ==========================================
   MOBILE STICKY CTA
   ========================================== */
.mobile-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 0.75rem var(--space-sm);
  background: rgba(10, 10, 10, 0.95);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  /* Hide on desktop, show on mobile */
  display: block;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-sticky-cta.show {
  transform: translateY(0);
}

/* Ensure body has padding at the bottom so the sticky footer doesn't cover content */
body {
  padding-bottom: 80px; /* Space for the sticky button */
}

.sticky-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.9rem;
  font-size: 1.1rem;
}

/* ==========================================
   SELECTION COLOR
   ========================================== */
::selection {
  background: rgba(212, 160, 23, 0.3);
  color: #F0EDE8;
}

/* ==========================================
   SCROLLBAR (WEBKIT)
   ========================================== */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #0A0A0A;
}
::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 0;
}
::-webkit-scrollbar-thumb:hover {
  background: #D4A017;
}

/* ==========================================
   REVEAL ANIMATION
   ========================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- NO-JS FALLBACK --- */
.no-js .reveal {
  opacity: 1;
  transform: none;
}

/* --- MOBILE: reduce grain opacity --- */
@media (max-width: 767px) {
  .noise-overlay {
    opacity: 0.03;
  }
}

/* ==========================================
   RESPONSIVE — TABLET (640px+)
   ========================================== */
@media (min-width: 640px) {
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .barber-card {
    flex-direction: row;
    align-items: center;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item--wide {
    grid-column: span 2;
  }

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

/* ==========================================
   RESPONSIVE — DESKTOP (900px+)
   ========================================== */
@media (min-width: 900px) {
  body {
    padding-bottom: 0;
  }

  .nav-links-desktop {
    display: flex;
  }

  .desktop-only {
    display: inline-block !important;
  }
  .nav-cta {
    font-size: 0.85rem;
    padding: 0.6rem 1.5rem;
  }

  .hamburger { display: none; }

  .mobile-sticky-cta { display: none; }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-item--wide {
    grid-column: span 2;
  }

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

  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .section {
    padding: var(--space-2xl) 0;
  }

  .hero-headline {
    font-size: clamp(5rem, 10vw, 10rem);
  }
}

/* ==========================================
   RESPONSIVE — LARGE (1200px+)
   ========================================== */
@media (min-width: 1200px) {
  .hero-headline {
    font-size: 10rem;
  }
}

/* ==========================================
   REDUCED MOTION
   ========================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ==========================================
   PRINT
   ========================================== */
@media print {
  .noise-overlay,
  .site-header,
  .mobile-sticky-cta,
  .btn-book,
  .contact-map { display: none; }
  body { background: #fff; color: #111; }
  .section-label { color: #333; }
  .section-headline { color: #111; }
}

.raw-text {
  font-family: var(--font-raw) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  font-size: 1.25rem !important;
  font-weight: 400 !important;
  color: var(--text-secondary) !important;
  transform: rotate(-2deg);
  display: inline-block;
}

.raw-quote {
  font-family: var(--font-raw) !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  font-size: clamp(2.5rem, 6vw, 4rem) !important;
  font-weight: 400 !important;
  color: var(--accent) !important;
  opacity: 0.95;
}

@keyframes fadeLoop {
  0% { opacity: 0; }
  20% { opacity: 0; }
  45% { opacity: 0.4; }
  85% { opacity: 0.4; }
  100% { opacity: 0; }
}
