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

:root {
  --terracotta: #C0593A;
  --terracotta-dark: #A04830;
  --terracotta-light: #D4785A;
  --sand: #E8D5C0;
  --sand-light: #F5EDE3;
  --sand-cream: #FDF8F3;
  --sand-dark: #C4A882;
  --charcoal: #2A2219;
  --charcoal-light: #4A3F35;
  --white: #FFFFFF;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(42,34,25,0.08);
  --shadow-lg: 0 12px 48px rgba(42,34,25,0.12);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--sand-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 { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

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

/* ── TYPOGRAPHY ── */
h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 16px;
}
.section-tag::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--terracotta);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--charcoal);
  margin-bottom: 20px;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--charcoal-light);
  max-width: 560px;
  line-height: 1.7;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--terracotta);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(192,89,58,0.35);
}
.btn--primary:hover {
  background: var(--terracotta-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(192,89,58,0.4);
}
.btn--outline {
  background: transparent;
  color: var(--charcoal);
  border: 2px solid var(--sand-dark);
}
.btn--outline:hover {
  border-color: var(--terracotta);
  color: var(--terracotta);
  transform: translateY(-2px);
}
.btn--full { width: 100%; }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253,248,243,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(196,168,130,0.2);
  transition: var(--transition);
}
.nav.scrolled { box-shadow: var(--shadow); }
.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-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--charcoal);
}
.nav-logo-icon { width: 32px; height: 32px; flex-shrink: 0; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--charcoal-light);
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--terracotta);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--terracotta); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--terracotta);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--terracotta-dark); color: var(--white) !important; }

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

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
  background: var(--sand-cream);
}
.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.geo-circle {
  position: absolute;
  border-radius: 50%;
}
.geo-circle--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(192,89,58,0.08) 0%, transparent 70%);
  top: -150px;
  right: -100px;
}
.geo-circle--2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(232,213,192,0.5) 0%, transparent 70%);
  bottom: -80px;
  left: -60px;
}
.geo-triangle {
  position: absolute;
  width: 0;
  height: 0;
  border-left: 80px solid transparent;
  border-right: 80px solid transparent;
  border-bottom: 140px solid rgba(192,89,58,0.06);
  top: 20%;
  left: 5%;
  transform: rotate(-15deg);
}
.geo-rect {
  position: absolute;
  width: 120px;
  height: 120px;
  background: rgba(232,213,192,0.4);
  border-radius: 20px;
  bottom: 15%;
  right: 8%;
  transform: rotate(30deg);
}
.geo-dots {
  position: absolute;
  width: 80px;
  height: 80px;
  bottom: 30%;
  left: 3%;
  background-image: radial-gradient(circle, var(--terracotta-light) 1.5px, transparent 1.5px);
  background-size: 12px 12px;
  opacity: 0.3;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-left { max-width: 560px; }
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--terracotta);
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}
.hero-tag-dot {
  width: 8px;
  height: 8px;
  background: var(--terracotta);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.hero-headline {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 24px;
}
.hero-accent {
  font-style: italic;
  color: var(--terracotta);
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--charcoal-light);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}
.hero-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--terracotta);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: var(--charcoal-light);
  letter-spacing: 0.04em;
}
.hero-stat-divider {
  width: 1px;
  height: 48px;
  background: var(--sand-dark);
}

.hero-image-stack {
  position: relative;
  height: 650px;
}
.hero-img {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-img--1 {
  width: 340px;
  height: 440px;
  top: 0;
  right: 20px;
  z-index: 2;
}
.hero-img--2 {
  width: 260px;
  height: 200px;
  bottom: 60px;
  left: 0;
  z-index: 3;
  border: 4px solid var(--sand-cream);
}
.hero-badge {
  position: absolute;
  bottom: 200px;
  right: 0;
  z-index: 4;
  background: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--charcoal);
}
.hero-badge svg {
  width: 20px;
  height: 20px;
  color: var(--terracotta);
}

/* ── MARQUEE ── */
.marquee {
  background: var(--terracotta);
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: flex;
  gap: 24px;
  animation: marquee 25s linear infinite;
}
.marquee span {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.marquee-sep {
  color: rgba(255,255,255,0.4) !important;
  font-size: 0.6rem !important;
  letter-spacing: 0 !important;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── COLLECTIONS ── */
.collections {
  padding: 100px 0;
  background: var(--sand-cream);
}
.section-header {
  margin-bottom: 60px;
}
.collections-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}
.collection-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: block;
  min-height: 280px;
}
.collection-card--large {
  grid-row: 1 / 3;
  min-height: 580px;
}
.collection-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.collection-card:hover img { transform: scale(1.05); }
.collection-card-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(42,34,25,0.8) 0%, rgba(42,34,25,0.2) 50%, transparent 100%);
  z-index: 1;
}
.collection-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  z-index: 2;
  color: var(--white);
}
.collection-card-num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--terracotta-light);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 8px;
}
.collection-card h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.collection-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  margin-bottom: 16px;
}
.collection-card-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--terracotta-light);
  transition: var(--transition);
}
.collection-card:hover .collection-card-link { color: var(--white); }
.collection-card-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ── ABOUT ── */
.about {
  padding: 100px 0;
  background: var(--sand);
  position: relative;
  overflow: hidden;
}
.about::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(192,89,58,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-images {
  position: relative;
  height: 700px;
}
.about-img-main {
  position: absolute;
  width: 360px;
  height: 480px;
  top: 0;
  left: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-float {
  position: absolute;
  width: 280px;
  height: 210px;
  bottom: 40px;
  right: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--sand);
}
.about-pattern {
  position: absolute;
  width: 160px;
  height: 160px;
  top: 20px;
  right: 40px;
  background-image: radial-gradient(circle, var(--terracotta) 2px, transparent 2px);
  background-size: 16px 16px;
  opacity: 0.2;
  z-index: -1;
}
.about-content { position: relative; z-index: 1; }
.about-body {
  font-size: 1.05rem;
  color: var(--charcoal-light);
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-values {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}
.about-value {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.about-value-icon {
  width: 48px;
  height: 48px;
  background: var(--white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow);
}
.about-value-icon svg {
  width: 22px;
  height: 22px;
  color: var(--terracotta);
}
.about-value strong {
  display: block;
  font-size: 1rem;
  color: var(--charcoal);
  margin-bottom: 2px;
}
.about-value span {
  font-size: 0.9rem;
  color: var(--charcoal-light);
}

/* ── GALLERY ── */
.gallery {
  padding: 100px 0;
  background: var(--sand-cream);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius);
  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);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item--1 { grid-column: 1 / 8; }
.gallery-item--2 { grid-column: 8 / 13; }
.gallery-item--3 { grid-column: 1 / 5; }
.gallery-item--4 { grid-column: 5 / 13; }
.gallery-item--5 { grid-column: 1 / 7; }

/* ── TESTIMONIALS ── */
.testimonials {
  padding: 100px 0;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(192,89,58,0.15) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(232,213,192,0.08) 0%, transparent 50%);
}
.testimonials .section-tag { color: var(--terracotta-light); }
.testimonials .section-tag::before { background: var(--terracotta-light); }
.testimonials .section-title { color: var(--white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: var(--transition);
}
.testimonial-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
}
.testimonial-quote {
  margin-bottom: 20px;
}
.testimonial-quote svg {
  width: 40px;
  height: 40px;
  color: var(--terracotta-light);
  opacity: 0.6;
}
.testimonial-text {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.8);
  margin-bottom: 24px;
}
.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.testimonial-name {
  font-weight: 600;
  color: var(--white);
  font-size: 0.95rem;
}
.testimonial-location {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* ── VISIT ── */
.visit {
  padding: 100px 0;
  background: var(--sand-cream);
}
.visit-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.visit-desc {
  font-size: 1.05rem;
  color: var(--charcoal-light);
  line-height: 1.8;
  margin-bottom: 40px;
}
.visit-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.visit-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.visit-detail-icon {
  width: 48px;
  height: 48px;
  background: var(--white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow);
}
.visit-detail-icon svg {
  width: 22px;
  height: 22px;
  color: var(--terracotta);
}
.visit-detail strong {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.visit-detail span,
.visit-detail a {
  font-size: 0.95rem;
  color: var(--charcoal-light);
  line-height: 1.6;
}
.visit-detail a:hover { color: var(--terracotta); }

.visit-form-wrap { position: relative; }
.visit-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.visit-form-card h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}
.visit-form-card > p {
  font-size: 0.95rem;
  color: var(--charcoal-light);
  margin-bottom: 32px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--sand);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--sand-cream);
  transition: var(--transition);
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--terracotta);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 100px; }

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success-icon {
  width: 64px;
  height: 64px;
  background: rgba(192,89,58,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.form-success-icon svg {
  width: 32px;
  height: 32px;
  color: var(--terracotta);
}
.form-success h4 {
  font-size: 1.4rem;
  margin-bottom: 8px;
  color: var(--charcoal);
}
.form-success p {
  color: var(--charcoal-light);
  font-size: 0.95rem;
}

/* ── MAP STRIP ── */
.map-strip {
  height: 320px;
  filter: saturate(0.7) contrast(1.05);
}

/* ── FOOTER ── */
.footer {
  background: var(--charcoal);
  padding: 80px 0 0;
  color: rgba(255,255,255,0.7);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p {
  margin-top: 16px;
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 300px;
}
.footer-brand .nav-logo { color: var(--white); }
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer-col strong {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul { display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col li a,
.footer-col li {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
  line-height: 1.5;
}
.footer-col li a:hover { color: var(--terracotta-light); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

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

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { display: none; }
  .hero-left { max-width: 100%; }
  .about-layout { grid-template-columns: 1fr; gap: 40px; }
  .about-images { height: 500px; }
  .visit-layout { grid-template-columns: 1fr; gap: 40px; }
  .collections-grid { grid-template-columns: 1fr 1fr; }
  .collection-card--large { grid-row: auto; min-height: 350px; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(253,248,243,0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 32px 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(196,168,130,0.2);
    transform: translateY(-120%);
    transition: var(--transition);
    opacity: 0;
    pointer-events: none;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-toggle { display: flex; }
  .hero { min-height: auto; padding: 120px 0 80px; }
  .hero-stats { flex-direction: column; gap: 16px; align-items: flex-start; }
  .hero-stat-divider { width: 48px; height: 1px; }
  .collections-grid { grid-template-columns: 1fr; }
  .collection-card-col { flex-direction: row; }
  .collection-card { min-height: 220px; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 180px);
  }
  .gallery-item--1 { grid-column: 1 / 3; }
  .gallery-item--2 { grid-column: 1 / 2; }
  .gallery-item--3 { grid-column: 2 / 3; }
  .gallery-item--4 { grid-column: 1 / 3; }
  .gallery-item--5 { grid-column: 1 / 3; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .about-images { height: 400px; }
  .about-img-main { width: 260px; height: 340px; }
  .about-img-float { width: 200px; height: 150px; }
}

@media (max-width: 480px) {
  .collection-card-col { flex-direction: column; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .visit-form-card { padding: 24px; }
  .footer-links { grid-template-columns: 1fr; }
}
