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

:root {
  --navy:        #1a2744;
  --navy-light:  #243352;
  --navy-dark:   #121c30;
  --gold:        #c8a45a;
  --gold-light:  #dbb96e;
  --gold-dark:   #b08d3f;
  --cream:       #faf6f0;
  --cream-dark:  #f0e8da;
  --white:       #ffffff;
  --text-dark:   #1a1a1a;
  --text-muted:  #5a5a5a;
  --text-light:  #f5f0e8;
  --font-serif:  'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans:   'Lato', 'Helvetica Neue', Arial, sans-serif;
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.7;
  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; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.skip-link {
  position: absolute; top: -100%; left: 50%; transform: translateX(-50%);
  background: var(--navy); color: var(--gold); padding: 0.5rem 1rem;
  z-index: 9999; border-radius: 0 0 4px 4px; font-size: 0.875rem;
}
.skip-link:focus { top: 0; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ─── TYPOGRAPHY ─── */
.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 1rem;
}
.section-line {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin-bottom: 2rem;
}
.section-header--center { text-align: center; }
.section-header--center .section-line { margin-left: auto; margin-right: auto; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-sans); font-weight: 600; font-size: 0.875rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.875rem 2rem; border-radius: 2px;
  transition: all 0.3s var(--ease); white-space: nowrap;
}
.btn-gold {
  background: var(--gold); color: var(--navy-dark);
  border: 2px solid var(--gold);
}
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,164,90,0.3); }
.btn-outline {
  background: transparent; color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }
.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(--navy); transform: translateY(-2px); }
.btn-lg { padding: 1rem 2.5rem; font-size: 0.9375rem; }
.btn-full { width: 100%; }

/* ─── HEADER ─── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(26, 39, 68, 0.0);
  backdrop-filter: blur(0px);
  transition: all 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(26, 39, 68, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200,164,90,0.15);
  box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 1.25rem; padding-bottom: 1.25rem;
  transition: padding 0.4s var(--ease);
}
.site-header.scrolled .header-inner { padding-top: 0.75rem; padding-bottom: 0.75rem; }

.logo {
  display: flex; align-items: center; gap: 0.625rem;
  font-family: var(--font-serif); font-size: 1.125rem; font-weight: 600;
  color: var(--white); letter-spacing: 0.02em;
}
.logo-mark { color: var(--gold); flex-shrink: 0; }
.logo-text { transition: color 0.3s; }

.nav-list {
  display: flex; align-items: center; gap: 0.25rem;
}
.nav-link {
  font-size: 0.8125rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.8);
  padding: 0.5rem 0.875rem; border-radius: 2px;
  transition: color 0.3s, background 0.3s;
}
.nav-link:hover { color: var(--gold); background: rgba(200,164,90,0.08); }
.nav-cta {
  background: var(--gold); color: var(--navy-dark) !important;
  margin-left: 0.5rem; font-weight: 600;
}
.nav-cta:hover { background: var(--gold-light); color: var(--navy-dark) !important; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  padding: 0.5rem; z-index: 1001;
}
.hamburger {
  display: block; width: 24px; height: 2px; background: var(--white);
  transition: all 0.3s var(--ease); transform-origin: center;
}
.hamburger::before, .hamburger::after {
  content: ''; display: block; width: 24px; height: 2px;
  background: var(--white); transition: all 0.3s var(--ease);
}
.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle[aria-expanded="true"] .hamburger::after { transform: rotate(-45deg) translate(5px, -5px); }

/* ─── HERO ─── */
.hero {
  position: relative; min-height: 100vh;
  background: var(--navy);
  display: flex; align-items: center;
  overflow: hidden;
  padding-top: 5rem;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(200,164,90,0.06) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(200,164,90,0.04) 0%, transparent 50%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 3rem;
  align-items: center;
  position: relative; z-index: 1;
  padding-bottom: 6rem;
}
.hero-content { padding-right: 1rem; }
.hero-eyebrow {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.25rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.hero-eyebrow::before {
  content: ''; width: 40px; height: 1px; background: var(--gold);
}
.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.75rem, 5.5vw, 4.5rem);
  font-weight: 700; line-height: 1.08;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero h1 em {
  font-style: italic; color: var(--gold);
  font-weight: 500;
}
.hero-sub {
  font-size: 1.0625rem; line-height: 1.8;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2.25rem; max-width: 480px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-badges { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.badge {
  font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.375rem 0.875rem; border-radius: 2px;
}

.hero-image { position: relative; height: 85vh; max-height: 820px; }
.hero-img-main {
  position: absolute; top: 0; right: 0;
  width: 82%; height: 88%;
  border-radius: 4px; overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}
.hero-img-main img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-accent {
  position: absolute; bottom: 5%; left: 0;
  width: 52%; border-radius: 4px; overflow: hidden;
  border: 4px solid var(--navy);
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}
.hero-img-accent img { width: 100%; height: 100%; object-fit: cover; }
.hero-accent-line {
  position: absolute; top: 8%; right: -20px;
  width: 80px; height: 80px;
  border: 2px solid var(--gold);
  border-radius: 2px; z-index: -1;
  opacity: 0.4;
}
.hero-wave {
  position: absolute; bottom: 0; left: 0; right: 0;
  line-height: 0;
}
.hero-wave svg { width: 100%; height: 80px; }

/* ─── SERVICES ─── */
.services {
  padding: 6rem 0;
  background: var(--cream);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border: 1px solid rgba(26,39,68,0.06);
  border-radius: 4px;
  padding: 2.25rem 2rem;
  transition: all 0.4s var(--ease);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(26,39,68,0.1); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(200,164,90,0.1), rgba(200,164,90,0.05));
  color: var(--gold-dark);
  margin-bottom: 1.25rem;
  transition: all 0.3s var(--ease);
}
.service-card:hover .service-icon { background: var(--gold); color: var(--navy-dark); }
.service-name {
  font-family: var(--font-serif);
  font-size: 1.25rem; font-weight: 600;
  color: var(--navy); margin-bottom: 0.625rem;
}
.service-desc {
  font-size: 0.9375rem; color: var(--text-muted);
  line-height: 1.7;
}

/* ─── ABOUT ─── */
.about {
  padding: 6rem 0;
  background: var(--navy);
  position: relative; overflow: hidden;
}
.about::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(200,164,90,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative; z-index: 1;
}
.about-images { position: relative; height: 600px; }
.about-img-main {
  position: absolute; top: 0; left: 0;
  width: 75%; height: 80%;
  border-radius: 4px; overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.3);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-float {
  position: absolute; bottom: 0; right: 0;
  width: 58%; border-radius: 4px; overflow: hidden;
  border: 4px solid var(--navy);
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}
.about-img-float img { width: 100%; height: 100%; object-fit: cover; }
.about-experience {
  position: absolute; bottom: 18%; left: 55%;
  background: var(--gold);
  padding: 1.5rem 2rem; border-radius: 4px;
  box-shadow: 0 15px 40px rgba(200,164,90,0.3);
  z-index: 2;
}
.about-experience .exp-number {
  display: block; font-family: var(--font-serif);
  font-size: 2.5rem; font-weight: 700;
  color: var(--navy-dark); line-height: 1;
}
.about-experience .exp-label {
  display: block; font-size: 0.8125rem; font-weight: 600;
  color: var(--navy); letter-spacing: 0.05em;
  margin-top: 0.25rem;
}
.about-eyebrow { color: var(--gold); }
.about-title { color: var(--white); }
.about-text {
  font-size: 1rem; color: rgba(255,255,255,0.7);
  line-height: 1.85; margin-bottom: 1.25rem;
}
.about-features {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem; margin-top: 2rem;
}
.about-feature {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.9375rem; font-weight: 500;
  color: rgba(255,255,255,0.85);
}
.about-feature-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(200,164,90,0.12);
  color: var(--gold);
}

/* ─── GALLERY ─── */
.gallery {
  padding: 6rem 0;
  background: var(--cream-dark);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
}
.gallery-item {
  position: relative; border-radius: 4px; overflow: hidden;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,39,68,0.7) 0%, transparent 60%);
  display: flex; align-items: flex-end;
  padding: 1.5rem; opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-family: var(--font-serif); font-size: 1.125rem;
  color: var(--white); font-style: italic;
}
.gallery-item--tall { grid-column: span 4; grid-row: span 2; }
.gallery-item--tall img { height: 100%; }
.gallery-item--wide { grid-column: span 6; }
.gallery-item:not(.gallery-item--tall):not(.gallery-item--wide) { grid-column: span 3; }

/* ─── TESTIMONIALS ─── */
.testimonials {
  padding: 6rem 0;
  background: var(--white);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--cream);
  border: 1px solid rgba(26,39,68,0.06);
  border-radius: 4px;
  padding: 2.25rem;
  position: relative;
  transition: all 0.3s var(--ease);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 15px 40px rgba(26,39,68,0.08); }
.testimonial-quote-mark {
  font-family: var(--font-serif); font-size: 4rem;
  line-height: 1; color: var(--gold);
  position: absolute; top: 0.75rem; left: 1.25rem;
  opacity: 0.4;
}
.testimonial-text {
  font-size: 0.9375rem; line-height: 1.8;
  color: var(--text-muted);
  margin-top: 1.5rem; margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-author {
  font-size: 0.8125rem; font-weight: 600;
  color: var(--navy); letter-spacing: 0.05em;
  border-top: 1px solid rgba(26,39,68,0.1);
  padding-top: 1rem;
}

/* ─── CTA ─── */
.cta {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  position: relative; overflow: hidden;
}
.cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(200,164,90,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.cta-content {
  text-align: center; max-width: 640px; margin: 0 auto;
  position: relative; z-index: 1;
}
.cta-eyebrow { color: var(--gold); }
.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700; line-height: 1.15;
  color: var(--white); margin-bottom: 1.25rem;
}
.cta-text {
  font-size: 1.0625rem; color: rgba(255,255,255,0.7);
  line-height: 1.8; margin-bottom: 2.5rem;
}
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ─── CONTACT ─── */
.contact {
  padding: 6rem 0;
  background: var(--cream);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: start;
}
.contact-details { margin: 2rem 0; }
.contact-item {
  display: flex; align-items: flex-start; gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(200,164,90,0.12), rgba(200,164,90,0.05));
  color: var(--gold-dark);
}
.contact-item strong {
  display: block; font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--navy); margin-bottom: 0.25rem;
}
.contact-item span, .contact-item a {
  font-size: 0.9375rem; color: var(--text-muted);
  line-height: 1.6;
}
.contact-item a:hover { color: var(--gold-dark); }
.contact-hours {
  background: var(--white);
  border: 1px solid rgba(26,39,68,0.06);
  border-radius: 4px; padding: 1.5rem 2rem;
}
.contact-hours strong {
  display: block; font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--navy); margin-bottom: 0.5rem;
}
.contact-hours p {
  font-size: 0.9375rem; color: var(--text-muted); line-height: 1.7;
}

.contact-form-wrap {
  background: var(--white);
  border: 1px solid rgba(26,39,68,0.06);
  border-radius: 4px; padding: 2.5rem;
}
.form-title {
  font-family: var(--font-serif);
  font-size: 1.5rem; font-weight: 600;
  color: var(--navy); margin-bottom: 1.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block; font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--navy); margin-bottom: 0.5rem;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.875rem 1rem;
  font-family: var(--font-sans); font-size: 0.9375rem;
  color: var(--text-dark);
  background: var(--cream);
  border: 1px solid rgba(26,39,68,0.1);
  border-radius: 2px; outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,164,90,0.15);
}
.form-group input::placeholder, .form-group textarea::placeholder {
  color: var(--text-muted); opacity: 0.6;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%231a2744' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-success {
  display: none;
  margin-top: 1rem; padding: 1rem;
  background: rgba(200,164,90,0.1);
  border: 1px solid rgba(200,164,90,0.3);
  border-radius: 2px;
  font-size: 0.9375rem; color: var(--navy);
  text-align: center;
}
.form-success.visible { display: block; }

/* ─── FOOTER ─── */
.site-footer {
  background: var(--navy-dark);
  padding: 4rem 0 0;
  color: rgba(255,255,255,0.6);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.logo-light { color: var(--white); margin-bottom: 1rem; }
.footer-brand p { font-size: 0.9375rem; line-height: 1.7; max-width: 280px; }
.footer-links h4, .footer-contact h4 {
  font-family: var(--font-serif);
  font-size: 1rem; font-weight: 600;
  color: var(--white); margin-bottom: 1rem;
}
.footer-links ul li, .footer-contact ul li {
  margin-bottom: 0.5rem;
}
.footer-links a, .footer-contact a {
  font-size: 0.875rem; color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}
.footer-links a:hover, .footer-contact a:hover { color: var(--gold); }
.footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.8125rem; color: rgba(255,255,255,0.35);
}

/* ─── SCROLL REVEAL (progressive enhancement) ─── */
.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(30px);
  }
  .reveal.revealed {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr 0.7fr; gap: 2rem; }
  .about-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid .testimonial-card:last-child { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-list {
    position: fixed; top: 0; right: 0;
    width: 280px; height: 100vh;
    background: var(--navy-dark);
    flex-direction: column; align-items: stretch;
    padding: 5rem 2rem 2rem; gap: 0;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    box-shadow: -10px 0 40px rgba(0,0,0,0.3);
  }
  .nav-list.open { transform: translateX(0); }
  .nav-link { padding: 0.875rem 0; color: rgba(255,255,255,0.8); border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav-link:hover { background: none; color: var(--gold); border-bottom-color: rgba(200,164,90,0.2); }
  .nav-cta { margin-left: 0; margin-top: 1rem; text-align: center; border-bottom: none; }

  .hero { padding-top: 4.5rem; min-height: auto; padding-bottom: 4rem; }
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-content { padding-right: 0; }
  .hero h1 { font-size: clamp(2.25rem, 8vw, 3.5rem); }
  .hero-image { height: 50vh; max-height: 480px; }
  .hero-img-main { width: 100%; height: 100%; }
  .hero-img-accent { display: none; }
  .hero-accent-line { display: none; }
  .hero-wave svg { height: 50px; }

  .services-grid { grid-template-columns: 1fr; }
  .services { padding: 4rem 0; }

  .about { padding: 4rem 0; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-images { height: 400px; }
  .about-features { grid-template-columns: 1fr; }

  .gallery { padding: 4rem 0; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item--tall { grid-column: span 2; grid-row: span 1; }
  .gallery-item--wide { grid-column: span 2; }
  .gallery-item:not(.gallery-item--tall):not(.gallery-item--wide) { grid-column: span 1; }

  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-grid .testimonial-card:last-child { grid-column: span 1; }
  .testimonials { padding: 4rem 0; }

  .cta { padding: 4rem 0; }

  .contact { padding: 4rem 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }

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

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-badges { flex-direction: column; }
  .cta-actions { flex-direction: column; }
  .cta-actions .btn { width: 100%; justify-content: center; }
}
