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

:root {
  --teal-50: #f0fdfa;
  --teal-100: #ccfbf1;
  --teal-200: #99f6e4;
  --teal-300: #5eead4;
  --teal-400: #2dd4bf;
  --teal-500: #14b8a6;
  --teal-600: #0d9488;
  --teal-700: #0f766e;
  --teal-800: #115e59;
  --teal-900: #134e4a;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --warm-50: #faf8f5;
  --warm-100: #f5f0eb;
  --warm-200: #ebe3d8;
  --warm-300: #d4c4b0;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 4px 16px rgba(15, 23, 42, 0.08), 0 2px 6px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 12px 40px rgba(15, 23, 42, 0.10), 0 4px 12px rgba(15, 23, 42, 0.05);
  --shadow-xl: 0 24px 60px rgba(15, 23, 42, 0.12), 0 8px 20px rgba(15, 23, 42, 0.06);
  --font-display: 'DM Serif Display', 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--slate-700);
  background: var(--warm-50);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--teal-600);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover { color: var(--teal-700); }

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

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--slate-900);
  line-height: 1.2;
  font-weight: 400;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-600);
  margin-bottom: 12px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--teal-600);
  border-radius: 2px;
}

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

.section-sub {
  font-size: 1.1rem;
  color: var(--slate-500);
  max-width: 560px;
  margin: 0 auto;
}

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

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-lg);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--teal-600);
  color: white;
  box-shadow: 0 4px 14px rgba(13, 148, 136, 0.3);
}

.btn-primary:hover {
  background: var(--teal-700);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13, 148, 136, 0.4);
}

.btn-secondary {
  background: white;
  color: var(--slate-700);
  border: 1.5px solid var(--slate-200);
}

.btn-secondary:hover {
  border-color: var(--teal-300);
  color: var(--teal-700);
  transform: translateY(-2px);
}

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

/* ========== HEADER ========== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 248, 245, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}

.site-header.scrolled {
  background: rgba(250, 248, 245, 0.95);
  border-bottom-color: var(--warm-200);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--slate-800);
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-list a {
  display: block;
  padding: 8px 16px;
  color: var(--slate-600);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

.nav-list a:hover {
  color: var(--teal-700);
  background: var(--teal-50);
}

.nav-cta {
  background: var(--teal-600) !important;
  color: white !important;
  margin-left: 8px;
}

.nav-cta:hover {
  background: var(--teal-700) !important;
  color: white !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--slate-700);
  position: relative;
  transition: all var(--transition);
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 2px;
  background: var(--slate-700);
  transition: all var(--transition);
}

.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

.nav-toggle[aria-expanded="true"] .hamburger {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}

/* ========== HERO ========== */
.hero {
  padding: 120px 0 0;
  background: var(--warm-50);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-bottom: 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  color: var(--teal-700);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 28px;
}

.hero-headline {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--slate-900);
  letter-spacing: -0.02em;
}

.hero-headline em {
  font-style: italic;
  color: var(--teal-600);
}

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

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

.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--teal-600);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--slate-400);
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--slate-200);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  height: 680px;
}

.hero-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
  z-index: 1;
}

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

.hero-img-float {
  position: absolute;
  bottom: 60px;
  left: -50px;
  z-index: 2;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--warm-50);
}

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

.float-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--teal-700);
}

.hero-img-accent {
  position: absolute;
  top: 40px;
  right: -30px;
  z-index: 2;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--warm-50);
  transform: rotate(3deg);
}

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

.hero-wave {
  margin-top: -1px;
  line-height: 0;
}

.hero-wave svg {
  width: 100%;
  height: 80px;
}

/* ========== ABOUT ========== */
.about {
  padding: 100px 0;
  background: var(--warm-100);
}

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

.about-image-wrap {
  position: relative;
}

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

.about-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  background: var(--teal-100);
  border-radius: var(--radius-xl);
  z-index: -1;
}

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

.about-content p {
  color: var(--slate-500);
  margin-bottom: 16px;
  font-size: 1.02rem;
}

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

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--slate-700);
  font-weight: 500;
}

.about-feature svg {
  flex-shrink: 0;
}

/* ========== PLANTS ========== */
.plants {
  padding: 100px 0;
  background: var(--warm-50);
}

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

.plant-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid var(--warm-200);
}

.plant-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal-100);
}

.plant-card-img {
  position: relative;
  overflow: hidden;
  height: 220px;
}

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

.plant-card:hover .plant-card-img img {
  transform: scale(1.06);
}

.plant-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--teal-600);
  color: white;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.plant-card-body {
  padding: 24px;
}

.plant-card-body h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.plant-card-body p {
  font-size: 0.9rem;
  color: var(--slate-500);
  line-height: 1.6;
  margin-bottom: 16px;
}

.link-arrow {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--teal-600);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition);
}

.link-arrow:hover {
  gap: 8px;
  color: var(--teal-700);
}

/* ========== GIFTS ========== */
.gifts {
  padding: 100px 0;
  background: var(--warm-100);
}

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

.gifts-content .section-title {
  margin-bottom: 20px;
}

.gifts-content p {
  color: var(--slate-500);
  margin-bottom: 28px;
  font-size: 1.02rem;
}

.gift-list {
  list-style: none;
  margin-bottom: 36px;
}

.gift-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.95rem;
  color: var(--slate-600);
  border-bottom: 1px solid var(--warm-200);
}

.gift-list li:last-child { border-bottom: none; }

.gifts-visual {
  position: relative;
  height: 560px;
}

.gift-img-stack img:first-child {
  position: absolute;
  top: 0;
  right: 0;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  width: 380px;
  height: 480px;
  object-fit: cover;
}

.gift-img-stack img:last-child {
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 280px;
  height: 200px;
  object-fit: cover;
  border: 4px solid var(--warm-100);
}

/* ========== SERVICES ========== */
.services {
  padding: 100px 0;
  background: var(--warm-50);
}

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

.service-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--warm-200);
  transition: all var(--transition);
}

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

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--teal-50);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

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

/* ========== VISIT ========== */
.visit {
  padding: 100px 0;
  background: var(--warm-100);
}

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

.visit-intro {
  color: var(--slate-500);
  font-size: 1.05rem;
  margin-bottom: 36px;
}

.visit-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
}

.visit-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.visit-detail-icon {
  width: 44px;
  height: 44px;
  background: var(--teal-50);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.visit-detail strong {
  display: block;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--slate-400);
  margin-bottom: 4px;
  font-weight: 600;
}

.visit-detail span,
.visit-detail a {
  font-size: 1rem;
  color: var(--slate-700);
}

.visit-detail a:hover { color: var(--teal-600); }

.visit-map {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 420px;
}

.visit-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: white;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--slate-700);
}

/* ========== TESTIMONIALS ========== */
.testimonials {
  padding: 100px 0;
  background: var(--warm-50);
}

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

.testimonial-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--warm-200);
  transition: all var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--teal-100);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
}

.testimonial-card p {
  font-size: 0.95rem;
  color: var(--slate-600);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  background: var(--teal-100);
  color: var(--teal-700);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
}

.testimonial-author span {
  font-size: 0.88rem;
  color: var(--slate-500);
}

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

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

.cta-content .section-title {
  margin-bottom: 20px;
}

.cta-content p {
  color: var(--slate-500);
  font-size: 1.02rem;
}

.cta-form-wrap {
  background: white;
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--warm-200);
}

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

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--slate-700);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--slate-700);
  background: var(--warm-50);
  transition: all var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal-400);
  background: white;
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

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

.form-success {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding: 16px;
  background: var(--teal-50);
  border-radius: var(--radius-md);
  color: var(--teal-700);
  font-size: 0.9rem;
  font-weight: 500;
}

/* ========== FOOTER ========== */
.site-footer {
  background: var(--slate-900);
  color: var(--slate-400);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--slate-800);
}

.footer-brand .logo-text {
  color: white;
}

.footer-tagline {
  margin-top: 12px;
  font-size: 0.9rem;
  color: var(--slate-500);
  line-height: 1.7;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate-300);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
}

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

.footer-col a {
  color: var(--slate-400);
  font-size: 0.9rem;
  transition: color var(--transition);
}

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

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--teal-500);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  font-size: 0.85rem;
  color: var(--slate-500);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom a { color: var(--slate-400); }
.footer-bottom a:hover { color: var(--teal-400); }

/* ========== BACK TO TOP ========== */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--teal-600);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all var(--transition);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--teal-700);
  transform: translateY(-3px);
}

/* ========== ANIMATIONS ========== */
.fade-up {
  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);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== MOBILE RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero-grid { gap: 40px; }
  .hero-visual { height: 520px; }
  .hero-img-float { left: -20px; }
  .hero-img-accent { right: -10px; }
  .about-grid,
  .gifts-layout,
  .visit-layout,
  .cta-inner { gap: 48px; }
  .plants-grid,
  .services-grid,
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  
  .nav-list {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: rgba(250, 248, 245, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 20px 24px;
    gap: 4px;
    border-bottom: 1px solid var(--warm-200);
    transform: translateY(-120%);
    opacity: 0;
    transition: all var(--transition);
    pointer-events: none;
  }

  .nav-list.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-list a {
    padding: 12px 16px;
    width: 100%;
  }

  .nav-cta { margin-left: 0 !important; text-align: center; }

  .hero { padding: 100px 0 0; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-visual {
    height: 400px;
    order: -1;
  }
  .hero-img-float { left: 10px; bottom: 30px; }
  .hero-img-accent { right: 10px; top: 20px; }
  .hero-stats { gap: 20px; }
  .hero-headline { font-size: clamp(2rem, 8vw, 2.8rem); }

  .about-grid,
  .gifts-layout,
  .visit-layout,
  .cta-inner {
    grid-template-columns: 1fr;
  }

  .about-image-wrap { order: -1; }
  .about-image-wrap img { height: 320px; }
  .about-image-accent { display: none; }
  .about-features { grid-template-columns: 1fr; }

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

  .gifts-visual { height: 400px; }
  .gift-img-stack img:first-child { width: 260px; height: 340px; }
  .gift-img-stack img:last-child { width: 200px; height: 150px; }

  .form-row { grid-template-columns: 1fr; }
  .cta-form-wrap { padding: 28px; }

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

  .visit-map { height: 280px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 16px; }
  .stat-divider { display: none; }
  .hero-visual { height: 300px; }
  .hero-img-float { display: none; }
  .hero-img-accent { display: none; }
}
