/* ============================================
   29 PALMS BARBER — STYLES
   ============================================ */

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

:root {
  --terracotta: #B8533A;
  --terracotta-dark: #9A432E;
  --terracotta-light: #D4755C;
  --sand: #E8D5C0;
  --sand-light: #F5EDE3;
  --sand-dark: #C4A882;
  --cream: #FDF8F3;
  --charcoal: #1E1E1E;
  --charcoal-light: #2E2E2E;
  --warm-gray: #6B6560;
  --warm-gray-light: #9E9790;
  --white: #FFFFFF;
  --font-heading: 'Space Grotesk', sans-serif;
  --font-serif: 'Instrument Serif', serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 8px rgba(30, 30, 30, 0.06);
  --shadow-md: 0 8px 30px rgba(30, 30, 30, 0.08);
  --shadow-lg: 0 20px 60px rgba(30, 30, 30, 0.1);
}

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

body {
  font-family: var(--font-heading);
  color: var(--charcoal);
  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;
}

ul {
  list-style: none;
}

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

/* --- NAVBAR --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 248, 243, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(184, 83, 58, 0.08);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
  background: rgba(253, 248, 243, 0.95);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--charcoal);
}

.nav-logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--terracotta);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  letter-spacing: -0.02em;
}

.nav-logo-text {
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--warm-gray);
  transition: color 0.2s ease;
  letter-spacing: 0.01em;
}

.nav-links a:hover {
  color: var(--terracotta);
}

.nav-cta {
  background: var(--charcoal);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 100px;
  font-weight: 600;
  transition: background 0.2s ease, transform 0.2s ease !important;
}

.nav-cta:hover {
  background: var(--terracotta);
  transform: translateY(-1px);
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.active .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--charcoal);
  padding: 8px;
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.mobile-link {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--charcoal);
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}

.mobile-link:hover {
  color: var(--terracotta);
  background: var(--sand-light);
}

.mobile-cta {
  margin-top: 16px;
  background: var(--terracotta);
  color: var(--white) !important;
  padding: 16px 36px;
  border-radius: 100px;
  font-size: 1.1rem;
}

/* --- HERO --- */
.hero {
  min-height: 100vh;
  padding: 100px 24px 60px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.hero-shape {
  position: absolute;
  pointer-events: none;
}

.hero-shape--circle {
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: var(--sand);
  top: -120px;
  right: -100px;
  opacity: 0.6;
}

.hero-shape--rect {
  width: 200px;
  height: 320px;
  background: var(--terracotta);
  bottom: 60px;
  left: -60px;
  border-radius: var(--radius-lg);
  opacity: 0.12;
  transform: rotate(-12deg);
}

.hero-shape--triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 80px 140px 80px;
  border-color: transparent transparent var(--terracotta-light) transparent;
  opacity: 0.15;
  top: 280px;
  right: 60px;
  transform: rotate(20deg);
}

.hero-shape--dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--terracotta);
  top: 200px;
  left: 80px;
  opacity: 0.4;
}

.hero-shape--ring {
  width: 120px;
  height: 120px;
  border: 3px solid var(--sand-dark);
  border-radius: 50%;
  bottom: 160px;
  right: 120px;
  opacity: 0.35;
}

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

.hero-text-block {
  max-width: 540px;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  background: rgba(184, 83, 58, 0.08);
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--charcoal);
  margin-bottom: 24px;
}

.hero-headline br {
  display: none;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--warm-gray);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 440px;
}

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

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--sand);
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-stat-num {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}

.hero-stat-label {
  font-size: 0.78rem;
  color: var(--warm-gray-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--sand-dark);
  opacity: 0.5;
}

/* Hero image block */
.hero-image-block {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.hero-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 600/780;
  width: 100%;
  max-width: 480px;
}

.hero-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-img-accent {
  position: absolute;
  bottom: -30px;
  left: -40px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 5px solid var(--cream);
  aspect-ratio: 320/400;
  width: 200px;
}

.hero-img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  padding: 14px 22px;
  border-radius: 100px;
  box-shadow: var(--shadow-md);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--charcoal);
  margin-top: 20px;
  margin-left: auto;
}

.hero-badge svg {
  color: var(--terracotta);
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  letter-spacing: 0.01em;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: var(--terracotta);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(184, 83, 58, 0.35);
}

.btn--primary:hover {
  background: var(--terracotta-dark);
  box-shadow: 0 8px 28px rgba(184, 83, 58, 0.4);
}

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

.btn--outline:hover {
  background: var(--charcoal);
  color: var(--white);
}

.btn--terracotta {
  background: var(--terracotta);
  color: var(--white);
}

.btn--terracotta:hover {
  background: var(--terracotta-dark);
}

.btn--light {
  background: var(--white);
  color: var(--charcoal);
}

.btn--light:hover {
  background: var(--sand-light);
}

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn--outline-light:hover {
  background: var(--white);
  color: var(--charcoal);
  border-color: var(--white);
}

.btn--lg {
  padding: 18px 36px;
  font-size: 1.05rem;
}

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

/* --- MARQUEE --- */
.marquee {
  background: var(--charcoal);
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: flex;
  gap: 32px;
  animation: marqueeScroll 20s linear infinite;
}

.marquee-item {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sand);
  flex-shrink: 0;
}

.marquee-item.geom {
  color: var(--terracotta-light);
  font-size: 0.6rem;
  letter-spacing: 0;
  align-self: center;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- SECTION COMMON --- */
.section-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--charcoal);
  margin-bottom: 20px;
}

.section-title .accent-italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--terracotta);
}

.section-desc {
  font-size: 1.08rem;
  color: var(--warm-gray);
  line-height: 1.75;
  max-width: 520px;
}

/* --- SERVICES --- */
.services {
  padding: 110px 0;
  background: var(--cream);
}

.services-header {
  margin-bottom: 64px;
}

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

.service-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  border: 1px solid rgba(196, 168, 130, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-card--dark {
  background: var(--charcoal);
  border-color: transparent;
}

.service-card--dark .service-card-num {
  color: var(--terracotta-light);
}

.service-card--dark .service-card-title {
  color: var(--white);
}

.service-card--dark .service-card-desc {
  color: var(--warm-gray-light);
}

.service-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--terracotta);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.service-card--dark .service-card-accent {
  background: var(--terracotta-light);
}

.service-card-num {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--sand-dark);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.service-card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sand-light);
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
  color: var(--terracotta);
}

.service-card--dark .service-card-icon {
  background: rgba(184, 83, 58, 0.2);
}

.service-card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.service-card-desc {
  font-size: 0.92rem;
  color: var(--warm-gray);
  line-height: 1.7;
}

/* --- ABOUT --- */
.about {
  padding: 110px 0;
  background: var(--sand-light);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: var(--sand);
  top: -100px;
  right: -100px;
  opacity: 0.5;
  pointer-events: none;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-img-stack {
  position: relative;
  height: 600px;
}

.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  width: 85%;
  height: 100%;
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-float {
  position: absolute;
  bottom: 0;
  right: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 5px solid var(--sand-light);
  width: 55%;
  aspect-ratio: 300/380;
}

.about-img-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-exp-badge {
  position: absolute;
  top: 40px;
  right: 40%;
  background: var(--terracotta);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  text-align: center;
  z-index: 2;
}

.about-exp-num {
  display: block;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
}

.about-exp-label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.85;
  margin-top: 4px;
}

.about-content-col {
  max-width: 480px;
}

.about-body {
  font-size: 1.02rem;
  color: var(--warm-gray);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 32px 0;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--charcoal);
}

.about-feature-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--terracotta);
  flex-shrink: 0;
}

/* --- GALLERY --- */
.gallery {
  padding: 110px 0;
  background: var(--cream);
}

.gallery-header {
  margin-bottom: 56px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30, 30, 30, 0.6) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.gallery-item-overlay span {
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
}

.gallery-item--tall {
  grid-column: span 5;
  grid-row: span 2;
  aspect-ratio: auto;
  height: 100%;
  min-height: 500px;
}

.gallery-item--tall img {
  height: 100%;
}

.gallery-item:not(.gallery-item--tall) {
  aspect-ratio: 500/400;
}

.gallery-item--wide {
  grid-column: span 7;
  aspect-ratio: 900/400;
}

/* --- CTA BANNER --- */
.cta-banner {
  background: var(--charcoal);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-shape--circle1 {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: var(--terracotta);
  opacity: 0.12;
  top: -120px;
  left: -100px;
}

.cta-shape--rect1 {
  position: absolute;
  width: 160px;
  height: 300px;
  background: var(--sand);
  opacity: 0.06;
  bottom: -60px;
  right: 10%;
  border-radius: var(--radius-lg);
  transform: rotate(8deg);
}

.cta-shape--circle2 {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid var(--terracotta-light);
  opacity: 0.3;
  top: 30%;
  right: 5%;
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-text {
  flex: 1;
  min-width: 280px;
}

.cta-eyebrow {
  color: var(--terracotta-light);
}

.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-top: 8px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* --- CONTACT --- */
.contact {
  padding: 110px 0;
  background: var(--cream);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-detail {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
}

.contact-detail-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sand-light);
  border-radius: var(--radius-sm);
  color: var(--terracotta);
}

.contact-detail strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.contact-detail p {
  font-size: 0.92rem;
  color: var(--warm-gray);
  line-height: 1.6;
}

.contact-detail a {
  color: var(--terracotta);
  transition: color 0.2s;
}

.contact-detail a:hover {
  color: var(--terracotta-dark);
  text-decoration: underline;
}

.contact-map {
  margin-top: 36px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.contact-form-col {
  max-width: 100%;
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(196, 168, 130, 0.15);
}

.contact-form-card h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.contact-form-desc {
  font-size: 0.95rem;
  color: var(--warm-gray);
  margin-bottom: 32px;
  line-height: 1.6;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 7px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--sand);
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--cream);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--warm-gray-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(184, 83, 58, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-success {
  text-align: center;
  padding: 40px 20px;
}

.form-success svg {
  color: var(--terracotta);
  margin-bottom: 16px;
}

.form-success h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.form-success p {
  color: var(--warm-gray);
  font-size: 0.95rem;
}

/* --- FOOTER --- */
.footer {
  background: var(--charcoal);
  color: var(--white);
}

.footer-top {
  padding: 80px 0 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.footer-logo-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--terracotta);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
}

.footer-logo-text {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--warm-gray-light);
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--sand-dark);
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 0.9rem;
  color: var(--warm-gray-light);
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--terracotta-light);
}

.footer-col p {
  font-size: 0.9rem;
  color: var(--warm-gray-light);
  line-height: 1.7;
  margin-bottom: 6px;
}

.footer-col a {
  color: var(--terracotta-light);
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--warm-gray);
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-image-block {
    align-items: center;
    max-width: 480px;
    margin: 0 auto;
  }

  .hero-text-block {
    max-width: 100%;
  }

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

  .about-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-img-stack {
    height: 450px;
    max-width: 500px;
  }

  .about-content-col {
    max-width: 100%;
  }

  .gallery-item--tall {
    grid-column: span 7;
    min-height: 350px;
  }

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

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding: 96px 20px 60px;
    min-height: auto;
  }

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

  .hero-headline br {
    display: initial;
  }

  .hero-img-accent {
    display: none;
  }

  .hero-shape--circle {
    width: 300px;
    height: 300px;
    right: -80px;
  }

  .hero-shape--triangle {
    display: none;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 16px;
  }

  .hero-stat-divider {
    display: none;
  }

  .services {
    padding: 80px 0;
  }

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

  .about {
    padding: 80px 0;
  }

  .about-img-stack {
    height: 360px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .gallery {
    padding: 80px 0;
  }

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

  .gallery-item--tall,
  .gallery-item--wide {
    grid-column: span 1;
    aspect-ratio: 4/3;
    min-height: auto;
  }

  .gallery-item--tall img,
  .gallery-item img {
    height: 100%;
  }

  .cta-banner {
    padding: 72px 0;
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .contact {
    padding: 80px 0;
  }

  .contact-form-card {
    padding: 28px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom .container {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero {
    padding: 88px 16px 48px;
  }

  .hero-actions {
    flex-direction: column;
  }

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

  .hero-img-main {
    max-width: 100%;
  }

  .service-card {
    padding: 28px 24px;
  }

  .cta-actions {
    flex-direction: column;
    width: 100%;
  }

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

/* --- REDUCED MOTION --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .marquee-track {
    animation: none;
  }
}
