/* ============================================
   BACK ROAD BODY & BATH — STYLESHEET
   Plum + Amber palette | Minimalist & clean
   ============================================ */

/* --- Custom Properties --- */
:root {
  --plum-50:  #f5f0f6;
  --plum-100: #ece0ea;
  --plum-200: #d9bfd6;
  --plum-300: #c49ac0;
  --plum-400: #b078ab;
  --plum-500: #965c91;
  --plum-600: #7d4478;
  --plum-700: #633460;
  --plum-800: #4e2a4c;
  --plum-900: #3d213c;
  --plum-950: #211020;

  --amber-50:  #fdf8ee;
  --amber-100: #faedcc;
  --amber-200: #f5d89a;
  --amber-300: #efc268;
  --amber-400: #e8ab38;
  --amber-500: #d4a84b;
  --amber-600: #b8892e;
  --amber-700: #8a6620;
  --amber-800: #6b4f18;
  --amber-900: #554013;

  --neutral-50:  #fafafa;
  --neutral-100: #f4f4f5;
  --neutral-200: #e4e4e7;
  --neutral-300: #d4d4d8;
  --neutral-400: #a1a1aa;
  --neutral-500: #71717a;
  --neutral-600: #52525b;
  --neutral-700: #3f3f46;
  --neutral-800: #27272a;
  --neutral-900: #18181b;
  --neutral-950: #09090b;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.06), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04);
  --shadow-xl: 0 24px 60px rgba(0,0,0,0.1), 0 8px 20px rgba(0,0,0,0.06);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--neutral-800);
  background-color: var(--neutral-50);
  line-height: 1.7;
  -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;
}

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

ul { list-style: none; }

/* --- Utility --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.9375rem;
  letter-spacing: 0.01em;
  padding: 12px 28px;
  border-radius: 100px;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--plum-700);
  color: #fff;
  border: 1.5px solid var(--plum-700);
}
.btn-primary:hover {
  background: var(--plum-800);
  border-color: var(--plum-800);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(99,52,96,0.25);
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

.btn-outline-plum {
  background: transparent;
  color: var(--plum-700);
  border: 1.5px solid var(--plum-300);
}
.btn-outline-plum:hover {
  background: var(--plum-50);
  border-color: var(--plum-700);
}

.btn-sm { padding: 8px 20px; font-size: 0.8125rem; }
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* --- Section shared --- */
.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber-700);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.2;
  color: var(--neutral-900);
  margin-bottom: 16px;
}

.section-title em {
  font-style: italic;
  color: var(--plum-700);
}

.section-desc {
  font-size: 1.0625rem;
  color: var(--neutral-500);
  line-height: 1.7;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250,250,250,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow var(--transition);
}

.nav.scrolled {
  box-shadow: var(--shadow-md);
}

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

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--neutral-900);
  letter-spacing: 0.01em;
}

.nav-brand-icon {
  color: var(--plum-600);
}

.nav-brand .accent {
  color: var(--amber-600);
}

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

.nav-links a:not(.btn) {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--neutral-600);
  transition: color var(--transition);
  position: relative;
}

.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--amber-500);
  transition: width var(--transition);
}

.nav-links a:not(.btn):hover {
  color: var(--neutral-900);
}
.nav-links a:not(.btn):hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  color: var(--neutral-700);
  transition: background var(--transition);
}
.nav-toggle:hover { background: var(--neutral-100); }

.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 998;
  opacity: 0;
  transition: opacity var(--transition);
}
.mobile-menu-overlay.active {
  display: block;
  opacity: 1;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 24px 160px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(33,16,32,0.82) 0%,
    rgba(62,33,60,0.72) 50%,
    rgba(77,44,76,0.65) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
}

.hero-greeting {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber-300);
  margin-bottom: 24px;
}

.hero-greeting-line {
  width: 32px;
  height: 1px;
  background: var(--amber-400);
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  line-height: 1.1;
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.hero-sub {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  max-width: 520px;
  margin: 0 auto 40px;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Floating stat cards */
.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 0;
  padding: 0 24px;
  pointer-events: none;
}

.stat-card {
  background: #fff;
  padding: 28px 40px;
  text-align: center;
  flex: 1;
  max-width: 280px;
  pointer-events: auto;
  position: relative;
}

.stat-card:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--neutral-200);
}

.stat-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--plum-600);
  border-radius: 50%;
  background: var(--plum-50);
}

.stat-value {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--neutral-900);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--neutral-500);
  letter-spacing: 0.02em;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  background: #fff;
}

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

.service-card {
  background: var(--neutral-50);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  border: 1px solid transparent;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--plum-100);
}

.service-card-img {
  overflow: hidden;
  aspect-ratio: 4/3;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-card-img img {
  transform: scale(1.05);
}

.service-card-body {
  padding: 28px 28px 32px;
}

.service-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--neutral-900);
  margin-bottom: 8px;
}

.service-card-body p {
  font-size: 0.9375rem;
  color: var(--neutral-500);
  line-height: 1.7;
}

.services-note {
  text-align: center;
  font-size: 0.9375rem;
  color: var(--neutral-500);
}

.services-note a {
  color: var(--plum-700);
  font-weight: 500;
  border-bottom: 1px solid var(--plum-200);
  transition: border-color var(--transition);
}
.services-note a:hover { border-color: var(--plum-700); }

/* ============================================
   ABOUT
   ============================================ */
.about {
  background: var(--neutral-50);
}

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

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 6/7;
}

.about-img-secondary {
  position: absolute;
  bottom: -32px;
  right: -32px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--neutral-50);
}

.about-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.about-accent-line {
  position: absolute;
  top: -24px;
  left: -24px;
  width: 80px;
  height: 80px;
  border-left: 2px solid var(--amber-400);
  border-top: 2px solid var(--amber-400);
}

.about-content {
  padding: 16px 0;
}

.about-content .section-tag { margin-bottom: 16px; }

.about-content .section-title {
  margin-bottom: 24px;
  text-align: left;
}

.about-content > p {
  font-size: 1.0625rem;
  color: var(--neutral-600);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-values {
  margin: 32px 0 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.value-line {
  width: 32px;
  height: 1px;
  background: var(--amber-400);
  flex-shrink: 0;
}

.value-item span {
  font-size: 0.9375rem;
  color: var(--neutral-700);
}

/* ============================================
   GALLERY
   ============================================ */
.gallery {
  background: #fff;
  padding-bottom: 100px;
}

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

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 5/4;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ============================================
   REVIEWS
   ============================================ */
.reviews {
  background: var(--plum-950);
  position: relative;
  overflow: hidden;
}

.reviews::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,168,75,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.reviews .section-tag { color: var(--amber-400); }
.reviews .section-title { color: #fff; }
.reviews .section-desc { color: rgba(255,255,255,0.5); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}

.review-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all var(--transition);
}

.review-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(212,168,75,0.3);
  transform: translateY(-2px);
}

.review-quote {
  margin-bottom: 20px;
  color: var(--amber-500);
}

.review-text {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.review-author {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.04em;
}

/* ============================================
   CTA
   ============================================ */
.cta {
  background: var(--neutral-50);
  padding: 100px 0;
}

.cta-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.cta-content {
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-content .section-tag { margin-bottom: 16px; }

.cta-title {
  margin-bottom: 16px;
  text-align: left;
}

.cta-desc {
  font-size: 1.0625rem;
  color: var(--neutral-500);
  line-height: 1.8;
  margin-bottom: 36px;
}

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

.cta-visual {
  overflow: hidden;
  min-height: 400px;
}

.cta-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  background: #fff;
}

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

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-item {
  display: flex;
  gap: 20px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--plum-50);
  color: var(--plum-700);
}

.contact-item h4 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--neutral-900);
  margin-bottom: 4px;
}

.contact-item p,
.contact-item a {
  font-size: 0.9375rem;
  color: var(--neutral-500);
  line-height: 1.6;
}

.contact-item a:hover { color: var(--plum-700); }

.map-container {
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.contact-form-wrapper {
  background: var(--neutral-50);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--neutral-200);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--neutral-600);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--neutral-900);
  background: #fff;
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--plum-400);
  box-shadow: 0 0 0 3px rgba(148,92,145,0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--neutral-400);
}

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

.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-sm);
  color: #166534;
  font-size: 0.9375rem;
  margin-top: 4px;
}

.form-success svg {
  color: #22c55e;
  flex-shrink: 0;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--neutral-950);
  color: rgba(255,255,255,0.6);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand {
  margin-bottom: 16px;
}

.footer-brand .nav-brand {
  color: #fff;
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.45);
  max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 20px;
}

.footer-links ul,
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a,
.footer-contact a {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--amber-400);
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.3);
}

/* ============================================
   SCROLL REVEAL (progressive enhancement)
   ============================================ */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .reveal.revealed {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    gap: 48px;
  }

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

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .reviews-grid .review-card:last-child {
    grid-column: 1 / -1;
    max-width: 50%;
    justify-self: center;
  }

  .cta-card {
    grid-template-columns: 1fr;
  }
  .cta-visual {
    min-height: 300px;
    order: -1;
  }
  .cta-content {
    padding: 48px 40px;
  }

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

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

@media (max-width: 768px) {
  .section { padding: 72px 0; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 96px 32px 32px;
    gap: 24px;
    box-shadow: var(--shadow-xl);
    transition: right var(--transition);
    z-index: 999;
  }
  .nav-links.open {
    right: 0;
  }
  .nav-links a:not(.btn) {
    font-size: 1rem;
    color: var(--neutral-700);
  }
  .nav-toggle {
    display: flex;
    z-index: 1001;
  }

  .hero {
    padding: 120px 20px 180px;
    min-height: auto;
  }
  .hero-headline {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 0 16px;
    margin-top: 48px;
  }
  .stat-card {
    width: 100%;
    max-width: 100%;
    padding: 20px 24px;
  }
  .stat-card:not(:last-child)::after {
    width: 60%;
    height: 1px;
    left: 20%;
    right: auto;
    top: auto;
    bottom: 0;
    background: var(--neutral-200);
  }

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

  .about-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .about-img-secondary {
    right: 0;
    bottom: -24px;
  }
  .about-accent-line {
    top: -16px;
    left: -16px;
    width: 48px;
    height: 48px;
  }
  .about-content .section-title { text-align: center; }
  .about-content .section-tag { display: block; text-align: center; }
  .about-content > p { text-align: center; }
  .about-content > p:first-of-type { margin-top: 0; }

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

  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .reviews-grid .review-card:last-child {
    grid-column: auto;
    max-width: 100%;
  }

  .cta-content {
    padding: 40px 28px;
  }
  .cta-actions {
    flex-direction: column;
  }
  .cta-actions .btn { width: 100%; justify-content: center; }

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

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

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section { padding: 56px 0; }
  .section-header { margin-bottom: 40px; }

  .hero { padding: 100px 16px 160px; }
  .hero-greeting { font-size: 0.75rem; }

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