/* ==========================================================
   GreenLeaf Garden Store — Static HTML/CSS
   ========================================================== */

:root {
  --bg: #0f1a15;
  --bg-alt: #0b1410;
  --surface: #16251e;
  --primary: #82a973;
  --primary-deep: #6c925d;
  --secondary: #d3b782;
  --accent: #c4a46c;
  --text: #f4f1e9;
  --muted: #b0bca9;
  --border: rgba(255, 255, 255, 0.06);
  --radius-lg: 1.75rem;
  --radius-md: 1.25rem;
  --radius-sm: 0.75rem;
  --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.2);
  --shadow-glow: 0 0 24px rgba(130, 169, 115, 0.1);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

/* Subtle leaf texture overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("https://static.prod-images.emergentagent.com/jobs/dfa153f3-38d0-474a-ae41-4d949825ce3e/images/45de21cead6164c4ccb08c6d0e5796d7a9a29966586099b803de79b752b98156.png");
  background-size: 800px auto;
  background-repeat: repeat;
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: screen;
}

/* Grain noise */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.95  0 0 0 0 0.95  0 0 0 0 0.9  0 0 0 0.08 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
}

::selection { background: rgba(130, 169, 115, 0.35); color: var(--text); }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #2a3d33; border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

main, section, header, footer { position: relative; z-index: 2; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
@media (min-width: 768px) { .container { padding: 0 2.5rem; } }

/* ============== Typography ============== */
.display {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 0.95;
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  margin: 0;
}
.display.sm { font-size: clamp(2.25rem, 5.5vw, 4rem); line-height: 1.05; }
.display em { font-style: italic; font-weight: 500; }
.gold {
  background: linear-gradient(135deg, #f4f1e9 0%, #d3b782 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.gold-text { color: var(--accent); }

.caption {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--accent);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
}
.caption-line {
  display: inline-block;
  width: 38px;
  height: 1px;
  background: var(--accent);
  margin-right: 0.85rem;
}

.lede {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 38rem;
  margin: 1.5rem 0;
}

.muted { color: var(--muted); }
.muted.small { font-size: 0.875rem; }
.muted.right { text-align: right; max-width: 22rem; }
.mt-4 { margin-top: 1rem; }

/* ============== Buttons ============== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.85rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  border: 0;
  transition: transform 300ms var(--ease), box-shadow 300ms ease, background 300ms ease, color 300ms ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
  color: var(--bg);
  box-shadow: 0 8px 28px rgba(130, 169, 115, 0.25);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(130, 169, 115, 0.4);
}
.btn-outline {
  background: transparent;
  color: var(--secondary);
  border: 1px solid rgba(211, 183, 130, 0.5);
  font-weight: 500;
}
.btn-outline:hover {
  background: rgba(211, 183, 130, 0.1);
  border-color: var(--secondary);
  transform: translateY(-2px);
}

/* ============== Navbar ============== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 40;
  padding: 1.25rem 0;
  transition: all 500ms var(--ease);
}
.navbar.scrolled {
  background: rgba(15, 26, 21, 0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  padding: 0.7rem 0;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
@media (min-width: 768px) { .nav-inner { padding: 0 2.5rem; } }

.logo { display: flex; align-items: center; gap: 0.6rem; }
.logo-mark {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
  color: var(--bg);
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(130, 169, 115, 0.35);
  flex-shrink: 0;
  transition: transform 300ms var(--ease);
}
.logo:hover .logo-mark { transform: scale(1.06); }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
}
.logo-text em {
  font-style: normal;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--accent);
}

.nav-links {
  display: none;
  list-style: none;
  margin: 0; padding: 0;
  gap: 2.5rem;
}
@media (min-width: 1024px) { .nav-links { display: flex; align-items: center; } }
.nav-links a {
  position: relative;
  font-size: 0.9rem;
  color: var(--muted);
  transition: color 300ms ease;
  padding: 0.25rem 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  height: 1px; width: 0;
  background: var(--accent);
  transition: width 300ms var(--ease);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

.nav-cta { display: none; padding: 0.7rem 1.25rem; font-size: 0.85rem; }
@media (min-width: 1024px) { .nav-cta { display: inline-flex; } }

.nav-toggle {
  display: inline-flex; flex-direction: column; gap: 5px;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  align-items: center; justify-content: center;
}
.nav-toggle span { width: 18px; height: 2px; background: var(--text); border-radius: 2px; transition: all 300ms ease; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 1024px) { .nav-toggle { display: none; } }

.nav-links.mobile-open {
  display: flex;
  position: absolute;
  top: 100%; left: 0; right: 0;
  flex-direction: column;
  background: rgba(15, 26, 21, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  padding: 1.5rem 1.5rem 2rem;
  gap: 1.25rem;
  margin-top: 0.5rem;
}
.nav-links.mobile-open a {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  color: var(--text);
}
.nav-links.mobile-open a::after { display: none; }

/* ============== Hero ============== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 8rem 0 5rem;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, var(--bg) 0%, rgba(15,26,21,0.85) 40%, rgba(15,26,21,0.3) 100%),
    linear-gradient(0deg, var(--bg) 0%, transparent 50%);
}
.hero-grid {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  width: 100%;
}
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 7fr 5fr; gap: 3rem; }
}
.hero-copy h1 { margin: 1.75rem 0 0; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.25rem; }
.hero-stats {
  margin-top: 3.5rem;
  display: flex; flex-wrap: wrap;
  gap: 1.25rem 2.5rem;
  align-items: baseline;
}
.hero-stats .num {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.85rem;
  font-weight: 600;
  color: var(--secondary);
  margin-right: 0.5rem;
}
.hero-stats .lbl {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--muted);
}

/* Hero floating card */
.hero-card { display: none; position: relative; }
@media (min-width: 1024px) { .hero-card { display: block; } }
.hero-card-glow {
  position: absolute;
  inset: -2rem;
  background: radial-gradient(circle, rgba(130,169,115,0.2) 0%, transparent 70%);
  filter: blur(40px);
  z-index: 0;
}
.hero-card-img {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(130,169,115,0.15), 0 20px 60px rgba(0,0,0,0.35);
  animation: float 4s ease-in-out infinite;
}
.hero-card-img > img { width: 100%; height: 100%; object-fit: cover; }
.hero-card-img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(15,26,21,0.6) 0%, transparent 60%);
}
.hero-card-inner {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem; right: 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  z-index: 2;
}
.hero-card-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem; font-weight: 600;
  color: var(--text);
  margin-top: 0.25rem;
}
.round-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--bg);
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform 300ms var(--ease);
}
.round-btn:hover { transform: scale(1.1); }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.scroll-hint {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: none;
  flex-direction: column; align-items: center; gap: 0.5rem;
  color: var(--muted);
}
@media (min-width: 768px) { .scroll-hint { display: flex; } }
.scroll-hint span {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
}
.scroll-hint i {
  display: block;
  width: 1px; height: 40px;
  background: linear-gradient(180deg, var(--accent) 0%, transparent 100%);
}

/* ============== Sections ============== */
.section { padding: 6rem 0; }
@media (min-width: 768px) { .section { padding: 8rem 0; } }
.section-alt { background: var(--bg-alt); }

.section-head { margin-bottom: 3.5rem; }
.section-head.split {
  display: flex; flex-direction: column; gap: 1.5rem;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .section-head.split { flex-direction: row; align-items: flex-end; }
}
.section-head .display { margin-top: 0.85rem; }
.section-head.center { text-align: center; }
.section-head.center .caption { display: inline-flex; }

/* ============== Categories ============== */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 220px;
  gap: 1rem;
}
@media (min-width: 768px) { .cat-grid { grid-auto-rows: 260px; gap: 1.25rem; } }
@media (min-width: 1024px) { .cat-grid { grid-template-columns: repeat(4, 1fr); } }

.cat-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 400ms var(--ease);
}
.cat-card.cat-lg {
  grid-column: span 2;
  grid-row: span 2;
}
.cat-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}
.cat-card:hover { transform: translateY(-4px); }
.cat-card:hover img { transform: scale(1.08); }
.cat-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, var(--bg) 0%, rgba(15,26,21,0.4) 50%, transparent 100%);
}
.cat-card .cat-arrow {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(15,26,21,0.6);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  color: var(--secondary);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: all 500ms var(--ease);
}
.cat-card:hover .cat-arrow {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--bg);
}
.cat-body {
  position: absolute;
  bottom: 1.25rem; left: 1.25rem; right: 1.25rem;
}
@media (min-width: 768px) {
  .cat-body { bottom: 1.75rem; left: 1.75rem; right: 1.75rem; }
}
.cat-body h3 {
  margin: 0.5rem 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text);
}
@media (min-width: 768px) { .cat-body h3 { font-size: 2rem; } }

/* ============== Products ============== */
.filters {
  display: flex; flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
}
.chip {
  padding: 0.625rem 1.15rem;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 500;
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
  transition: all 300ms ease;
}
.chip:hover { border-color: rgba(130,169,115,0.5); color: var(--text); }
.chip.active {
  background: var(--primary);
  color: var(--bg);
  border-color: var(--primary);
}

.prod-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) { .prod-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .prod-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; } }

.prod-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  transition: all 400ms var(--ease);
  display: flex; flex-direction: column;
}
.prod-card:hover {
  transform: translateY(-6px);
  border-color: rgba(130,169,115,0.35);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.prod-img {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--bg);
}
.prod-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}
.prod-card:hover .prod-img img { transform: scale(1.1); }
.prod-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  padding: 0.3rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  background: var(--secondary);
  color: var(--bg);
}
.prod-quick {
  position: absolute;
  bottom: 1rem; right: 1rem;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--text);
  color: var(--bg);
  border: 0;
  display: inline-flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(10px);
  transition: all 500ms var(--ease);
}
.prod-card:hover .prod-quick { opacity: 1; transform: translateY(0); }
.prod-quick:hover { background: var(--primary); }
.prod-body { padding: 1.25rem; display: flex; flex-direction: column; gap: 0.6rem; }
.prod-cat {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent);
  font-weight: 500;
}
.prod-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  margin: 0;
  line-height: 1.2;
}
.prod-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.5rem;
}
.price {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--secondary);
}
.price-old {
  font-size: 0.85rem;
  color: var(--muted);
  text-decoration: line-through;
  margin-left: 0.5rem;
}
.enquire {
  background: transparent;
  border: 0;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  display: inline-flex; align-items: center; gap: 0.35rem;
  transition: color 300ms ease;
}
.enquire:hover { color: var(--text); }

.center-row { display: flex; justify-content: center; margin-top: 3.5rem; }

/* ============== Info / Features ============== */
.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) { .info-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .info-grid { grid-template-columns: repeat(4, 1fr); } }

.info-card {
  position: relative;
  padding: 2rem;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.05);
  transition: all 500ms var(--ease);
}
.info-card:hover {
  transform: translateY(-4px);
  border-color: rgba(130,169,115,0.3);
}
.info-icon {
  width: 56px; height: 56px;
  border-radius: 1rem;
  background: var(--bg);
  border: 1px solid rgba(130,169,115,0.2);
  color: var(--primary);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  transition: all 500ms var(--ease);
}
.info-card:hover .info-icon {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--bg);
}
.info-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 0.65rem;
  color: var(--text);
}
.info-card p { color: var(--muted); margin: 0; line-height: 1.6; }

/* ============== About ============== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .about-grid { grid-template-columns: 6fr 6fr; gap: 4rem; }
}
.about-img { position: relative; }
.about-img .frame {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(130,169,115,0.15), 0 20px 60px rgba(0,0,0,0.35);
}
.about-img .frame img { width: 100%; height: 100%; object-fit: cover; }
.about-img .frame::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(15,26,21,0.5) 0%, transparent 60%);
}
.about-img .ring {
  position: absolute;
  top: -1.25rem; left: -1.25rem;
  width: 130px; height: 130px;
  border: 1px solid rgba(196,164,108,0.3);
  border-radius: 50%;
  display: none;
}
@media (min-width: 768px) { .about-img .ring { display: block; } }
.badge-card {
  position: absolute;
  bottom: -2rem; right: -0.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  width: 220px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.15;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 0 1px rgba(130,169,115,0.15), 0 20px 60px rgba(0,0,0,0.35);
}
.badge-card .caption { display: block; margin-bottom: 0.4rem; }
@media (min-width: 768px) { .badge-card { right: 2rem; } }

.about-copy h2 { margin-top: 0.85rem; }
.promises {
  list-style: none;
  margin: 1.5rem 0 2rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.promises li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  color: var(--muted);
}
.promises .tick {
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(130, 169, 115, 0.2);
  color: var(--primary);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 0.15rem;
}

/* ============== Contact ============== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 2fr 3fr; gap: 2rem; }
}

.contact-cards { display: flex; flex-direction: column; gap: 1rem; }

.info-row {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.05);
  transition: all 500ms var(--ease);
}
.info-row.link:hover { border-color: rgba(130,169,115,0.4); }
.info-pill {
  width: 48px; height: 48px;
  border-radius: 0.75rem;
  background: var(--bg);
  border: 1px solid rgba(130,169,115,0.2);
  color: var(--primary);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all 500ms var(--ease);
}
.info-row.link:hover .info-pill {
  background: var(--primary);
  color: var(--bg);
  border-color: var(--primary);
}
.info-val {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  color: var(--text);
  margin-top: 0.2rem;
  line-height: 1.25;
}

.contact-buttons { display: flex; gap: 0.75rem; margin-top: 0.5rem; }
.contact-buttons .btn { flex: 1; }

.contact-map {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(130,169,115,0.15), 0 20px 60px rgba(0,0,0,0.35);
  min-height: 460px;
}
.contact-map iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
  filter: grayscale(1) contrast(1.25) brightness(0.75);
}
.map-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, var(--bg) 0%, rgba(15,26,21,0.3) 40%, transparent 100%);
  pointer-events: none;
}
.map-card {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem; right: 1.5rem;
  pointer-events: none;
}
.map-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  margin-top: 0.3rem;
}

/* ============== Footer ============== */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 4rem 0 2.5rem;
  position: relative;
  z-index: 2;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 5fr 3fr 4fr; }
}
.socials { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.socials a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--muted);
  display: inline-flex; align-items: center; justify-content: center;
  transition: all 300ms ease;
}
.socials a:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--bg);
}
.footer-links { list-style: none; margin: 1.25rem 0 0; padding: 0; display: flex; flex-direction: column; gap: 0.7rem; color: var(--muted); }
.footer-links a:hover { color: var(--text); }
.foot-bar {
  border-top: 1px solid var(--border);
  margin-top: 3rem;
  padding-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--muted);
}
@media (min-width: 768px) { .foot-bar { flex-direction: row; justify-content: space-between; } }
.foot-end { display: flex; gap: 1.25rem; }
.foot-end a:hover { color: var(--text); }

/* ============== Floating action buttons ============== */
.fab {
  position: fixed;
  bottom: 1.25rem; right: 1.25rem;
  z-index: 50;
  display: flex; flex-direction: column; gap: 0.75rem;
}
@media (min-width: 768px) { .fab { bottom: 2rem; right: 2rem; } }
.fab-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform 300ms var(--ease);
}
.fab-btn:hover { transform: scale(1.1); }
.fab-wa {
  background: #25d366;
  color: #fff;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
}
.fab-call {
  background: var(--primary);
  color: var(--bg);
  box-shadow: 0 10px 30px rgba(130, 169, 115, 0.35);
}
.pulse { animation: pulseRing 2s infinite; }
@keyframes pulseRing {
  0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70%  { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ============== Reveal-on-scroll ============== */
.reveal,
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 800ms var(--ease), transform 800ms var(--ease);
}
.reveal.in,
.reveal-stagger.in > * {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 80ms; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 160ms; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 240ms; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 320ms; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: 400ms; }
.reveal-stagger.in > *:nth-child(7) { transition-delay: 480ms; }
.reveal-stagger.in > *:nth-child(8) { transition-delay: 560ms; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .reveal, .reveal-stagger > * { opacity: 1; transform: none; }
}
