/* ═══════════════════════════════════════════
   LYNN'S BARBER SHOP — STYLESHEET
   Palette: Terracotta + Sand | Playfair Display + Inter
   ═══════════════════════════════════════════ */

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

:root {
  --terracotta:    #C4613A;
  --terracotta-dark: #A84E2C;
  --terracotta-light: #D4836A;
  --sand:          #F5E6D3;
  --sand-light:    #FAF3EA;
  --sand-dark:     #E8D5C0;
  --cream:         #FFFDF9;
  --charcoal:      #1E1E1E;
  --charcoal-soft: #2E2E2E;
  --text:          #1A1A1A;
  --text-muted:    #5A5A5A;
  --text-light:    #8A8A8A;
  --white:         #FFFFFF;
  --radius-sm:     8px;
  --radius-md:     14px;
  --radius-lg:     24px;
  --shadow-sm:     0 2px 8px rgba(30,30,30,.06);
  --shadow-md:     0 8px 30px rgba(30,30,30,.10);
  --shadow-lg:     0 20px 60px rgba(30,30,30,.14);
  --transition:    .3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--charcoal);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: .938rem;
  padding: 14px 28px;
  border-radius: 50px;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--terracotta);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(196,97,58,.35);
}
.btn--primary:hover {
  background: var(--terracotta-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(196,97,58,.45);
}

.btn--ghost {
  background: rgba(255,255,255,.12);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.35);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.22);
  border-color: rgba(255,255,255,.6);
  transform: translateY(-2px);
}

.btn--terracotta {
  background: var(--terracotta);
  color: var(--white);
}
.btn--terracotta:hover {
  background: var(--terracotta-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196,97,58,.3);
}

.btn--light {
  background: var(--white);
  color: var(--terracotta);
}
.btn--light:hover {
  background: var(--sand-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.5);
}
.btn--outline-light:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn--full { width: 100%; justify-content: center; }
.btn--lg { padding: 17px 36px; font-size: 1rem; }

/* ── Section Labels ── */
.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .813rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 16px;
}
.section-label-line {
  width: 32px;
  height: 2px;
  background: var(--terracotta);
  border-radius: 2px;
  flex-shrink: 0;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin-bottom: 24px;
}
.section-title-accent {
  color: var(--terracotta);
  font-style: italic;
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,253,249,.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(196,97,58,.08);
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(255,253,249,.96);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--charcoal);
}
.nav-logo-icon {
  width: 36px;
  height: 36px;
  background: var(--terracotta);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  padding: 8px 16px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 50px;
  transition: var(--transition);
}
.nav-link:hover { color: var(--terracotta); background: rgba(196,97,58,.06); }
.nav-cta {
  margin-left: 8px;
  padding: 10px 22px;
  background: var(--terracotta);
  color: var(--white);
  font-weight: 600;
  font-size: .875rem;
  border-radius: 50px;
  transition: var(--transition);
}
.nav-cta:hover { background: var(--terracotta-dark); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}
.nav-toggle-bar {
  width: 100%;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.active .nav-toggle-bar:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.active .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle.active .nav-toggle-bar:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30,30,30,.5);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.mobile-overlay.active { opacity: 1; pointer-events: all; }

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

.hero-shape {
  position: absolute;
  pointer-events: none;
}
.hero-shape--circle1 {
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: var(--sand);
  top: -150px;
  right: -100px;
  opacity: .6;
}
.hero-shape--circle2 {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: var(--terracotta);
  opacity: .07;
  bottom: 10%;
  left: 5%;
}
.hero-shape--rect1 {
  width: 180px;
  height: 180px;
  background: var(--terracotta);
  opacity: .06;
  border-radius: var(--radius-lg);
  top: 20%;
  left: 8%;
  transform: rotate(15deg);
}
.hero-shape--line1 {
  width: 2px;
  height: 200px;
  background: linear-gradient(to bottom, var(--terracotta), transparent);
  opacity: .2;
  top: 15%;
  right: 30%;
}
.hero-shape--line2 {
  width: 120px;
  height: 2px;
  background: linear-gradient(to right, var(--terracotta), transparent);
  opacity: .15;
  bottom: 25%;
  left: 15%;
}
.hero-shape--dot-grid {
  width: 100px;
  height: 100px;
  background-image: radial-gradient(circle, var(--terracotta) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  opacity: .2;
  top: 60%;
  right: 12%;
}

.hero-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content { max-width: 560px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(196,97,58,.08);
  border: 1px solid rgba(196,97,58,.15);
  border-radius: 50px;
  font-size: .813rem;
  font-weight: 600;
  color: var(--terracotta);
  margin-bottom: 28px;
}
.hero-badge-dot {
  width: 7px;
  height: 7px;
  background: var(--terracotta);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.4); }
}

.hero-headline {
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 24px;
  color: var(--charcoal);
}
.hero-headline-accent {
  color: var(--terracotta);
  font-style: italic;
  position: relative;
}
.hero-headline-accent::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 6px;
  background: rgba(196,97,58,.18);
  border-radius: 3px;
  z-index: -1;
}

.hero-sub {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 460px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
}
.hero-trust-item {
  display: flex;
  flex-direction: column;
}
.hero-trust-num {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--charcoal);
}
.hero-trust-label {
  font-size: .75rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 500;
}
.hero-trust-divider {
  width: 1px;
  height: 32px;
  background: var(--sand-dark);
}

/* Hero image stack */
.hero-image-stack {
  position: relative;
  height: 680px;
}
.hero-img {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-img--main {
  width: 380px;
  height: 500px;
  top: 40px;
  right: 0;
}
.hero-img--main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-img-accent {
  position: absolute;
  inset: 12px;
  border: 2px solid rgba(196,97,58,.25);
  border-radius: calc(var(--radius-lg) - 4px);
  pointer-events: none;
}
.hero-img--float {
  width: 260px;
  height: 180px;
  bottom: 40px;
  left: -20px;
  overflow: hidden;
}
.hero-img--float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-stamp {
  position: absolute;
  width: 72px;
  height: 72px;
  background: var(--terracotta);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: .6rem;
  letter-spacing: .1em;
  top: 0;
  left: 20px;
  box-shadow: 0 8px 24px rgba(196,97,58,.35);
  gap: 2px;
}

/* ── Services ── */
.services {
  padding: 120px 0;
  position: relative;
  background: var(--sand-light);
  overflow: hidden;
}
.services-bg-shape {
  position: absolute;
  width: 500px;
  height: 500px;
  background: var(--terracotta);
  opacity: .04;
  border-radius: 50%;
  top: -200px;
  left: -200px;
  pointer-events: none;
}

.services .container { position: relative; z-index: 1; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid transparent;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(196,97,58,.1);
}
.service-card:hover::before { transform: scaleX(1); }

.service-card-number {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--sand-dark);
  line-height: 1;
  margin-bottom: 16px;
  transition: color .3s;
}
.service-card:hover .service-card-number { color: rgba(196,97,58,.15); }

.service-card-icon {
  width: 56px;
  height: 56px;
  background: rgba(196,97,58,.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta);
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .service-card-icon {
  background: var(--terracotta);
  color: var(--white);
}

.service-card-title {
  font-size: 1.375rem;
  margin-bottom: 10px;
}
.service-card-desc {
  font-size: .938rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}
.service-card-tag {
  display: inline-block;
  padding: 5px 14px;
  background: var(--sand);
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 600;
  color: var(--terracotta);
  letter-spacing: .04em;
}

/* ── About ── */
.about {
  padding: 120px 0;
  background: var(--cream);
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
  height: 700px;
}
.about-img-main {
  width: 100%;
  height: 560px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-secondary {
  position: absolute;
  width: 260px;
  height: 180px;
  bottom: 0;
  right: -40px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--cream);
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }

.about-accent-block {
  position: absolute;
  top: -20px;
  right: 40px;
  background: var(--terracotta);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 32px rgba(196,97,58,.3);
}
.about-accent-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}
.about-accent-label {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  opacity: .8;
  font-weight: 500;
}

.about-content { max-width: 500px; }
.about-text {
  font-size: 1.063rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}
.about-text em { color: var(--terracotta); font-style: italic; }

.about-values {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 32px 0 40px;
}
.about-value {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.about-value-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(196,97,58,.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta);
}
.about-value strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 2px;
  color: var(--charcoal);
}
.about-value span {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── Gallery ── */
.gallery {
  padding: 120px 0;
  background: var(--charcoal);
  overflow: hidden;
}
.gallery .section-label { color: var(--terracotta-light); }
.gallery .section-label-line { background: var(--terracotta-light); }
.gallery .section-title { color: var(--white); }
.gallery .section-title-accent { color: var(--terracotta-light); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
  margin-top: 48px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.4,0,.2,1);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,30,30,.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity .3s;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay span {
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 700;
}

.gallery-item--tall { grid-column: span 5; grid-row: span 2; }
.gallery-item--tall img { height: 100%; }
.gallery-item:not(.gallery-item--tall) img { height: 230px; }
.gallery-item--wide { grid-column: span 7; }

/* ── CTA Banner ── */
.cta-banner {
  padding: 100px 0;
  background: var(--terracotta);
  position: relative;
  overflow: hidden;
}
.cta-shape {
  position: absolute;
  pointer-events: none;
}
.cta-shape--left {
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,.05);
  border-radius: 50%;
  top: -200px;
  left: -100px;
}
.cta-shape--right {
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,.04);
  border-radius: 50%;
  bottom: -150px;
  right: -50px;
}
.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-text { max-width: 520px; }
.cta-label {
  display: inline-block;
  font-size: .813rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-bottom: 12px;
}
.cta-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  color: var(--white);
  margin-bottom: 12px;
}
.cta-desc {
  font-size: 1.063rem;
  color: rgba(255,255,255,.75);
  line-height: 1.6;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ── Visit ── */
.visit {
  padding: 120px 0;
  background: var(--sand-light);
}
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.visit-info { max-width: 520px; }

.visit-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 36px 0 36px;
}
.visit-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.visit-detail-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta);
  box-shadow: var(--shadow-sm);
}
.visit-detail strong {
  display: block;
  font-size: .938rem;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.visit-detail span,
.visit-detail a {
  font-size: .938rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.visit-detail a:hover { color: var(--terracotta); }

.visit-map {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--white);
}

/* Form */
.visit-form-wrap { max-width: 480px; }
.visit-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-md);
}
.visit-form-title {
  font-size: 1.625rem;
  margin-bottom: 8px;
}
.visit-form-sub {
  font-size: .938rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.6;
}

.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: .813rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.form-input {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--sand-dark);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: .938rem;
  color: var(--text);
  background: var(--sand-light);
  transition: var(--transition);
  outline: none;
}
.form-input:focus {
  border-color: var(--terracotta);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(196,97,58,.1);
}
.form-input::placeholder { color: var(--text-light); }
.form-textarea { resize: vertical; min-height: 110px; }

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success.active { display: block; }
.form-success-icon {
  width: 64px;
  height: 64px;
  background: rgba(196,97,58,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta);
  margin: 0 auto 16px;
}
.form-success-title {
  font-size: 1.375rem;
  margin-bottom: 8px;
}
.form-success-text {
  font-size: .938rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.form-success-text a { color: var(--terracotta); font-weight: 600; }

/* ── Footer ── */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,.7);
  padding: 80px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-logo-mark {
  width: 44px;
  height: 44px;
  background: var(--terracotta);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--white);
}
.footer-logo-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--white);
}
.footer-tagline {
  font-size: .938rem;
  line-height: 1.65;
  max-width: 300px;
  color: rgba(255,255,255,.5);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer-col strong {
  display: block;
  font-size: .813rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: .938rem;
  color: rgba(255,255,255,.6);
  padding: 5px 0;
  transition: var(--transition);
}
.footer-col a:hover { color: var(--terracotta-light); transform: translateX(4px); }

.footer-bottom {
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .813rem;
  color: rgba(255,255,255,.35);
}
.footer-bottom a { color: rgba(255,255,255,.5); transition: color .2s; }
.footer-bottom a:hover { color: var(--terracotta-light); }

/* ── Scroll Animations ── */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
}
[data-aos].aos-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-content { max-width: 100%; }
  .hero-image-stack { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { height: 480px; }
  .about-content { max-width: 100%; }
  .visit-grid { grid-template-columns: 1fr; gap: 48px; }
  .visit-info { max-width: 100%; }
  .gallery-item--tall { grid-column: span 12; grid-row: span 1; }
  .gallery-item--tall img,
  .gallery-item:not(.gallery-item--tall) img,
  .gallery-item--wide img { height: 260px; }
  .gallery-item--wide { grid-column: span 12; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav-links { 
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    padding: 100px 32px 40px;
    gap: 4px;
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.4,0,.2,1);
    z-index: 1001;
  }
  .nav-links.active { transform: translateX(0); }
  .nav-link { padding: 14px 16px; font-size: 1rem; }
  .nav-cta { margin-left: 0; text-align: center; margin-top: 12px; }
  .nav-toggle { display: flex; z-index: 1002; }

  .hero { padding: 100px 0 80px; min-height: auto; }
  .hero-headline { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .hero-trust { flex-wrap: wrap; gap: 16px; }
  .hero-trust-divider { display: none; }

  .services { padding: 80px 0; }
  .services-grid { grid-template-columns: 1fr; }

  .about { padding: 80px 0; }
  .about-visual { height: 360px; }
  .about-img-main { height: 360px; }
  .about-img-secondary { width: 180px; height: 130px; right: -10px; }
  .about-accent-block { top: -10px; right: 20px; padding: 14px 18px; }

  .gallery { padding: 80px 0; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item--tall { grid-column: span 2; }
  .gallery-item img { height: 200px !important; }
  .gallery-item--wide { grid-column: span 2; }

  .cta-banner { padding: 72px 0; }
  .cta-inner { flex-direction: column; text-align: center; }

  .visit { padding: 80px 0; }
  .visit-form-card { padding: 28px; }

  .footer { padding: 60px 0 0; }
  .footer-links { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-headline { font-size: 2rem; }
  .section-title { font-size: 1.75rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--tall,
  .gallery-item--wide { grid-column: span 1; }
  .footer-links { grid-template-columns: 1fr; }
}
