/* ===========================================================================
   Aden Garden Florist — static theme
   Converted from the React/Tailwind source to plain HTML/CSS/JS.
   Palette, type and radius mirror the original index.css design tokens.
   =========================================================================== */

:root {
  --background: #faf7f2;        /* warm cream  (36 33% 96%)  */
  --foreground: #2d4a2d;        /* forest green (120 24% 23%) */
  --primary: #7a9e7e;           /* muted sage  (127 19% 55%) */
  --primary-foreground: #ffffff;
  --secondary: #c4857a;         /* dusty rose  (9 39% 62%)   */
  --secondary-foreground: #ffffff;
  --card: #ffffff;
  --border: rgba(45, 74, 45, 0.10);
  --muted: rgba(45, 74, 45, 0.05);
  --destructive: #dc2626;

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

  --radius: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --container: 1152px;

  --shadow-sm: 0 1px 2px rgba(45, 74, 45, 0.06), 0 1px 3px rgba(45, 74, 45, 0.05);
  --shadow-md: 0 4px 12px rgba(45, 74, 45, 0.08);
  --shadow-lg: 0 12px 32px rgba(45, 74, 45, 0.12);
}

/* ----- reset ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--foreground);
  background: var(--background);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
::selection { background: rgba(122, 158, 126, 0.2); color: var(--primary); }

.serif { font-family: var(--font-serif); }

/* ----- layout helpers ----- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 1rem; }
.section { padding: 5rem 0; }
.section-lg { padding: 6rem 0; }
.text-center { text-align: center; }
.muted { color: rgba(45, 74, 45, 0.7); }
.muted-2 { color: rgba(45, 74, 45, 0.6); }
.flow > * + * { margin-top: 1.5rem; }

/* ----- typography ----- */
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 500; line-height: 1.15; color: var(--foreground); }
.h1 { font-size: clamp(2.25rem, 5vw, 3.25rem); }
.h2 { font-size: clamp(1.875rem, 4vw, 2.5rem); }
.h3 { font-size: 1.5rem; }
.lead { font-size: 1.125rem; line-height: 1.7; color: rgba(45, 74, 45, 0.8); }
.eyebrow { letter-spacing: 0.04em; }

/* ===========================================================================
   Buttons
   =========================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.75rem 1.5rem; border-radius: var(--radius);
  font-weight: 500; font-size: 1rem; line-height: 1;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
  cursor: pointer; white-space: nowrap;
}
.btn svg { width: 1.15em; height: 1.15em; }
.btn-lg { padding: 1rem 2rem; font-size: 1.125rem; }
.btn-block { width: 100%; }

.btn-primary { background: var(--primary); color: var(--primary-foreground); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: #6c9070; }

.btn-secondary { background: var(--secondary); color: var(--secondary-foreground); }
.btn-secondary:hover { background: #b8766b; }

.btn-white { background: #fff; color: var(--foreground); box-shadow: 0 4px 20px rgba(0,0,0,0.25); }
.btn-white:hover { background: rgba(255,255,255,0.9); }

.btn-outline { background: transparent; color: var(--foreground); border: 2px solid var(--border); }
.btn-outline:hover { border-color: var(--secondary); color: var(--secondary); }

.btn-soft {
  background: rgba(122,158,126,0.1); color: var(--primary);
  border: 1px solid rgba(122,158,126,0.2);
}
.btn-soft:hover { background: var(--primary); color: var(--primary-foreground); border-color: var(--primary); }

/* ===========================================================================
   Navbar
   =========================================================================== */
.navbar {
  position: sticky; top: 0; z-index: 50; width: 100%;
  border-bottom: 1px solid var(--border);
  background: rgba(250, 247, 242, 0.85);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
}
.navbar__inner { height: 5rem; display: flex; align-items: center; justify-content: space-between; }
.brand { font-family: var(--font-serif); font-size: 1.35rem; font-weight: 600; letter-spacing: 0.02em; }
.nav-links { display: none; align-items: center; gap: 2rem; }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: rgba(45,74,45,0.8); transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.nav-phone {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--primary); color: var(--primary-foreground);
  padding: 0.5rem 0.85rem; border-radius: var(--radius);
  font-size: 0.9rem; font-weight: 500; transition: background-color .2s;
}
.nav-phone:hover { background: #6c9070; }

.nav-mobile-actions { display: flex; align-items: center; gap: 0.75rem; }
.nav-phone-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.25rem; height: 2.25rem; border-radius: 999px;
  background: var(--primary); color: #fff; transition: background-color .2s;
}
.nav-phone-icon:hover { background: #6c9070; }
.nav-toggle { padding: 0.5rem; color: var(--foreground); display: inline-flex; }

.mobile-menu {
  display: none; border-top: 1px solid var(--border); background: var(--background);
  padding: 1rem; box-shadow: var(--shadow-lg);
}
.mobile-menu.open { display: block; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 0.5rem; }
.mobile-menu a {
  font-size: 1.05rem; font-weight: 500; padding: 0.6rem 0.75rem;
  border-radius: var(--radius); color: var(--foreground); transition: background-color .2s, color .2s;
}
.mobile-menu a:hover { background: var(--muted); }
.mobile-menu a.active { background: rgba(122,158,126,0.1); color: var(--primary); }

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .nav-mobile-actions { display: none; }
}

/* ===========================================================================
   Hero
   =========================================================================== */
.hero {
  position: relative; min-height: 85vh; display: flex; align-items: center; justify-content: center;
  overflow: hidden; text-align: center;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(20,40,25,0.65) 0%, rgba(20,40,25,0.35) 100%);
}
.hero__content { position: relative; z-index: 1; max-width: 900px; padding: 5rem 1rem; }
.hero__title {
  font-size: clamp(2.5rem, 6vw, 3.75rem); color: #faf7f2; margin-bottom: 1.5rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}
.hero__sub {
  font-size: clamp(1.05rem, 2vw, 1.25rem); color: rgba(250,247,242,0.92);
  max-width: 42rem; margin: 0 auto 2.5rem;
}
.hero__cta { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; }
@media (min-width: 640px) { .hero__cta { flex-direction: row; } .hero__cta .btn { width: auto; } .hero__cta .btn { min-width: 0; } }

/* ===========================================================================
   Cards / grids
   =========================================================================== */
.grid { display: grid; gap: 2rem; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: box-shadow .3s, transform .3s;
}
.section-heading { max-width: 42rem; margin: 0 auto 4rem; }
.section-heading.tight { margin-bottom: 3rem; }

/* category card (home) */
.cat-card { cursor: pointer; }
.cat-card:hover { box-shadow: var(--shadow-md); }
.cat-card__media { aspect-ratio: 1/1; overflow: hidden; position: relative; }
.cat-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.cat-card:hover .cat-card__media img { transform: scale(1.05); }
.cat-card__body { padding: 1.5rem; text-align: center; }
.cat-card__body h3 { font-size: 1.25rem; transition: color .2s; }
.cat-card:hover .cat-card__body h3 { color: var(--secondary); }

/* arrangement card (with description + action) */
.arr-card { display: flex; flex-direction: column; }
.arr-card__media { aspect-ratio: 1/1; overflow: hidden; }
.arr-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.arr-card:hover .arr-card__media img { transform: scale(1.05); }
.arr-card__body { padding: 2rem; display: flex; flex-direction: column; flex: 1; }
.arr-card__body h2, .arr-card__body h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
.arr-card__body p { color: rgba(45,74,45,0.7); margin-bottom: 2rem; flex: 1; }

/* ===========================================================================
   Intro / sections
   =========================================================================== */
.intro { padding: 6rem 0; }
.intro .container { max-width: 48rem; text-align: center; }
.intro h2 { margin-bottom: 1.5rem; }
.intro .lead { margin-bottom: 2rem; }
.intro__img { width: 100%; max-width: 28rem; margin: 2rem auto 0; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius-xl); box-shadow: var(--shadow-md); }

.section-divider { display: flex; justify-content: center; align-items: center; padding: 3rem 0; opacity: 0.4; color: var(--primary); }

.bg-rose-tint { background: rgba(196,133,122,0.10); }
.bg-sage-tint { background: rgba(122,158,126,0.10); }

/* reviews */
.stars { display: flex; justify-content: center; gap: 0.25rem; color: var(--secondary); margin-bottom: 1rem; }
.stars svg { width: 1.5rem; height: 1.5rem; }
.review-card { background: #fff; padding: 2rem; border-radius: var(--radius-xl); border: 1px solid var(--border); box-shadow: var(--shadow-sm); text-align: center; }
.review-card .stars svg { width: 1rem; height: 1rem; color: rgba(196,133,122,0.6); }
.review-card p { color: rgba(45,74,45,0.8); font-style: italic; }
.reviews-grid { max-width: 64rem; margin: 0 auto; }

/* cta */
.cta .container { max-width: 42rem; }
.cta h2 { margin-bottom: 1.5rem; }
.cta p { margin-bottom: 2.5rem; }
.cta__actions { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; }
@media (min-width: 640px) { .cta__actions { flex-direction: row; } .cta__actions .btn { width: auto; } }

/* ===========================================================================
   About
   =========================================================================== */
.about-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 768px) { .about-grid { grid-template-columns: repeat(2, 1fr); gap: 5rem; } }
.about-grid img { width: 100%; border-radius: var(--radius-xl); box-shadow: var(--shadow-sm); object-fit: cover; aspect-ratio: 4/5; }
.about-text p { color: rgba(45,74,45,0.8); font-size: 1.125rem; line-height: 1.75; }
.about-sign p:first-child { font-family: var(--font-serif); font-size: 1.5rem; }
.about-sign p:last-child { font-family: var(--font-serif); font-size: 1.25rem; color: var(--primary); margin-top: 0.5rem; }

/* ===========================================================================
   Contact / Weddings forms
   =========================================================================== */
.two-col { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 1024px) { .two-col { grid-template-columns: repeat(2, 1fr); gap: 5rem; } }

.info-card { background: #fff; padding: 2rem; border-radius: var(--radius-xl); border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.info-list { display: flex; flex-direction: column; gap: 1.5rem; }
.info-list li { display: flex; align-items: flex-start; gap: 1rem; }
.info-icon { background: rgba(122,158,126,0.1); color: var(--primary); padding: 0.75rem; border-radius: 999px; display: inline-flex; flex-shrink: 0; margin-top: 0.25rem; }
.info-icon svg { width: 1.25rem; height: 1.25rem; }
.info-list h3 { font-family: var(--font-sans); font-weight: 500; font-size: 1.125rem; }
.info-list p { color: rgba(45,74,45,0.8); margin-top: 0.25rem; }

.map-embed { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-sm); height: 16rem; border: 1px solid var(--border); background: var(--muted); margin-top: 2.5rem; }
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

.form-card { background: #fff; padding: 2rem; border-radius: var(--radius-xl); border: 1px solid var(--border); box-shadow: var(--shadow-sm); height: fit-content; }
@media (min-width: 768px) { .form-card { padding: 2.5rem; } }
.form-card h2 { margin-bottom: 0.5rem; }
.form-intro { color: rgba(45,74,45,0.7); margin-bottom: 2rem; }

.field { margin-bottom: 1.25rem; }
.field label { display: block; font-size: 0.9rem; font-weight: 500; color: rgba(45,74,45,0.9); margin-bottom: 0.4rem; }
.field input, .field textarea, .field select {
  width: 100%; font-family: inherit; font-size: 1rem; color: var(--foreground);
  background: rgba(250,247,242,0.5); border: 1px solid rgba(45,74,45,0.2);
  border-radius: var(--radius); padding: 0.65rem 0.85rem; transition: border-color .2s, box-shadow .2s;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(122,158,126,0.18);
}
.field-row { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 768px) { .field-row { grid-template-columns: repeat(2, 1fr); } }
.field-error { color: var(--destructive); font-size: 0.85rem; margin-top: 0.3rem; display: none; }
.field.invalid .field-error { display: block; }
.field.invalid input, .field.invalid textarea, .field.invalid select { border-color: var(--destructive); }
.hp { position: absolute; left: -9999px; height: 0; overflow: hidden; }

.form-success { display: none; flex-direction: column; align-items: center; text-align: center; padding: 3rem 0; gap: 1rem; }
.form-success.show { display: flex; }
.form-success svg { width: 4rem; height: 4rem; color: var(--primary); }

.event-services li { display: flex; align-items: center; gap: 0.75rem; color: rgba(45,74,45,0.8); margin-bottom: 0.75rem; }
.event-services .dot { width: 0.4rem; height: 0.4rem; border-radius: 999px; background: var(--secondary); flex-shrink: 0; }
.callout { background: rgba(122,158,126,0.1); padding: 2rem; border-radius: var(--radius-xl); border: 1px solid rgba(122,158,126,0.2); margin-top: 2.5rem; }
.callout h3 { margin-bottom: 0.5rem; }
.callout p { color: rgba(45,74,45,0.8); font-size: 0.9rem; }

/* ===========================================================================
   Footer
   =========================================================================== */
.footer { background: var(--foreground); color: var(--background); padding: 4rem 0; margin-top: 5rem; }
.footer__grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 768px) { .footer__grid { grid-template-columns: repeat(3, 1fr); } }
.footer h3 { color: var(--background); font-size: 1.5rem; margin-bottom: 1rem; }
.footer h4 { color: var(--background); font-size: 1.25rem; margin-bottom: 1rem; }
.footer p, .footer li, .footer a { color: rgba(250,247,242,0.8); }
.footer a:hover { color: var(--primary); }
.footer .note { font-size: 0.85rem; color: rgba(250,247,242,0.6); font-style: italic; margin-top: 1rem; }
.footer__contact li { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1rem; }
.footer__contact svg { width: 1.25rem; height: 1.25rem; flex-shrink: 0; margin-top: 0.15rem; }
.footer__links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__links a { width: fit-content; transition: color .2s; }

/* ===========================================================================
   WhatsApp floating button
   =========================================================================== */
.whatsapp {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 50;
  display: inline-flex; align-items: center; justify-content: center;
  width: 3.5rem; height: 3.5rem; border-radius: 999px; background: #25d366;
  box-shadow: var(--shadow-lg); transition: transform .2s;
}
.whatsapp:hover { transform: scale(1.1); }
.whatsapp:active { transform: scale(0.95); }
.whatsapp svg { width: 1.85rem; height: 1.85rem; fill: #fff; }

/* ===========================================================================
   404
   =========================================================================== */
.notfound { min-height: 70vh; display: flex; align-items: center; justify-content: center; padding: 2rem; }
.notfound .card { max-width: 28rem; padding: 2.5rem; text-align: center; }
.notfound h1 { font-size: 2rem; margin: 1rem 0; }

/* ===========================================================================
   Scroll reveal
   =========================================================================== */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
