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

:root {
  --terracotta: #C4664A;
  --terracotta-deep: #A8503A;
  --terracotta-light: #D4856E;
  --sand: #F5EDE4;
  --sand-light: #FAF6F1;
  --sand-mid: #EDE3D8;
  --cream: #FFFCF8;
  --charcoal: #2A2220;
  --charcoal-light: #4A3F3A;
  --warm-gray: #8A7E78;
  --warm-gray-light: #B8ADA6;
  --white: #FFFFFF;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 8px rgba(42,34,32,0.06);
  --shadow-md: 0 8px 30px rgba(42,34,32,0.10);
  --shadow-lg: 0 20px 60px rgba(42,34,32,0.14);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-sans);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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 {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Typography ───────────────────────────────────── */
.section-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--charcoal);
  margin-bottom: 20px;
}

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

.section-sub {
  font-size: 1.1rem;
  color: var(--warm-gray);
  max-width: 540px;
  line-height: 1.7;
}

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

.btn-primary {
  background: var(--terracotta);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(196,102,74,0.35);
}
.btn-primary:hover {
  background: var(--terracotta-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196,102,74,0.4);
}

.btn-secondary {
  background: var(--white);
  color: var(--charcoal);
  border: 1.5px solid var(--sand-mid);
}
.btn-secondary:hover {
  border-color: var(--terracotta);
  color: var(--terracotta);
  transform: translateY(-2px);
}

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

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

/* ── Navbar ───────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,252,248,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(42,34,32,0.06);
  transition: var(--transition);
}

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

.nav-inner {
  max-width: 1200px;
  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: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--charcoal);
}
.nav-logo em { font-style: italic; font-weight: 400; color: var(--terracotta); }
.nav-logo svg { color: var(--terracotta); }

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

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--charcoal-light);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--terracotta);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--terracotta); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--terracotta) !important;
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600 !important;
  transition: var(--transition) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--terracotta-deep) !important; transform: translateY(-1px); }

/* Mobile menu */
.menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}
.menu-line {
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}
.menu-btn.active .menu-line:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-btn.active .menu-line:nth-child(2) { opacity: 0; }
.menu-btn.active .menu-line:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(42,34,32,0.4);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s;
}
.mobile-overlay.active { opacity: 1; }

/* ── Hero ─────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 24px 60px;
  background: linear-gradient(135deg, #F5EDE4 0%, #F0D5C4 35%, #E8B89A 65%, #D4856E 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: float 8s ease-in-out infinite;
}
.orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #D4856E, transparent);
  top: -10%;
  right: -5%;
  animation-delay: 0s;
}
.orb-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, #F5C4A0, transparent);
  bottom: -5%;
  left: 10%;
  animation-delay: -3s;
}
.orb-3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, #C4664A, transparent);
  top: 40%;
  left: 30%;
  animation-delay: -5s;
  opacity: 0.3;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -20px) scale(1.05); }
  66% { transform: translate(-15px, 15px) scale(0.95); }
}

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

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta-deep);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1.5px;
  background: var(--terracotta);
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--charcoal);
  margin-bottom: 24px;
}
.hero-headline em {
  font-style: italic;
  color: var(--terracotta-deep);
  position: relative;
}
.hero-headline em::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 6px;
  background: rgba(196,102,74,0.2);
  border-radius: 3px;
  z-index: -1;
}

.hero-sub {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--charcoal-light);
  margin-bottom: 36px;
  max-width: 480px;
}

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

.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--charcoal-light);
}
.trust-item svg { color: var(--terracotta); flex-shrink: 0; }

.hero-image {
  position: relative;
  z-index: 2;
}
.hero-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.hero-image-accent {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  z-index: -1;
  display: none;
}

/* ── Services ─────────────────────────────────────── */
.services {
  padding: 120px 0;
  background: var(--cream);
}

.services .container {
  text-align: center;
}

.services .section-sub {
  margin: 0 auto 60px;
}

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

.service-card {
  background: var(--white);
  border: 1px solid var(--sand-mid);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--terracotta), var(--terracotta-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }

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

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--charcoal);
}

.service-card p {
  font-size: 0.92rem;
  color: var(--warm-gray);
  line-height: 1.7;
  margin-bottom: 16px;
}

.service-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
  background: rgba(196,102,74,0.1);
  padding: 4px 10px;
  border-radius: 20px;
}

/* ── About ────────────────────────────────────────── */
.about {
  padding: 120px 0;
  background: var(--sand-light);
}

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

.about-images {
  position: relative;
}

.about-img-main img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-img-secondary {
  position: absolute;
  bottom: -40px;
  right: -30px;
  width: 200px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 5px solid var(--sand-light);
}
.about-img-secondary img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.about-accent-box {
  position: absolute;
  top: -20px;
  left: -20px;
  background: var(--terracotta);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}
.about-accent-box .accent-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}
.about-accent-box .accent-text {
  font-size: 0.78rem;
  font-weight: 500;
  opacity: 0.9;
  line-height: 1.4;
}

.about-content .section-sub {
  margin-bottom: 24px;
}

.about-content p {
  font-size: 1rem;
  color: var(--warm-gray);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-stats {
  display: flex;
  gap: 32px;
  margin: 32px 0 40px;
  padding: 28px 0;
  border-top: 1px solid var(--sand-mid);
  border-bottom: 1px solid var(--sand-mid);
}

.stat { text-align: center; }
.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.82rem;
  color: var(--warm-gray);
  font-weight: 500;
}

/* ── Gallery ──────────────────────────────────────── */
.gallery {
  padding: 120px 0;
  background: var(--cream);
}

.gallery-header {
  text-align: center;
  margin-bottom: 60px;
}

.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;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}
.gallery-item:hover img { transform: scale(1.05); }

.gallery-item--tall {
  grid-column: span 4;
  grid-row: span 2;
}
.gallery-item--tall img { height: 100%; min-height: 460px; }

.gallery-item:not(.gallery-item--tall) img { height: 220px; }

/* ── Testimonials ─────────────────────────────────── */
.testimonials {
  padding: 120px 0;
  background: var(--charcoal);
  color: var(--white);
}

.testimonials .section-label { color: var(--terracotta-light); }
.testimonials .section-title { color: var(--white); }
.testimonials .section-title em { color: var(--terracotta-light); }

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

.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  transition: var(--transition);
  position: relative;
}
.testimonial-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
}

.quote-mark {
  color: var(--terracotta);
  opacity: 0.4;
  margin-bottom: 16px;
}

.testimonial-card p {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.8);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-card footer {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
}

.testimonial-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  font-style: normal;
}

/* ── Contact ──────────────────────────────────────── */
.contact {
  padding: 120px 0;
  background: var(--sand-light);
}

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

.contact-intro {
  font-size: 1.05rem;
  color: var(--warm-gray);
  line-height: 1.75;
  margin-bottom: 40px;
}

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

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

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--white);
  border: 1px solid var(--sand-mid);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta);
  flex-shrink: 0;
}

.contact-item strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: 4px;
}
.contact-item p {
  font-size: 0.95rem;
  color: var(--charcoal);
  line-height: 1.6;
}
.contact-item a {
  color: var(--terracotta);
  font-weight: 500;
  transition: color 0.2s;
}
.contact-item a:hover { color: var(--terracotta-deep); }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--sand-mid);
}

.contact-form h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--charcoal);
}

.form-note {
  font-size: 0.88rem;
  color: var(--warm-gray);
  margin-bottom: 28px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--charcoal);
  background: var(--sand-light);
  border: 1.5px solid var(--sand-mid);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--terracotta);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(196,102,74,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--warm-gray-light);
}
.form-group textarea { resize: vertical; min-height: 100px; }

.form-success {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding: 16px 20px;
  background: rgba(196,102,74,0.08);
  border: 1px solid rgba(196,102,74,0.2);
  border-radius: var(--radius-sm);
  color: var(--terracotta-deep);
  font-size: 0.92rem;
  font-weight: 500;
}
.form-success svg { color: var(--terracotta); flex-shrink: 0; }

/* ── Footer ───────────────────────────────────────── */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
}

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

.footer-brand p {
  margin-top: 16px;
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 300px;
}
.footer-brand .nav-logo { color: var(--white); }

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links strong,
.footer-contact strong {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 4px;
}
.footer-links a {
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--terracotta-light); }
.footer-contact p { font-size: 0.9rem; line-height: 1.7; }
.footer-contact a { color: var(--terracotta-light); transition: color 0.2s; }
.footer-contact a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 28px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--terracotta-light); }

/* ── Floating CTA ─────────────────────────────────── */
.floating-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--terracotta);
  color: var(--white);
  padding: 14px 22px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: 0 8px 30px rgba(196,102,74,0.45);
  transition: var(--transition);
  animation: pulse-cta 3s ease-in-out infinite;
}
.floating-cta:hover {
  background: var(--terracotta-deep);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(196,102,74,0.5);
}
.floating-cta svg { flex-shrink: 0; }

@keyframes pulse-cta {
  0%, 100% { box-shadow: 0 8px 30px rgba(196,102,74,0.45); }
  50% { box-shadow: 0 8px 40px rgba(196,102,74,0.65); }
}

/* ── Scroll animations ────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-image { order: -1; max-width: 480px; margin: 0 auto; }
  .hero-image img { height: 400px; }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-images { max-width: 500px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .menu-btn { display: flex; }
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 40px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-lg);
    z-index: 999;
  }
  .nav-links.active { transform: translateX(0); }
  .mobile-overlay.active { display: block; }

  .hero { padding: 100px 20px 60px; min-height: auto; }
  .hero-headline { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-image img { height: 300px; }
  .hero-trust { flex-direction: column; gap: 12px; }

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

  .about { padding: 80px 0; }
  .about-img-secondary { width: 150px; right: -10px; bottom: -20px; }
  .about-img-secondary img { height: 150px; }
  .about-stats { flex-wrap: wrap; gap: 20px; }

  .gallery { padding: 80px 0; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item--tall {
    grid-column: span 2;
    grid-row: span 1;
  }
  .gallery-item--tall img { min-height: 260px; }
  .gallery-item:not(.gallery-item--tall) img { height: 200px; }

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

  .contact { padding: 80px 0; }
  .contact-form-wrap { padding: 28px 24px; }

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

  .floating-cta span { display: none; }
  .floating-cta { padding: 16px; border-radius: 50%; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--tall { grid-column: span 1; }
}
