/* ============================================
   PERRY'S BARBER SHOP — STYLESHEET
   Charcoal + Coral | Confident Corporate
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  /* Palette */
  --clr-charcoal-50:  #f5f5f7;
  --clr-charcoal-100: #e8e8ec;
  --clr-charcoal-200: #d1d1d8;
  --clr-charcoal-300: #a1a1aa;
  --clr-charcoal-400: #71717a;
  --clr-charcoal-500: #52525b;
  --clr-charcoal-600: #3f3f46;
  --clr-charcoal-700: #27272a;
  --clr-charcoal-800: #18181b;
  --clr-charcoal-900: #0c0c0e;

  --clr-coral-50:  #fff1eb;
  --clr-coral-100: #ffe0d4;
  --clr-coral-200: #ffc4ab;
  --clr-coral-300: #ffa37a;
  --clr-coral-400: #ff7a4d;
  --clr-coral-500: #e85d2a;
  --clr-coral-600: #c2572e;
  --clr-coral-700: #9a4324;
  --clr-coral-800: #7a341d;
  --clr-coral-900: #5e2815;

  --clr-accent: var(--clr-coral-600);
  --clr-accent-hover: var(--clr-coral-700);

  /* Neutrals */
  --clr-bg:       var(--clr-charcoal-900);
  --clr-bg-alt:   var(--clr-charcoal-800);
  --clr-bg-soft:  var(--clr-charcoal-700);
  --clr-surface:  var(--clr-charcoal-800);
  --clr-text:     var(--clr-charcoal-50);
  --clr-text-muted: var(--clr-charcoal-300);
  --clr-text-faint: var(--clr-charcoal-400);
  --clr-border:   var(--clr-charcoal-600);
  --clr-border-light: var(--clr-charcoal-700);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

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

  /* Layout */
  --container-max: 1280px;
  --nav-height: 72px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--clr-text);
  background-color: var(--clr-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
h1, h2, h3, h4 { line-height: 1.15; font-weight: 700; }

/* Skip Link */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-md);
  background: var(--clr-coral-600);
  color: #fff;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
  z-index: 9999;
  font-weight: 600;
  transition: top 0.2s;
}
.skip-link:focus { top: var(--space-md); }

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

/* --- Typography --- */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-coral-600);
  margin-bottom: var(--space-sm);
}
.section-eyebrow--light { color: var(--clr-coral-300); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: var(--space-xl);
}
.section-title--light { color: var(--clr-text); }
.section-title--lg { font-size: clamp(2.25rem, 5vw, 3.75rem); }

.section-header {
  margin-bottom: var(--space-3xl);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-md);
  transition: all 0.25s var(--ease-out);
  white-space: nowrap;
}
.btn svg { flex-shrink: 0; }

.btn--primary {
  background: var(--clr-coral-600);
  color: #fff;
  box-shadow: 0 4px 20px rgba(194, 87, 46, 0.35);
}
.btn--primary:hover {
  background: var(--clr-coral-700);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(194, 87, 46, 0.45);
}

.btn--ghost {
  background: transparent;
  color: var(--clr-text);
  border: 1.5px solid var(--clr-border);
}
.btn--ghost:hover {
  border-color: var(--clr-coral-600);
  color: var(--clr-coral-600);
  transform: translateY(-2px);
}

.btn--accent {
  background: var(--clr-coral-600);
  color: #fff;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-md);
}
.btn--accent:hover {
  background: var(--clr-coral-700);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(194, 87, 46, 0.4);
}

.btn--full { width: 100%; justify-content: center; }

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(12, 12, 14, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--clr-border-light);
  transition: background 0.3s;
}
.nav.scrolled {
  background: rgba(12, 12, 14, 0.95);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--clr-text);
}
.nav__logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--clr-coral-600);
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 800;
  font-family: var(--font-display);
}
.nav__logo-text { letter-spacing: -0.02em; }
.nav__logo-dot { color: var(--clr-coral-600); }

.nav__logo-text--light { color: var(--clr-text); }

.nav__list {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}
.nav__link {
  display: block;
  padding: var(--space-sm) var(--space-md);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--clr-text-muted);
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}
.nav__link:hover {
  color: var(--clr-text);
  background: var(--clr-charcoal-700);
}
.nav__link--cta {
  margin-left: var(--space-sm);
  background: var(--clr-coral-600);
  color: #fff;
  font-weight: 600;
}
.nav__link--cta:hover {
  background: var(--clr-coral-700);
  color: #fff;
}

/* Mobile Toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  z-index: 1001;
}
.nav__toggle-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.2s;
  transform-origin: center;
}
.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(2) {
  opacity: 0;
}
.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  overflow: hidden;
  background: var(--clr-bg);
}
.hero__stripe {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--clr-coral-600), var(--clr-coral-400), var(--clr-coral-600));
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  padding: var(--space-3xl) 0;
}

.hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-coral-600);
  margin-bottom: var(--space-lg);
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--clr-text);
  margin-bottom: var(--space-xl);
  letter-spacing: -0.02em;
}
.hero__accent {
  color: var(--clr-coral-600);
  display: inline;
}

.hero__sub {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--clr-text-muted);
  max-width: 520px;
  margin-bottom: var(--space-2xl);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-3xl);
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--clr-border-light);
}
.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero__stat-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--clr-text);
}
.hero__stat-label {
  font-size: 0.8125rem;
  color: var(--clr-text-faint);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}
.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: var(--clr-border);
}

/* Hero Visual */
.hero__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}
.hero__image-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
  aspect-ratio: 600 / 750;
}
.hero__image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero__image-accent {
  position: absolute;
  bottom: -24px;
  left: -48px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
  border: 4px solid var(--clr-bg);
  aspect-ratio: 320 / 400;
  width: 200px;
}
.hero__image-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--clr-bg-alt);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: var(--space-sm) var(--space-lg);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--clr-text-muted);
  width: fit-content;
  margin-top: var(--space-lg);
}
.hero__badge svg {
  color: var(--clr-coral-600);
  flex-shrink: 0;
}

/* --- Services --- */
.services {
  padding: var(--space-4xl) 0;
  background: var(--clr-bg-alt);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.service-card {
  background: var(--clr-bg);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  transition: border-color 0.3s, transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.service-card:hover {
  border-color: var(--clr-coral-600);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(194, 87, 46, 0.12);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(194, 87, 46, 0.1);
  border: 1px solid rgba(194, 87, 46, 0.2);
  border-radius: var(--radius-md);
  color: var(--clr-coral-600);
  margin-bottom: var(--space-lg);
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: var(--space-sm);
}

.service-card__desc {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--clr-text-muted);
}

/* --- About --- */
.about {
  padding: var(--space-4xl) 0;
  background: var(--clr-bg);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.about__image-stack {
  position: relative;
  padding-bottom: var(--space-xl);
  padding-right: var(--space-xl);
}
.about__img-primary {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
  aspect-ratio: 540 / 640;
}
.about__img-primary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about__img-secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
  border: 4px solid var(--clr-bg);
  aspect-ratio: 280 / 340;
  width: 180px;
}
.about__img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about__content { max-width: 540px; }

.about__body {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--clr-text-muted);
  margin-bottom: var(--space-lg);
}

.about__highlights {
  display: flex;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
  padding: var(--space-xl) 0;
  border-top: 1px solid var(--clr-border-light);
  border-bottom: 1px solid var(--clr-border-light);
}
.about__highlight {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.about__highlight-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--clr-coral-600);
  line-height: 1;
}
.about__highlight-label {
  font-size: 0.8125rem;
  color: var(--clr-text-faint);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* --- Gallery --- */
.gallery {
  padding: var(--space-4xl) 0;
  background: var(--clr-bg-alt);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 240px);
  gap: var(--space-md);
}
.gallery__item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease-out);
}
.gallery__item:hover img {
  transform: scale(1.05);
}
.gallery__item--large { grid-column: span 6; }
.gallery__item:not(.gallery__item--large) { grid-column: span 3; }

/* --- Visit / CTA --- */
.visit {
  padding: var(--space-4xl) 0;
  background: var(--clr-bg);
}

.visit__card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--clr-charcoal-800);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.visit__content {
  padding: var(--space-4xl) var(--space-3xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.visit__body {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--clr-text-muted);
  margin-bottom: var(--space-2xl);
}

.visit__details {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}
.visit__detail {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}
.visit__detail-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(194, 87, 46, 0.1);
  border: 1px solid rgba(194, 87, 46, 0.2);
  border-radius: var(--radius-sm);
  color: var(--clr-coral-600);
  flex-shrink: 0;
}
.visit__detail-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--clr-text-faint);
  margin-bottom: 2px;
}
.visit__detail-value {
  display: block;
  font-size: 1rem;
  color: var(--clr-text);
  font-weight: 500;
  line-height: 1.5;
}
.visit__detail-link {
  color: var(--clr-coral-600);
  transition: color 0.2s;
}
.visit__detail-link:hover { color: var(--clr-coral-400); }

.visit__image {
  border-radius: 0 var(--radius-xl) var(--radius-xl) 0;
  overflow: hidden;
  aspect-ratio: 560 / 700;
}
.visit__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --- Contact --- */
.contact {
  padding: var(--space-4xl) 0;
  background: var(--clr-bg-alt);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.contact__body {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--clr-text-muted);
  margin-bottom: var(--space-2xl);
}

.contact__direct {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.contact__email, .contact__phone {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 1rem;
  font-weight: 500;
  color: var(--clr-text);
  padding: var(--space-md) var(--space-lg);
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  transition: border-color 0.2s, color 0.2s;
}
.contact__email:hover, .contact__phone:hover {
  border-color: var(--clr-coral-600);
  color: var(--clr-coral-600);
}
.contact__email svg, .contact__phone svg {
  color: var(--clr-coral-600);
  flex-shrink: 0;
}

/* Form */
.contact__form-wrap {
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
}

.form-group {
  margin-bottom: var(--space-lg);
}
.form-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--clr-text-muted);
  margin-bottom: var(--space-sm);
}
.form-input, .form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background: var(--clr-bg-alt);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-sm);
  color: var(--clr-text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.5;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-input::placeholder, .form-textarea::placeholder {
  color: var(--clr-charcoal-500);
}
.form-input:focus, .form-textarea:focus {
  border-color: var(--clr-coral-600);
  box-shadow: 0 0 0 3px rgba(194, 87, 46, 0.15);
}
.form-textarea {
  resize: vertical;
  min-height: 120px;
}

/* Success State */
.contact__success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-3xl) var(--space-xl);
  gap: var(--space-md);
}
.contact__success svg {
  color: var(--clr-coral-600);
}
.contact__success-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--clr-text);
}
.contact__success-text {
  font-size: 0.9375rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
}

/* --- Footer --- */
.footer {
  background: var(--clr-charcoal-900);
  border-top: 1px solid var(--clr-border-light);
  padding: var(--space-3xl) 0 var(--space-xl);
}

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

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.footer__brand .nav__logo-mark {
  width: 44px;
  height: 44px;
  font-size: 1.25rem;
}
.footer__brand .nav__logo-text {
  font-size: 1.5rem;
  color: var(--clr-text);
}
.footer__tagline {
  font-size: 0.9375rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
  max-width: 280px;
}

.footer__heading {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--clr-text-faint);
  margin-bottom: var(--space-lg);
}

.footer__links ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.footer__links a {
  font-size: 0.9375rem;
  color: var(--clr-text-muted);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--clr-coral-600); }

.footer__contact p {
  font-size: 0.9375rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
}
.footer__contact a {
  color: var(--clr-coral-600);
  transition: color 0.2s;
}
.footer__contact a:hover { color: var(--clr-coral-400); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--clr-border-light);
}
.footer__bottom p {
  font-size: 0.8125rem;
  color: var(--clr-charcoal-400);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
  }
  .hero__visual {
    max-width: 500px;
    margin: 0 auto;
  }
  .hero__image-accent {
    left: -24px;
    width: 160px;
  }
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about__grid {
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
  }
  .about__visual { order: -1; }
  .visit__card {
    grid-template-columns: 1fr;
  }
  .visit__image {
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
    aspect-ratio: 16 / 9;
    max-height: 360px;
  }
  .contact__grid {
    grid-template-columns: 1fr;
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
  }

  .nav__toggle { display: flex; }

  .nav__menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 85vw);
    background: var(--clr-charcoal-800);
    border-left: 1px solid var(--clr-border);
    padding: calc(var(--nav-height) + var(--space-xl)) var(--space-xl) var(--space-xl);
    transform: translateX(100%);
    transition: transform 0.35s var(--ease-out);
    z-index: 999;
  }
  .nav__menu.open { transform: translateX(0); }
  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-xs);
  }
  .nav__link {
    padding: var(--space-md);
    font-size: 1.0625rem;
  }
  .nav__link--cta {
    margin-left: 0;
    text-align: center;
    margin-top: var(--space-md);
  }

  .hero { min-height: auto; padding-top: calc(var(--nav-height) + var(--space-2xl)); padding-bottom: var(--space-2xl); }
  .hero__headline { font-size: clamp(1.75rem, 7vw, 2.75rem); }
  .hero__image-accent { display: none; }
  .hero__stats { flex-wrap: wrap; gap: var(--space-lg); }

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

  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery__item--large { grid-column: span 2; }
  .gallery__item:not(.gallery__item--large) { grid-column: span 1; }
  .gallery__grid .gallery__item { aspect-ratio: 4 / 3; }

  .visit__content { padding: var(--space-2xl); }
  .visit__image { aspect-ratio: 4 / 3; max-height: none; }

  .footer__grid { grid-template-columns: 1fr; gap: var(--space-2xl); }
  .footer__bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 var(--space-md); }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .about__highlights { flex-direction: column; gap: var(--space-lg); }
  .contact__form-wrap { padding: var(--space-lg); }
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .gallery__item img { transition: none; }
  .gallery__item:hover img { transform: none; }
}
