/* ============================================
   Midnight Barbers
   Global Stylesheet — Mobile-First, Dark Theme
   ============================================ */

/* --- CSS Variables --- */
:root {
  /* REPLACE: Brand colours */
  --color-bg: #111111;
  --color-bg-card: #1A1A1A;
  --color-bg-elevated: #222222;
  --color-primary: #F0ECE2;
  --color-accent: #C9A84C;
  --color-accent-dark: #A88A3A;
  --color-accent-glow: rgba(201, 168, 76, 0.15);
  --color-text: #FFFFFF;
  --color-text-mid: rgba(255, 255, 255, 0.7);
  --color-text-muted: rgba(255, 255, 255, 0.4);
  --color-border: rgba(255, 255, 255, 0.08);
  --color-border-accent: rgba(201, 168, 76, 0.25);
  --color-dark: #111111;
  --color-white: #FFFFFF;

  /* REPLACE: Fonts */
  --font-heading: "Bebas Neue", "Impact", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;

  /* Layout */
  --max-width: 1140px;
  --header-height: 72px;
  --radius: 2px;
  --radius-lg: 4px;

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --duration: 0.3s;
}

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

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

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--duration) var(--ease);
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

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

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.0;
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  letter-spacing: 0.06em;
}

h2 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  letter-spacing: 0.05em;
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

h4 {
  font-size: 1.125rem;
}

p {
  margin-bottom: 1em;
}

p:last-child {
  margin-bottom: 0;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

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

.text-center {
  text-align: center;
}

.section__eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}

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

.section__subtext {
  max-width: 520px;
  margin: 0 auto var(--space-lg);
  color: var(--color-text-mid);
  font-size: 1rem;
  font-weight: 300;
}

/* Gold rule / divider */
.gold-rule {
  width: 48px;
  height: 2px;
  background: var(--color-accent);
  border: none;
  margin: var(--space-md) auto;
}

.gold-rule--left {
  margin-left: 0;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--duration) var(--ease);
  white-space: nowrap;
}

.btn--primary {
  background-color: var(--color-accent);
  color: var(--color-bg);
}

.btn--primary:hover {
  background-color: var(--color-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(201, 168, 76, 0.3);
}

.btn--outline {
  background-color: transparent;
  color: var(--color-primary);
  border: 1px solid var(--color-border);
}

.btn--outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.btn--ghost {
  background-color: transparent;
  color: var(--color-accent);
  padding: 0;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
}

.btn--ghost:hover {
  color: var(--color-primary);
}

.btn--ghost svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.btn--sm {
  padding: 0.625rem 1.5rem;
  font-size: 0.875rem;
}

/* --- Header / Navigation --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background-color: rgba(17, 17, 17, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  transition: background-color var(--duration) var(--ease);
}

.header--scrolled {
  background-color: rgba(17, 17, 17, 0.98);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.header__logo {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 400;
  color: var(--color-primary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.header__logo span {
  color: var(--color-accent);
}

.nav__list {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav__link {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-mid);
  position: relative;
  padding: 0.25rem 0;
}

.nav__link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-accent);
  transition: width var(--duration) var(--ease);
}

.nav__link:hover,
.nav__link--active {
  color: var(--color-primary);
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

.nav__cta {
  margin-left: 0.5rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  z-index: 1001;
}

.hamburger__line {
  display: block;
  width: 100%;
  height: 1.5px;
  background-color: var(--color-primary);
  border-radius: 1px;
  transition: all var(--duration) var(--ease);
  transform-origin: center;
}

.hamburger--active .hamburger__line:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.hamburger--active .hamburger__line:nth-child(2) {
  opacity: 0;
}

.hamburger--active .hamburger__line:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile Nav */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background-color: var(--color-bg);
    padding: calc(var(--header-height) + var(--space-2xl)) var(--space-lg) var(--space-lg);
    transition: right var(--duration) var(--ease);
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }

  .nav--open {
    right: 0;
  }

  .nav__list {
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
  }

  .nav__link {
    font-family: var(--font-heading);
    font-size: 2rem;
    letter-spacing: 0.12em;
  }

  .nav__cta {
    margin-left: 0;
    margin-top: var(--space-sm);
  }

  .nav__overlay {
    display: none;
  }
}

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

/* Subtle noise / grain texture */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(201, 168, 76, 0.04) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 100%, rgba(201, 168, 76, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

/* Vertical lines decorative element */
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--color-accent), transparent);
  opacity: 0.3;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero__tagline {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-md);
}

.hero__heading {
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
  line-height: 0.95;
}

.hero__heading em {
  font-style: normal;
  color: var(--color-accent);
  display: block;
}

.hero__rule {
  width: 64px;
  height: 2px;
  background: var(--color-accent);
  border: none;
  margin: var(--space-lg) auto;
}

.hero__subheading {
  font-size: 1rem;
  font-weight: 300;
  color: var(--color-text-mid);
  max-width: 440px;
  margin: 0 auto var(--space-lg);
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
}

/* --- Service Cards (Home preview) --- */
.services-preview {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

@media (min-width: 640px) {
  .services-preview {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-preview {
  background: var(--color-bg-card);
  padding: var(--space-lg);
  text-align: center;
  transition: background-color var(--duration) var(--ease);
}

.service-preview:hover {
  background: var(--color-bg-elevated);
}

.service-preview__price {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--color-accent);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.service-preview__name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
}

.service-preview__desc {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  font-weight: 300;
}

/* --- About Teaser --- */
.about-teaser {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

@media (min-width: 768px) {
  .about-teaser {
    grid-template-columns: 1fr 1fr;
  }
}

.about-teaser__text p {
  color: var(--color-text-mid);
  font-size: 1.0625rem;
  font-weight: 300;
}

/* --- Gallery Grid --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
}

@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gallery-item {
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item__bg {
  position: absolute;
  inset: 0;
  transition: transform 0.5s var(--ease);
}

.gallery-item:hover .gallery-item__bg {
  transform: scale(1.08);
}

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.3);
  opacity: 0;
  transition: opacity var(--duration) var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item:hover .gallery-item__overlay {
  opacity: 1;
}

.gallery-item__label {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-primary);
}

/* Image placeholders — dark barber variants */
.img-placeholder {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-placeholder--dark {
  background: linear-gradient(135deg, #1A1A1A 0%, #2A2A2A 40%, #1E1E1E 70%, #111111 100%);
}

.img-placeholder--moody {
  background: linear-gradient(160deg, #1A1714 0%, #2A2520 40%, #1E1B17 70%, #111111 100%);
}

.img-placeholder--warm {
  background: linear-gradient(135deg, #1E1A14 0%, #2E2820 40%, #3A3228 70%, #1A1610 100%);
}

.img-placeholder--cool {
  background: linear-gradient(135deg, #14161A 0%, #1E2228 40%, #282E36 70%, #10121A 100%);
}

.img-placeholder::after {
  content: attr(data-alt);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--color-text-muted);
  text-align: center;
  padding: var(--space-sm);
}

.img-placeholder--landscape {
  aspect-ratio: 16 / 10;
}

.img-placeholder--portrait {
  aspect-ratio: 3 / 4;
}

.img-placeholder--square {
  aspect-ratio: 1;
}

/* --- Location Section --- */
.location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 768px) {
  .location-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.location-info__item {
  margin-bottom: var(--space-md);
}

.location-info__label {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.25rem;
}

.location-info__value {
  font-size: 1rem;
  font-weight: 300;
  color: var(--color-text-mid);
  line-height: 1.6;
}

.location-info__value a:hover {
  color: var(--color-accent);
}

/* --- Map --- */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  height: 100%;
  min-height: 280px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.8) brightness(0.7) contrast(1.1);
}

/* --- About Page --- */
.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

@media (min-width: 768px) {
  .about-content {
    grid-template-columns: 1fr 1fr;
  }
}

.about-content__text p {
  color: var(--color-text-mid);
  font-size: 1.0625rem;
  font-weight: 300;
}

.about-content__text p + p {
  margin-top: var(--space-sm);
}

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

@media (min-width: 640px) {
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.value-card {
  padding: var(--space-lg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-bg-card);
  text-align: center;
  transition: border-color var(--duration) var(--ease);
}

.value-card:hover {
  border-color: var(--color-border-accent);
}

.value-card__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-card__icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--color-accent);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-card__title {
  margin-bottom: var(--space-xs);
  font-size: 1.125rem;
}

.value-card__desc {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  font-weight: 300;
}

/* --- Services Page --- */
.services-list {
  max-width: 720px;
  margin: 0 auto;
}

.service-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--color-border);
  gap: var(--space-sm);
}

.service-row:first-child {
  border-top: 1px solid var(--color-border);
}

.service-row__info {
  flex: 1;
}

.service-row__name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
}

.service-row__desc {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--color-text-muted);
}

.service-row__price {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--color-accent);
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

/* --- CTA Banner --- */
.cta-banner {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  background: var(--color-bg-card);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
}

.cta-banner__heading {
  margin-bottom: var(--space-sm);
}

.cta-banner__text {
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
  font-size: 1rem;
  font-weight: 300;
}

/* --- Contact Page --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.form__label {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.form__input,
.form__select,
.form__textarea {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--color-text);
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  transition: border-color var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
  width: 100%;
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px var(--color-accent-glow);
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--color-text-muted);
}

.form__textarea {
  min-height: 120px;
  resize: vertical;
}

.form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' fill='none' stroke='rgba(255,255,255,0.4)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form__select option {
  background: var(--color-bg-card);
  color: var(--color-text);
}

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-info__item {
  margin-bottom: var(--space-md);
}

.contact-info__label {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.25rem;
}

.contact-info__value {
  font-size: 1rem;
  font-weight: 300;
  color: var(--color-text-mid);
}

.contact-info__value a:hover {
  color: var(--color-accent);
}

/* --- Page Header (inner pages) --- */
.page-header {
  padding: calc(var(--header-height) + var(--space-2xl)) 0 var(--space-xl);
  text-align: center;
  position: relative;
}

.page-header::before {
  content: "";
  position: absolute;
  top: var(--header-height);
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--color-accent));
  opacity: 0.3;
}

.page-header .section__eyebrow {
  margin-top: var(--space-lg);
}

.page-header__heading {
  margin-bottom: var(--space-xs);
}

.page-header__sub {
  color: var(--color-text-muted);
  font-size: 1rem;
  font-weight: 300;
  max-width: 480px;
  margin: 0 auto;
}

/* --- Footer --- */
.footer {
  border-top: 1px solid var(--color-border);
  padding: var(--space-xl) 0 var(--space-md);
}

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

@media (min-width: 640px) {
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer__brand {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 400;
  color: var(--color-primary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.footer__brand span {
  color: var(--color-accent);
}

.footer__desc {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 300px;
}

.footer__heading {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}

.footer__links li + li {
  margin-top: 0.5rem;
}

.footer__links a {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--color-text-muted);
  transition: color var(--duration) var(--ease);
}

.footer__links a:hover {
  color: var(--color-primary);
}

.footer__bar {
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-md);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-sm);
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--color-text-muted);
}

/* --- Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > .reveal:nth-child(1) { transition-delay: 0s; }
.reveal-stagger > .reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal-stagger > .reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger > .reveal:nth-child(4) { transition-delay: 0.24s; }
.reveal-stagger > .reveal:nth-child(5) { transition-delay: 0.3s; }
.reveal-stagger > .reveal:nth-child(6) { transition-delay: 0.36s; }

/* --- Responsive --- */
@media (min-width: 768px) {
  .section {
    padding: var(--space-2xl) 0;
  }

  .section--lg {
    padding: calc(var(--space-2xl) * 1.25) 0;
  }
}

/* --- Print --- */
@media print {
  .header,
  .hamburger,
  .map-container,
  .gallery-grid,
  .hero::before,
  .hero::after {
    display: none;
  }

  body {
    color: #000;
    background: #fff;
  }

  h1, h2, h3, h4,
  .hero__heading,
  .service-preview__name,
  .service-row__name {
    color: #000;
  }

  .hero {
    min-height: auto;
    background: none;
  }
}
