/* Garden & Co Website - Static HTML/CSS/JS
   Theme extracted from supplied business card and letterhead:
   deep green, leaf green, warm brown, blue water accent, white paper texture. */
:root {
  --green-950: #062915;
  --green-900: #0b3d1f;
  --green-800: #125428;
  --green-700: #1f6b2f;
  --green-600: #347f28;
  --green-500: #63a91f;
  --green-100: #e8f4df;
  --green-50: #f6fbf1;
  --brown-900: #3f220d;
  --brown-700: #754812;
  --brown-500: #996817;
  --blue-600: #0b7dd1;
  --blue-500: #118ce0;
  --paper: #fffdf7;
  --cream: #f6f1e4;
  --ink: #152118;
  --muted: #63715e;
  --line: rgba(17, 68, 31, .15);
  --shadow: 0 24px 80px rgba(7, 48, 20, .16);
  --shadow-soft: 0 14px 45px rgba(7, 48, 20, .10);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 14px;
  --container: 1180px;
  --speed: 220ms;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background: radial-gradient(circle at top left, rgba(99,169,31,.12), transparent 32rem), var(--paper);
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
::selection { background: rgba(99, 169, 31, .28); }
.skip-link {
  position: absolute; left: -999px; top: 1rem; background: #fff; color: var(--green-900); padding: .8rem 1rem; border-radius: 999px; z-index: 9999;
}
.skip-link:focus { left: 1rem; }
.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.section { padding: 92px 0; position: relative; }
.section.tight { padding: 58px 0; }
.section.alt { background: linear-gradient(180deg, #fffdf7, #f6fbf1); }
.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  color: var(--green-800); font-weight: 800; letter-spacing: .11em; text-transform: uppercase; font-size: .77rem;
}
.eyebrow::before, .eyebrow::after { content: ""; width: 26px; height: 2px; background: linear-gradient(90deg, var(--green-500), var(--brown-500)); border-radius: 999px; }
.section-head { max-width: 780px; margin-bottom: 38px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
h1, h2, h3, h4 { margin: 0; line-height: 1.05; color: var(--green-950); }
h1 { font-size: clamp(2.65rem, 7vw, 6.4rem); letter-spacing: -.065em; }
h2 { font-size: clamp(2rem, 4.8vw, 4rem); letter-spacing: -.04em; }
h3 { font-size: clamp(1.28rem, 2vw, 1.7rem); letter-spacing: -.025em; }
h4 { font-size: 1.05rem; }
p { color: var(--muted); line-height: 1.75; margin: .85rem 0 0; }
.lead { font-size: clamp(1rem, 1.5vw, 1.2rem); color: #485943; }
.text-small { font-size: .92rem; }
.text-green { color: var(--green-800); }
.text-brown { color: var(--brown-700); }
.text-blue { color: var(--blue-600); }

/* Header */
.topbar {
  display: none;
  background: linear-gradient(90deg, var(--green-950), var(--green-800)); color: rgba(255,255,255,.95); font-size: .83rem;
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .55rem 0; }
.topbar a { color: #fff; font-weight: 700; }
.topbar .tiny { opacity: .9; display: flex; gap: .75rem; align-items: center; flex-wrap: wrap; }
.site-header {
  position: sticky; top: 0; z-index: 80; background: rgba(255, 253, 247, .86); backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 82px; gap: 1.5rem; }
.brand { display: flex; align-items: center; gap: .85rem; min-width: 220px; }
.brand img { width: 58px; height: 58px; object-fit: cover; border-radius: 50%; box-shadow: 0 6px 20px rgba(6,41,21,.12); }
.brand strong { display: block; font-size: 1.15rem; letter-spacing: -.02em; color: var(--green-950); }
.brand > span > span { display: block; font-size: .72rem; font-weight: 800; color: var(--brown-700); letter-spacing: .04em; }
.nav-links { display: flex; align-items: center; gap: .2rem; }
.nav-links a {
  padding: .75rem .9rem; border-radius: 999px; font-size: .92rem; font-weight: 800; color: #243224; transition: var(--speed) ease;
}
.nav-links a:hover, .nav-links a.active { background: var(--green-100); color: var(--green-900); }
.nav-actions { display: flex; align-items: center; gap: .7rem; }
.menu-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--line); background: #fff; border-radius: 14px; align-items: center; justify-content: center; cursor: pointer; }
.menu-toggle span { display: block; width: 22px; height: 2px; background: var(--green-950); position: relative; border-radius: 99px; transition: .25s ease; }
.menu-toggle span::before, .menu-toggle span::after { content: ""; position: absolute; left: 0; width: 22px; height: 2px; background: var(--green-950); border-radius: 99px; transition: .25s ease; }
.menu-toggle span::before { top: -7px; }
.menu-toggle span::after { top: 7px; }
body.menu-open .menu-toggle span { background: transparent; }
body.menu-open .menu-toggle span::before { transform: rotate(45deg); top: 0; }
body.menu-open .menu-toggle span::after { transform: rotate(-45deg); top: 0; }
.progress { position: fixed; top: 0; left: 0; height: 3px; background: linear-gradient(90deg, var(--green-500), var(--blue-600), var(--brown-500)); z-index: 999; width: 0; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .55rem; min-height: 48px; padding: .88rem 1.2rem; border-radius: 999px; border: 1px solid transparent; font-weight: 900; transition: transform var(--speed) ease, box-shadow var(--speed) ease, background var(--speed) ease; cursor: pointer; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(7, 48, 20, .16); }
.btn-primary { background: linear-gradient(135deg, var(--green-700), var(--green-500)); color: #fff; }
.btn-blue { background: linear-gradient(135deg, var(--blue-600), #1d9bf0); color: #fff; }
.btn-brown { background: linear-gradient(135deg, var(--brown-700), #a87520); color: #fff; }
.btn-ghost { background: rgba(255,255,255,.85); color: var(--green-900); border-color: rgba(18,84,40,.18); }
.btn-wide { width: 100%; }

/* Hero */
.hero { position: relative; min-height: calc(100vh - 82px); display: grid; align-items: center; overflow: hidden; padding: 68px 0 92px; }
.hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(255,253,247,.97) 0%, rgba(255,253,247,.88) 36%, rgba(255,253,247,.32) 63%, rgba(6,41,21,.16) 100%); z-index: 1; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.04); animation: slowZoom 14s ease-in-out infinite alternate; }
.hero .container { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.03fr) minmax(320px, .68fr); gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.logo-badge { width: 126px; height: 126px; padding: 8px; border-radius: 50%; background: rgba(255,255,255,.9); box-shadow: var(--shadow-soft); margin-bottom: 1.2rem; }
.logo-badge img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }

.logo-badge.hero-full-logo-badge {
  width: min(230px, 42vw);
  height: auto;
  aspect-ratio: 1 / 1;
  padding: 12px;
  border-radius: 30px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(18,84,40,.16);
  box-shadow: 0 24px 70px rgba(7,48,20,.18);
}
.logo-badge.hero-full-logo-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 22px;
  background: #fff;
}
.hero-title span:nth-child(1) { color: var(--green-800); }
.hero-title span:nth-child(2) { color: var(--blue-600); }
.hero-title span:nth-child(3) { color: var(--brown-900); }
.hero-subtitle { font-size: clamp(1.15rem, 2vw, 1.5rem); font-weight: 900; color: var(--brown-900); letter-spacing: .04em; margin-top: .4rem; }
.hero-kicker { margin-top: 1rem; font-size: clamp(1rem, 1.8vw, 1.28rem); color: var(--green-800); font-weight: 900; }
.hero-actions { display: flex; align-items: center; gap: .8rem; flex-wrap: wrap; margin-top: 2rem; }
.hero-meta { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: .8rem; margin-top: 2rem; max-width: 680px; }
.meta-pill { background: rgba(255,255,255,.82); border: 1px solid rgba(18,84,40,.12); border-radius: 18px; padding: .85rem; box-shadow: 0 10px 30px rgba(18,84,40,.08); }
.meta-pill strong { display: block; color: var(--green-950); }
.meta-pill span { display: block; color: var(--muted); font-size: .85rem; margin-top: .2rem; }
.hero-card { background: rgba(255,253,247,.92); border: 1px solid rgba(18,84,40,.14); border-radius: var(--radius-xl); padding: 1.2rem; box-shadow: var(--shadow); backdrop-filter: blur(14px); transform: translateY(0); animation: floatCard 5.5s ease-in-out infinite; }
.hero-card .card-image { overflow: hidden; border-radius: 24px; aspect-ratio: 4/3; box-shadow: inset 0 0 0 1px rgba(255,255,255,.4); }
.hero-card .card-image img { width: 100%; height: 100%; object-fit: cover; }
.quick-details { display: grid; gap: .6rem; margin-top: 1rem; }
.quick-row { display: flex; align-items: center; gap: .65rem; padding: .68rem .75rem; border-radius: 15px; background: rgba(232,244,223,.72); color: var(--green-950); font-weight: 800; font-size: .92rem; }
.quick-row span { color: var(--green-700); font-size: 1.1rem; }
.leaf-decoration { position: absolute; width: 180px; height: 180px; opacity: .12; background: radial-gradient(ellipse at 50% 40%, var(--green-500) 0 32%, transparent 34%); border-radius: 60% 10% 60% 10%; transform: rotate(28deg); }
.leaf-a { top: 112px; right: 5%; }
.leaf-b { bottom: 32px; left: -44px; transform: rotate(-35deg); }
.wave-bottom { position: absolute; bottom: -1px; left: 0; right: 0; height: 120px; z-index: 3; pointer-events: none; }
.wave-bottom svg { width: 100%; height: 100%; display: block; }

/* Cards, grids */
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1.25rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 1rem; }
.card { background: rgba(255,255,255,.88); border: 1px solid rgba(18,84,40,.12); border-radius: var(--radius-lg); padding: 1.3rem; box-shadow: var(--shadow-soft); position: relative; overflow: hidden; }
.card::after { content: ""; position: absolute; inset: auto -35px -50px auto; width: 110px; height: 110px; background: radial-gradient(circle, rgba(99,169,31,.15), transparent 68%); pointer-events: none; }
.service-card { min-height: 235px; display: flex; flex-direction: column; gap: .85rem; transition: transform var(--speed) ease, box-shadow var(--speed) ease, border-color var(--speed) ease; }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(7, 48, 20, .14); border-color: rgba(31,107,47,.28); }
.icon { width: 54px; height: 54px; border-radius: 18px; display: grid; place-items: center; background: linear-gradient(135deg, rgba(99,169,31,.18), rgba(17,140,224,.12)); color: var(--green-800); font-size: 1.55rem; }
.card-link { margin-top: auto; color: var(--green-800); font-weight: 900; display: inline-flex; gap: .35rem; align-items: center; }
.image-card { overflow: hidden; padding: 0; }
.image-card img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; transition: transform 700ms ease; }
.image-card:hover img { transform: scale(1.06); }
.image-card .overlay { position: absolute; inset: auto 1rem 1rem 1rem; background: rgba(255,253,247,.92); border-radius: 18px; padding: 1rem; backdrop-filter: blur(12px); box-shadow: var(--shadow-soft); }
.list-clean { list-style: none; padding: 0; margin: 1rem 0 0; display: grid; gap: .65rem; }
.list-clean li { position: relative; padding-left: 1.75rem; color: #3d4c3c; line-height: 1.45; }
.list-clean li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 1.2rem; height: 1.2rem; border-radius: 50%; background: var(--green-100); color: var(--green-800); display: inline-grid; place-items: center; font-size: .75rem; font-weight: 900; }
.stats { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 1rem; }
.stat { padding: 1.3rem; text-align: center; border-radius: 24px; background: linear-gradient(180deg,#fff, var(--green-50)); border: 1px solid var(--line); box-shadow: var(--shadow-soft); }
.stat strong { display: block; font-size: clamp(2rem, 4vw, 3.2rem); color: var(--green-800); letter-spacing: -.05em; }
.stat span { color: var(--muted); font-weight: 800; font-size: .92rem; }

/* Home business panel */
.business-panel { display: grid; grid-template-columns: .9fr 1.1fr; gap: 1.5rem; align-items: stretch; }
.paper-panel { background: #fffdf7; border: 1px solid rgba(18,84,40,.15); border-radius: var(--radius-xl); box-shadow: var(--shadow); padding: clamp(1.2rem, 3vw, 2rem); position: relative; overflow: hidden; }
.paper-panel::before { content: ""; position: absolute; inset: 10px; border: 1px solid rgba(99,169,31,.28); border-radius: calc(var(--radius-xl) - 8px); pointer-events: none; }
.paper-panel .content { position: relative; z-index: 1; }
.detail-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: .85rem; margin-top: 1.2rem; }
.detail { padding: 1rem; border-radius: 18px; background: var(--green-50); border: 1px solid rgba(18,84,40,.10); }
.detail span { color: var(--muted); font-size: .8rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.detail strong { display: block; margin-top: .25rem; color: var(--green-950); }
.qr-block { display: flex; align-items: center; gap: 1rem; margin-top: 1.3rem; padding: 1rem; background: #fff; border-radius: 20px; border: 1px dashed rgba(18,84,40,.25); }
.qr-block img { width: 160px; max-width: 100%; border-radius: 10px; background:#fff; padding:.35rem; border:1px solid rgba(18,84,40,.10); image-rendering: -webkit-optimize-contrast; image-rendering: crisp-edges; }

/* Services */
.service-tabs { display: flex; gap: .55rem; flex-wrap: wrap; margin-bottom: 1.4rem; }
.tab-btn { border: 1px solid rgba(18,84,40,.15); background: #fff; color: var(--green-900); border-radius: 999px; padding: .7rem 1rem; font-weight: 900; cursor: pointer; }
.tab-btn.active { background: var(--green-800); color: #fff; }
.service-list-card { display: grid; grid-template-columns: auto 1fr; gap: .9rem; align-items: start; }
.service-list-card .num { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 14px; background: var(--green-100); color: var(--green-800); font-weight: 950; }
.category-card { border-left: 4px solid var(--green-500); }
.category-card.brown { border-color: var(--brown-500); }
.category-card.blue { border-color: var(--blue-600); }

/* Gallery */
.gallery { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1rem; }
.gallery-item { min-height: 260px; border-radius: 26px; overflow: hidden; cursor: pointer; position: relative; box-shadow: var(--shadow-soft); border: 1px solid var(--line); }
.gallery-item:nth-child(1), .gallery-item:nth-child(4) { grid-column: span 7; }
.gallery-item:nth-child(2), .gallery-item:nth-child(3) { grid-column: span 5; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: .7s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item span { position: absolute; left: 1rem; bottom: 1rem; background: rgba(255,253,247,.9); padding: .65rem .85rem; border-radius: 999px; font-weight: 900; color: var(--green-900); }
.lightbox { position: fixed; inset: 0; background: rgba(4,24,12,.86); z-index: 120; display: none; align-items: center; justify-content: center; padding: 2rem; }
.lightbox.active { display: flex; }
.lightbox img { max-height: 86vh; max-width: 92vw; border-radius: 24px; box-shadow: 0 30px 90px rgba(0,0,0,.35); }
.lightbox button { position: absolute; top: 1rem; right: 1rem; width: 48px; height: 48px; border: 0; border-radius: 50%; background: #fff; color: var(--green-950); font-size: 1.5rem; cursor: pointer; }

/* Verification and contact */
.verify-card { background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(232,244,223,.9)); border: 1px solid rgba(18,84,40,.16); border-radius: var(--radius-xl); padding: clamp(1.4rem, 3vw, 2.2rem); box-shadow: var(--shadow); }
.verify-seal { width: 88px; height: 88px; border-radius: 50%; display: grid; place-items: center; background: linear-gradient(135deg, var(--green-700), var(--green-500)); color: #fff; font-size: 2.3rem; box-shadow: 0 14px 40px rgba(31,107,47,.25); }
.contact-form { display: grid; gap: .85rem; }
.field { display: grid; gap: .35rem; }
.field label { color: var(--green-950); font-weight: 900; font-size: .9rem; }
.field input, .field textarea, .field select { width: 100%; border: 1px solid rgba(18,84,40,.18); border-radius: 16px; padding: .95rem 1rem; background: rgba(255,255,255,.88); outline: none; transition: .2s ease; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--green-600); box-shadow: 0 0 0 4px rgba(99,169,31,.14); }
.field textarea { min-height: 135px; resize: vertical; }
.notice { padding: 1rem; border-radius: 18px; background: rgba(17,140,224,.08); border: 1px solid rgba(17,140,224,.2); color: #23506a; line-height: 1.6; }
.notice.warn { background: rgba(153,104,23,.09); border-color: rgba(153,104,23,.24); color: var(--brown-900); }
.map-box { min-height: 330px; border-radius: var(--radius-xl); background: linear-gradient(135deg, rgba(18,84,40,.94), rgba(31,107,47,.80)), url('../images/consultation-feature.jpg') center/cover; color: #fff; display: grid; place-items: center; text-align: center; padding: 2rem; box-shadow: var(--shadow); }
.map-box p { color: rgba(255,255,255,.86); }
.contact-chip { display: inline-flex; align-items: center; gap: .55rem; padding: .6rem .85rem; background: rgba(255,255,255,.85); border: 1px solid rgba(18,84,40,.13); border-radius: 999px; font-weight: 900; color: var(--green-950); }
.bank-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: .85rem; }
.bank-line { padding: .9rem; border-radius: 16px; background: rgba(255,255,255,.72); border: 1px dashed rgba(117,72,18,.25); }
.bank-line span { display: block; color: var(--muted); font-size: .82rem; font-weight: 800; }
.bank-line strong { color: var(--brown-900); }

/* Page headers */
.page-hero { padding: 82px 0 70px; position: relative; overflow: hidden; background: linear-gradient(135deg, var(--green-50), #fffdf7 54%, rgba(153,104,23,.08)); }
.page-hero::after { content: ""; position: absolute; right: -130px; top: -120px; width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(circle, rgba(99,169,31,.18), transparent 68%); }
.page-hero .container { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, .98fr) minmax(280px, .58fr); gap: 2rem; align-items: center; }
.page-hero-image { border-radius: var(--radius-xl); overflow: hidden; min-height: 300px; box-shadow: var(--shadow); }
.page-hero-image img { width: 100%; height: 100%; object-fit: cover; }
.breadcrumb { display: flex; gap: .45rem; align-items: center; color: var(--muted); font-weight: 800; margin-bottom: 1rem; font-size: .9rem; }
.breadcrumb a { color: var(--green-800); }

/* Footer */
.site-footer { background: linear-gradient(150deg, var(--green-950), #082f18 55%, var(--brown-900)); color: #fff; position: relative; overflow: hidden; }
.site-footer::before { content: ""; position: absolute; left: -80px; top: -120px; width: 320px; height: 320px; background: radial-gradient(circle, rgba(99,169,31,.18), transparent 70%); }
.footer-main { padding: 68px 0 36px; position: relative; z-index: 1; }
.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.15fr) minmax(150px, .75fr) minmax(420px, 1.45fr) minmax(250px, 1fr);
  gap: clamp(2rem, 4vw, 4.5rem);
  align-items: start;
}
.footer-logo { display: flex; align-items: center; gap: .85rem; }
.footer-logo img { width: 62px; height: 62px; object-fit: cover; border-radius: 50%; }
.footer-logo strong { font-size: 1.25rem; display: block; }
.site-footer p, .site-footer li, .site-footer a { color: rgba(255,255,255,.82); }
.site-footer h3 { color: #fff; font-size: 1.1rem; margin-bottom: .8rem; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; }
.footer-links a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 1rem 0 1.2rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; font-size: .9rem; color: rgba(255,255,255,.7); position: relative; z-index: 1; }
.socials { display: flex; gap: .5rem; }
.socials a { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.12); color: #fff; }
.back-to-top { position: fixed; right: 1rem; bottom: 1rem; z-index: 70; width: 46px; height: 46px; border-radius: 50%; border: 0; background: var(--green-800); color: #fff; font-size: 1.2rem; cursor: pointer; opacity: 0; transform: translateY(12px); transition: .25s ease; box-shadow: var(--shadow-soft); }
.back-to-top.visible { opacity: 1; transform: translateY(0); }

/* Motion */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: .1s; }
.reveal.delay-2 { transition-delay: .2s; }
.reveal.delay-3 { transition-delay: .3s; }
.float-leaf { animation: floatLeaf 6s ease-in-out infinite; }
@keyframes slowZoom { from { transform: scale(1.04); } to { transform: scale(1.11); } }
@keyframes floatCard { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes floatLeaf { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-10px) rotate(3deg); } }

/* Desktop-only design refinements */
@media (min-width: 901px) {
  .desktop-split { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; align-items: center; }
  .mobile-only { display: none !important; }
}

/* Tablet */
@media (max-width: 1060px) {
  .nav-links { position: fixed; inset: 112px 1rem auto 1rem; display: grid; gap: .35rem; padding: 1rem; background: rgba(255,253,247,.96); border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow); transform: translateY(-12px); opacity: 0; pointer-events: none; transition: .25s ease; }
  body.menu-open .nav-links { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links a { padding: .95rem 1rem; }
  .menu-toggle { display: flex; }
  .nav-actions .btn { display: none; }
  .hero-grid, .business-panel, .page-hero .container { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-card { max-width: 560px; }
  .grid-4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* Mobile design */
@media (max-width: 700px) {
  .container { width: min(100% - 28px, var(--container)); }
  .topbar .container { align-items: flex-start; flex-direction: column; gap: .3rem; }
  .topbar .tiny { gap: .45rem; }
  .nav { height: 74px; }
  .brand { min-width: 0; gap: .65rem; }
  .brand img { width: 50px; height: 50px; }
  .brand strong { font-size: 1rem; }
  .brand > span > span { font-size: .62rem; }
  .nav-links { inset: 104px .8rem auto .8rem; }
  .section { padding: 64px 0; }
  .section.tight { padding: 42px 0; }
  .hero { padding: 46px 0 74px; text-align: center; }
  .hero::before { background: linear-gradient(180deg, rgba(255,253,247,.93) 0%, rgba(255,253,247,.88) 58%, rgba(255,253,247,.66) 100%); }
  .hero-grid { gap: 2rem; }
  .logo-badge { margin-inline: auto; width: 98px; height: 98px; }
  .logo-badge.hero-full-logo-badge { width: min(170px, 56vw); height: auto; margin-inline: auto; border-radius: 24px; padding: 9px; }
  .logo-badge.hero-full-logo-badge img { border-radius: 18px; }
  .hero-title { font-size: clamp(2.75rem, 15vw, 4.5rem); }
  .hero-actions { justify-content: center; }
  .hero-actions .btn { width: 100%; }
  .hero-meta { grid-template-columns: 1fr; }
  .hero-card { animation: none; }
  .quick-row { justify-content: center; }
  .grid-2, .grid-3, .grid-4, .detail-grid, .stats, .bank-grid { grid-template-columns: 1fr; }
  .qr-block { flex-direction: column; text-align: center; }
  .qr-block img { width: min(220px, 100%); }
  .gallery { grid-template-columns: 1fr; }
  .gallery-item, .gallery-item:nth-child(n) { grid-column: auto; min-height: 235px; }
  .page-hero { padding: 58px 0; text-align: center; }
  .breadcrumb { justify-content: center; }
  .page-hero-image { min-height: 220px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .desktop-only { display: none !important; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}


/* Full visiting-card content additions */
.full-card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; align-items: start; }
.matrix-heading { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: .55rem; }
.matrix-heading span { font-size: .82rem; font-weight: 900; color: var(--brown-700); background: rgba(153,104,23,.10); border-radius: 999px; padding: .4rem .65rem; white-space: nowrap; }
.compact-list { gap: .48rem; }
.compact-list li { font-size: .95rem; line-height: 1.32; }
.two-column-list { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 1rem; }
.contact-person-card h3 { color: var(--green-800); }
.contact-person-card a { color: var(--green-900); font-weight: 900; word-break: break-word; }
.card-link { display: inline-flex; margin-top: 1rem; color: var(--green-800); font-weight: 950; }
.card-link:hover { color: var(--blue-600); }
.category-card.blue { border-left-color: var(--blue-600); }
.category-card.brown { border-left-color: var(--brown-500); }
.category-card.green { border-left-color: var(--green-500); }
@media (max-width: 1060px) { .full-card-grid { grid-template-columns: 1fr; } }
@media (max-width: 700px) { .two-column-list { grid-template-columns: 1fr; } .matrix-heading { flex-direction: column; align-items: flex-start; } }


/* Garden & Co WhatsApp-style AI assistant */
.gc-chat-widget { position: fixed; right: 22px; bottom: 84px; z-index: 90; font-family: inherit; }
.gc-chat-button { width: 64px; height: 64px; border-radius: 50%; border: 0; cursor: pointer; display: grid; place-items: center; color: #fff; background: linear-gradient(135deg, #25d366, #128c7e); box-shadow: 0 18px 40px rgba(18, 140, 126, .35); transition: transform .22s ease, box-shadow .22s ease; position: relative; }
.gc-chat-button:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 22px 48px rgba(18, 140, 126, .44); }
.gc-chat-button svg { width: 34px; height: 34px; fill: currentColor; }
.gc-chat-button .gc-ping { position: absolute; inset: -5px; border: 2px solid rgba(37,211,102,.48); border-radius: 50%; animation: gcPing 1.9s ease-out infinite; }
.gc-chat-button .gc-notification { position: absolute; top: 3px; right: 2px; min-width: 20px; height: 20px; border-radius: 50%; background: #f44336; color: #fff; display: grid; place-items: center; font-size: .72rem; font-weight: 900; border: 2px solid #fff; }
.gc-chat-window { position: absolute; right: 0; bottom: 80px; width: min(390px, calc(100vw - 28px)); height: min(650px, calc(100vh - 120px)); border-radius: 24px; overflow: hidden; background: #efe7dd; box-shadow: 0 30px 80px rgba(0,0,0,.28); transform-origin: right bottom; transform: translateY(18px) scale(.94); opacity: 0; pointer-events: none; transition: transform .26s ease, opacity .26s ease; border: 1px solid rgba(0,0,0,.08); }
.gc-chat-widget.open .gc-chat-window { transform: translateY(0) scale(1); opacity: 1; pointer-events: auto; }
.gc-chat-header { height: 72px; display: flex; align-items: center; gap: .75rem; padding: .8rem .9rem; background: #075e54; color: #fff; }
.gc-chat-avatar { width: 48px; height: 48px; border-radius: 50%; overflow: hidden; background: #fff; border: 2px solid rgba(255,255,255,.65); flex: 0 0 auto; display: grid; place-items: center; }
.gc-chat-avatar img { width: 100%; height: 100%; object-fit: cover; }
.gc-chat-title { min-width: 0; flex: 1; }
.gc-chat-title strong { display: block; font-size: 1rem; line-height: 1.15; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.gc-chat-status { display: flex; align-items: center; gap: .35rem; color: rgba(255,255,255,.82); font-size: .78rem; margin-top: .18rem; }
.gc-chat-status::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: #25d366; box-shadow: 0 0 0 3px rgba(37,211,102,.18); }
.gc-chat-close { width: 36px; height: 36px; border: 0; border-radius: 50%; background: rgba(255,255,255,.12); color: #fff; font-size: 1.45rem; cursor: pointer; line-height: 1; }
.gc-chat-body { height: calc(100% - 72px); display: flex; flex-direction: column; position: relative; }
.gc-chat-body::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(117,72,18,.08) 1px, transparent 1px), radial-gradient(rgba(12,84,44,.07) 1px, transparent 1px); background-position: 0 0, 12px 12px; background-size: 24px 24px; opacity: .6; pointer-events: none; }
.gc-chat-messages { position: relative; z-index: 1; flex: 1; overflow-y: auto; padding: 1rem .75rem .7rem; scroll-behavior: smooth; }
.gc-chat-date { width: fit-content; margin: 0 auto .8rem; background: rgba(255,255,255,.75); border-radius: 999px; padding: .25rem .7rem; font-size: .74rem; color: #667781; box-shadow: 0 1px 2px rgba(0,0,0,.06); }
.gc-message { display: flex; margin: .45rem 0; animation: gcBubbleIn .2s ease both; }
.gc-message.user { justify-content: flex-end; }
.gc-bubble { max-width: 82%; border-radius: 12px; padding: .58rem .72rem .45rem; box-shadow: 0 1px 1px rgba(0,0,0,.08); line-height: 1.42; font-size: .92rem; color: #111b21; white-space: pre-wrap; overflow-wrap: anywhere; position: relative; }
.gc-message.bot .gc-bubble { background: #fff; border-top-left-radius: 3px; }
.gc-message.user .gc-bubble { background: #d9fdd3; border-top-right-radius: 3px; }
.gc-bubble small { display: block; text-align: right; color: #667781; font-size: .64rem; margin-top: .2rem; }
.gc-quick-replies { position: relative; z-index: 1; display: flex; gap: .45rem; overflow-x: auto; padding: .2rem .75rem .7rem; }
.gc-quick-replies button { flex: 0 0 auto; border: 1px solid rgba(7,94,84,.18); background: rgba(255,255,255,.86); color: #075e54; font-weight: 850; border-radius: 999px; padding: .52rem .75rem; cursor: pointer; box-shadow: 0 1px 3px rgba(0,0,0,.06); }
.gc-chat-inputbar { position: relative; z-index: 1; display: flex; gap: .5rem; align-items: end; padding: .7rem; background: #f0f2f5; border-top: 1px solid rgba(0,0,0,.06); }
.gc-chat-input { flex: 1; min-height: 44px; max-height: 112px; resize: none; border: 0; border-radius: 22px; background: #fff; color: #111b21; padding: .8rem 1rem; line-height: 1.35; outline: none; font: inherit; box-shadow: inset 0 0 0 1px rgba(0,0,0,.05); }
.gc-send { width: 44px; height: 44px; border-radius: 50%; border: 0; display: grid; place-items: center; cursor: pointer; background: #00a884; color: #fff; flex: 0 0 auto; box-shadow: 0 6px 16px rgba(0,168,132,.25); }
.gc-send svg { width: 21px; height: 21px; fill: currentColor; transform: translateX(1px); }
.gc-send:disabled { opacity: .55; cursor: not-allowed; box-shadow: none; }
.gc-typing { display: flex; align-items: center; gap: .22rem; min-width: 58px; }
.gc-typing i { width: 7px; height: 7px; border-radius: 50%; background: #8696a0; animation: gcTyping 1.2s infinite ease-in-out; }
.gc-typing i:nth-child(2) { animation-delay: .16s; }
.gc-typing i:nth-child(3) { animation-delay: .32s; }
@keyframes gcPing { 0% { transform: scale(.85); opacity: .8; } 80%, 100% { transform: scale(1.35); opacity: 0; } }
@keyframes gcBubbleIn { from { opacity: 0; transform: translateY(7px); } to { opacity: 1; transform: translateY(0); } }
@keyframes gcTyping { 0%, 80%, 100% { opacity: .35; transform: translateY(0); } 40% { opacity: 1; transform: translateY(-3px); } }
@media (max-width: 700px) {
  .gc-chat-widget { right: 14px; bottom: 74px; }
  .gc-chat-button { width: 58px; height: 58px; }
  .gc-chat-window { position: fixed; inset: auto 10px 10px 10px; width: auto; height: min(680px, calc(100vh - 20px)); border-radius: 22px; }
  .gc-bubble { max-width: 88%; }
}


.meta-pill.emphasis { min-width: 220px; }
.meta-pill.emphasis span { font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; color: var(--green-700); font-weight: 800; }
.meta-pill.emphasis strong { font-size: 1.25rem; margin-top: .35rem; }
.qr-block-large { align-items: center; }
.qr-block-large img { width: 190px; max-width: 100%; padding: .5rem; background: #fff; border: 1px solid rgba(18,84,40,.14); box-shadow: var(--shadow-soft); image-rendering: -webkit-optimize-contrast; image-rendering: crisp-edges; }
.gallery.gallery-six .gallery-item { grid-column: span 4; min-height: 230px; }
.gallery.gallery-six .gallery-item:nth-child(1), .gallery.gallery-six .gallery-item:nth-child(6) { grid-column: span 6; }
.gallery.gallery-six .gallery-item:nth-child(2), .gallery.gallery-six .gallery-item:nth-child(3), .gallery.gallery-six .gallery-item:nth-child(4), .gallery.gallery-six .gallery-item:nth-child(5) { grid-column: span 3; }
@media (max-width: 900px) { .gallery.gallery-six .gallery-item, .gallery.gallery-six .gallery-item:nth-child(n) { grid-column: auto; } }

.image-card.consultation-feature img { object-position: center center; }


/* Image-rich service cards */
.service-list-card.with-image,
.service-card.with-image { display: flex; flex-direction: column; gap: .85rem; padding: 1rem; }
.service-list-card.with-image .num,
.service-card.with-image .num { width: 52px; height: 52px; border-radius: 16px; margin-bottom: 0; }
.service-card.with-image .icon { margin-bottom: 0; }
.service-thumb { display:block; width:100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 18px; box-shadow: var(--shadow-soft); border: 1px solid rgba(18,84,40,.10); }
.service-list-card.with-image > div:last-child,
.service-card.with-image > div:last-child { display:block; }
.service-list-card.with-image h3,
.service-card.with-image h3 { margin: .1rem 0 .45rem; }
.service-list-card.with-image p,
.service-card.with-image p { margin: 0; }
@media (min-width: 900px) {
  .grid-3 .service-list-card.with-image,
  .grid-3 .service-card.with-image { min-height: 100%; }
}

/* Larger home business areas title */
.business-areas-title {
  display: inline-block;
  margin: 0 0 1rem;
  color: var(--green-950);
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  line-height: .95;
  letter-spacing: -.06em;
  font-weight: 950;
  background: none;
}

/* Business verification single-card layout */
.verification-single {
  display: grid;
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
}
.verification-single .verify-card {
  width: 100%;
}

/* Contact form status */
.form-status {
  margin: .9rem 0 0;
  font-weight: 800;
  color: var(--green-800);
}
.form-status.success { color: var(--green-800); }
.form-status.warning { color: #8a5a00; }
.form-status.loading { color: var(--blue-600); }
.contact-form button:disabled {
  opacity: .7;
  cursor: wait;
}


/* Compact footer bank details */
.bank-footer-links {
  max-width: none;
  display: grid;
  gap: .62rem;
}
.bank-footer-links li {
  line-height: 1.45;
  margin-bottom: 0;
}
.bank-footer-links strong {
  color: rgba(255,255,255,.72);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-right: .25rem;
}
@media (min-width: 980px) {
  .bank-footer-links li {
    white-space: nowrap;
  }
}
@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(260px, 1fr));
  }
}
@media (max-width: 700px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .bank-footer-links li {
    white-space: normal;
  }
}

/* Contact page bank details card */
.contact-bank-card {
  margin-top: 1rem;
  padding: 1.2rem;
  border-radius: 24px;
  background: #fffdf7;
  border: 1px solid rgba(18,84,40,.15);
  box-shadow: var(--shadow-soft);
}
.contact-bank-card h3 {
  margin: 0 0 1rem;
  color: var(--green-950);
  font-size: 1.25rem;
}
.contact-bank-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: .75rem;
}
.contact-bank-grid div {
  min-height: 82px;
  padding: .85rem;
  border-radius: 16px;
  background: var(--green-50);
  border: 1px solid rgba(18,84,40,.10);
}
.contact-bank-grid span {
  display: block;
  color: var(--muted);
  font-size: .75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.contact-bank-grid strong {
  display: block;
  margin-top: .25rem;
  color: var(--green-950);
  line-height: 1.3;
  overflow-wrap: anywhere;
}
.contact-bank-grid small {
  display: block;
  margin-top: .15rem;
  color: var(--muted);
  font-weight: 700;
}
@media (max-width: 700px) {
  .contact-bank-grid { grid-template-columns: 1fr; }
}

/* Chat action link buttons */
.gc-action-bubble {
  padding: .55rem;
}
.gc-chat-link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  padding: .72rem .95rem;
  border-radius: 999px;
  background: #128c7e;
  color: #fff !important;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(7,94,84,.22);
}
.gc-chat-link-button:hover {
  background: #075e54;
}

/* Garden & Co final hero/banner background slideshow placement */
.hero .hero-grid {
  grid-template-columns: minmax(0, 820px);
  justify-content: flex-start;
}
.hero .hero-copy { max-width: 820px; }
.hero-bg-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #e8f4df;
}
.hero-bg-slideshow img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 1;
  transition: opacity 650ms ease, transform 5000ms ease;
  transform: scale(1.04);
  animation: slowZoom 14s ease-in-out infinite alternate;
}
.hero-bg-slideshow.is-changing img {
  opacity: 0;
  transform: scale(1.08);
}
.hero-top-qr {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.15rem;
  padding: .75rem .95rem .75rem .75rem;
  max-width: min(520px, 100%);
  border: 1px solid transparent;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255,253,247,.94), rgba(246,251,241,.88)) padding-box,
    linear-gradient(135deg, rgba(99,169,31,.72), rgba(17,140,224,.42), rgba(117,72,18,.38)) border-box;
  box-shadow: 0 24px 60px rgba(6,41,21,.16), inset 0 1px 0 rgba(255,255,255,.72);
  color: #0b3d1f;
  text-decoration: none;
  overflow: hidden;
  backdrop-filter: blur(18px);
  transition: transform var(--speed) ease, box-shadow var(--speed) ease;
}
.hero-top-qr::before {
  content: "";
  position: absolute;
  inset: -35% auto auto -8%;
  width: 160px;
  height: 160px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(99,169,31,.20), transparent 70%);
  z-index: -1;
  pointer-events: none;
}
.hero-top-qr:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 76px rgba(6,41,21,.22), inset 0 1px 0 rgba(255,255,255,.76);
}
.hero-qr-frame {
  position: relative;
  flex: 0 0 102px;
  width: 102px;
  height: 102px;
  display: grid;
  place-items: center;
  padding: .45rem;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(11,61,31,.14);
  box-shadow: 0 14px 30px rgba(11,61,31,.14);
}
.hero-qr-frame::after {
  content: "SCAN";
  position: absolute;
  left: 50%;
  bottom: -.55rem;
  transform: translateX(-50%);
  padding: .22rem .48rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green-700), var(--green-500));
  color: #fff;
  font-size: .58rem;
  font-weight: 950;
  letter-spacing: .08em;
  box-shadow: 0 8px 18px rgba(31,107,47,.22);
}
.hero-qr-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}
.hero-qr-copy {
  display: block;
  min-width: 0;
  padding-right: .3rem;
}
.hero-qr-kicker {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 .32rem;
  padding: .28rem .58rem;
  border-radius: 999px;
  background: rgba(232,244,223,.90);
  color: var(--green-700);
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero-top-qr strong { display:block; font-weight:950; line-height:1.14; font-size:1.02rem; }
.hero-qr-copy > span:last-child { display:block; margin-top:.28rem; font-size:.92rem; color:#496148; line-height:1.35; }
.hero-qr-arrow {
  align-self: center;
  flex: 0 0 auto;
  padding: .48rem .65rem;
  border-radius: 999px;
  background: rgba(11,61,31,.08);
  color: #0b3d1f;
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .08em;
}
#card-details .business-panel {
  grid-template-columns: .9fr 1.1fr;
  align-items: stretch;
  gap: 1.5rem;
}
#card-details .consultation-feature img {
  min-height: 520px;
  object-position: center center;
}
@media (max-width: 1060px) {
  #card-details .business-panel { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .hero .hero-grid { grid-template-columns: 1fr; }
  .hero-top-qr { width: 100%; align-items: center; padding: .65rem .75rem .75rem .65rem; border-radius: 24px; }
  .hero-qr-frame { width: 86px; height: 86px; flex-basis: 86px; border-radius: 20px; }
  .hero-qr-arrow { display: none; }
  .hero-top-qr strong { font-size: .95rem; }
  #card-details .consultation-feature img { min-height: 320px; }
}

/* Chat button placement: keep the WhatsApp/chat bubble at the visible bottom of the browser window. */
.gc-chat-widget {
  position: fixed !important;
  right: 22px !important;
  bottom: 18px !important;
  z-index: 120 !important;
}
.gc-chat-button {
  transform: none !important;
}
.gc-chat-button:hover {
  transform: none !important;
}
.gc-chat-window {
  bottom: 78px !important;
}
.back-to-top {
  right: 96px !important;
  bottom: 22px !important;
  z-index: 110 !important;
}
@media (max-width: 700px) {
  .gc-chat-widget {
    right: 14px !important;
    bottom: 14px !important;
  }
  .gc-chat-window {
    inset: auto 10px 86px 10px !important;
    width: auto !important;
    height: min(680px, calc(100vh - 104px)) !important;
  }
  .back-to-top {
    right: 84px !important;
    bottom: 20px !important;
  }
}

/* Responsive hero viewport fit: keep the full first-view banner visible on different screens. */
:root {
  --hero-header-offset: 117px;
}
.hero {
  height: calc(100svh - var(--hero-header-offset)) !important;
  min-height: 0 !important;
  display: flex !important;
  align-items: center !important;
  padding: clamp(10px, 2.6vh, 34px) 0 clamp(28px, 5.2vh, 70px) !important;
}
.hero .container {
  height: 100%;
  display: flex;
  align-items: center;
}
.hero .hero-grid {
  width: 100%;
  align-items: center;
}
.hero .hero-copy {
  max-width: min(760px, 68vw);
}
.logo-badge.hero-full-logo-badge {
  width: clamp(82px, 13.5vh, 165px) !important;
  max-width: 28vw;
  padding: clamp(5px, .95vh, 10px) !important;
  margin-bottom: clamp(.45rem, 1.5vh, 1rem) !important;
  border-radius: clamp(16px, 2.7vh, 28px) !important;
}
.logo-badge.hero-full-logo-badge img {
  border-radius: clamp(12px, 2vh, 22px) !important;
}
.hero .eyebrow {
  font-size: clamp(.56rem, 1.25vh, .76rem) !important;
  gap: clamp(.32rem, .8vh, .55rem);
}
.hero .eyebrow::before,
.hero .eyebrow::after {
  width: clamp(16px, 3.5vh, 26px);
}
.hero-title {
  font-size: clamp(2.15rem, min(8vw, 8.4vh), 5.35rem) !important;
  line-height: .9 !important;
}
.hero-subtitle {
  font-size: clamp(.9rem, 2.15vh, 1.35rem) !important;
  margin-top: clamp(.16rem, .7vh, .4rem) !important;
}
.hero-kicker {
  font-size: clamp(.82rem, 1.95vh, 1.12rem) !important;
  line-height: 1.45 !important;
  margin-top: clamp(.45rem, 1.25vh, .95rem) !important;
  max-width: 780px;
}
.hero .lead {
  font-size: clamp(.8rem, 1.72vh, 1.04rem) !important;
  line-height: 1.52 !important;
  margin-top: clamp(.34rem, 1vh, .7rem) !important;
  max-width: 790px;
}
.hero-actions {
  gap: clamp(.4rem, 1.1vh, .8rem) !important;
  margin-top: clamp(.75rem, 1.95vh, 1.45rem) !important;
}
.hero-actions .btn {
  min-height: clamp(35px, 4.9vh, 48px) !important;
  padding: clamp(.46rem, 1.05vh, .86rem) clamp(.68rem, 1.55vw, 1.2rem) !important;
  font-size: clamp(.72rem, 1.45vh, .92rem) !important;
}
.hero-meta {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: clamp(.45rem, 1.1vh, .8rem) !important;
  margin-top: clamp(.7rem, 1.9vh, 1.35rem) !important;
  max-width: min(560px, 68vw) !important;
}
.meta-pill {
  border-radius: clamp(13px, 2vh, 18px) !important;
  padding: clamp(.48rem, 1.2vh, .82rem) !important;
}
.meta-pill.emphasis span {
  font-size: clamp(.54rem, 1.23vh, .76rem) !important;
  line-height: 1.25;
}
.meta-pill.emphasis strong {
  font-size: clamp(.82rem, 2vh, 1.22rem) !important;
  line-height: 1.12;
}
.hero-top-qr {
  margin-top: clamp(.58rem, 1.7vh, 1.1rem) !important;
  padding: clamp(.38rem, 1vh, .72rem) clamp(.5rem, 1.2vw, .95rem) clamp(.42rem, 1vh, .72rem) clamp(.42rem, 1vw, .72rem) !important;
  gap: clamp(.48rem, 1.1vw, .95rem) !important;
  max-width: min(440px, 68vw) !important;
  border-radius: clamp(18px, 3vh, 28px) !important;
}
.hero-qr-frame {
  width: clamp(58px, 9.6vh, 96px) !important;
  height: clamp(58px, 9.6vh, 96px) !important;
  flex-basis: clamp(58px, 9.6vh, 96px) !important;
  border-radius: clamp(15px, 2.5vh, 24px) !important;
  padding: clamp(.24rem, .8vh, .45rem) !important;
}
.hero-qr-frame::after {
  font-size: clamp(.46rem, .95vh, .58rem) !important;
  bottom: clamp(-.48rem, -.8vh, -.32rem) !important;
}
.hero-qr-kicker {
  font-size: clamp(.52rem, 1.08vh, .72rem) !important;
  padding: clamp(.18rem, .55vh, .28rem) clamp(.42rem, .9vh, .58rem) !important;
}
.hero-top-qr strong {
  font-size: clamp(.75rem, 1.62vh, 1rem) !important;
}
.hero-qr-copy > span:last-child {
  font-size: clamp(.68rem, 1.36vh, .9rem) !important;
}
.hero-qr-arrow {
  font-size: clamp(.55rem, 1.05vh, .72rem) !important;
  padding: clamp(.32rem, .78vh, .48rem) clamp(.45rem, .9vh, .65rem) !important;
}
.wave-bottom {
  height: clamp(42px, 10vh, 104px) !important;
}
.hero-bg-slideshow img {
  object-position: center center !important;
}
@media (max-height: 760px) {
  .hero {
    padding-top: clamp(8px, 1.8vh, 18px) !important;
    padding-bottom: clamp(22px, 4.2vh, 44px) !important;
  }
  .logo-badge.hero-full-logo-badge {
    width: clamp(68px, 11.5vh, 118px) !important;
    margin-bottom: clamp(.25rem, .9vh, .65rem) !important;
  }
  .hero-title {
    font-size: clamp(1.9rem, min(7.2vw, 7.2vh), 4.2rem) !important;
  }
  .hero-subtitle { font-size: clamp(.78rem, 1.85vh, 1.08rem) !important; }
  .hero-kicker { font-size: clamp(.72rem, 1.62vh, .96rem) !important; }
  .hero .lead { font-size: clamp(.7rem, 1.48vh, .9rem) !important; line-height: 1.42 !important; }
  .hero-actions { margin-top: clamp(.48rem, 1.35vh, .9rem) !important; }
  .hero-meta { margin-top: clamp(.48rem, 1.35vh, .9rem) !important; }
  .hero-top-qr { margin-top: clamp(.45rem, 1.25vh, .8rem) !important; }
}
@media (max-height: 620px) {
  .hero .lead {
    display: none;
  }
  .hero-top-qr {
    max-width: min(360px, 68vw) !important;
  }
  .hero-qr-frame {
    width: 52px !important;
    height: 52px !important;
    flex-basis: 52px !important;
  }
  .wave-bottom { height: 36px !important; }
}
@media (max-width: 1060px) {
  :root { --hero-header-offset: 112px; }
  .hero .hero-copy { max-width: min(720px, 82vw); }
  .hero-meta { max-width: min(560px, 82vw) !important; }
  .hero-top-qr { max-width: min(430px, 82vw) !important; }
}
@media (max-width: 700px) {
  :root { --hero-header-offset: 104px; }
  .hero {
    text-align: center !important;
    padding: clamp(10px, 2vh, 18px) 0 clamp(28px, 5vh, 54px) !important;
  }
  .hero .container {
    justify-content: center;
  }
  .hero .hero-copy {
    max-width: 100%;
    width: 100%;
  }
  .logo-badge.hero-full-logo-badge {
    width: clamp(74px, 13vh, 120px) !important;
    max-width: 32vw;
    margin-inline: auto !important;
  }
  .hero-title {
    font-size: clamp(2.05rem, 12vw, 3.7rem) !important;
  }
  .hero-kicker { max-width: 100%; }
  .hero .lead {
    font-size: clamp(.74rem, 2.1vw, .9rem) !important;
    line-height: 1.45 !important;
  }
  .hero-actions {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
  }
  .hero-actions .btn {
    width: 100% !important;
    min-height: 36px !important;
    padding: .52rem .45rem !important;
    font-size: clamp(.62rem, 2.5vw, .75rem) !important;
  }
  .hero-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    max-width: 100% !important;
  }
  .hero-top-qr {
    max-width: 100% !important;
    text-align: left;
  }
  .hero-bg-slideshow img {
    object-position: 62% center !important;
  }
}
@media (max-width: 460px) {
  :root { --hero-header-offset: 104px; }
  .hero .lead { display: none; }
  .hero-title { font-size: clamp(1.95rem, 13vw, 3.15rem) !important; }
  .hero-actions { gap: .35rem !important; }
  .hero-actions .btn { font-size: .62rem !important; }
  .meta-pill.emphasis span { font-size: .5rem !important; }
  .meta-pill.emphasis strong { font-size: .78rem !important; }
  .hero-qr-copy > span:last-child { display: none !important; }
  .hero-qr-arrow { display: none !important; }
}


/* Garden & Co polished responsive hero layout */
:root {
  --hero-visible-offset: 118px;
}

.hero {
  min-height: calc(100svh - var(--hero-visible-offset)) !important;
  height: auto !important;
  display: grid !important;
  align-items: center !important;
  padding: clamp(18px, 3.4vh, 42px) 0 clamp(52px, 8.4vh, 96px) !important;
}

.hero::before {
  background:
    radial-gradient(circle at 14% 28%, rgba(255,253,247,.98) 0%, rgba(255,253,247,.92) 26%, rgba(255,253,247,.66) 48%, rgba(255,253,247,.18) 68%, rgba(255,253,247,.08) 100%),
    linear-gradient(90deg, rgba(255,253,247,.96) 0%, rgba(255,253,247,.80) 34%, rgba(255,253,247,.34) 58%, rgba(6,41,21,.13) 100%) !important;
}

.hero .container.hero-grid {
  width: min(1220px, calc(100% - clamp(34px, 7vw, 118px))) !important;
  display: grid !important;
  grid-template-columns: minmax(0, clamp(520px, 48vw, 700px)) !important;
  justify-content: flex-start !important;
  align-items: center !important;
  min-height: min(620px, calc(100svh - var(--hero-visible-offset) - 70px)) !important;
}

.hero .hero-copy {
  max-width: clamp(520px, 48vw, 700px) !important;
  width: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: clamp(.34rem, 1.05vh, .72rem) !important;
  padding: clamp(.15rem, .7vh, .45rem) 0 !important;
  transform: translateY(clamp(-12px, -1.5vh, 0px));
}

.logo-badge.hero-full-logo-badge {
  width: clamp(74px, 12.6vh, 122px) !important;
  max-width: 22vw !important;
  padding: clamp(6px, 1vh, 10px) !important;
  margin: 0 0 clamp(.3rem, .7vh, .55rem) !important;
  border-radius: clamp(16px, 3vh, 26px) !important;
  box-shadow: 0 18px 44px rgba(7,48,20,.14) !important;
}

.logo-badge.hero-full-logo-badge img {
  border-radius: clamp(12px, 2.2vh, 20px) !important;
}

.hero .eyebrow {
  margin: 0 !important;
  font-size: clamp(.58rem, 1.2vh, .78rem) !important;
  letter-spacing: .12em !important;
  gap: clamp(.36rem, .8vw, .55rem) !important;
}

.hero .eyebrow::before,
.hero .eyebrow::after {
  width: clamp(18px, 2.6vw, 34px) !important;
}

.hero-title {
  margin: 0 !important;
  max-width: 100% !important;
  font-size: clamp(2.65rem, min(7.8vw, 9.2vh), 5.85rem) !important;
  line-height: .9 !important;
  letter-spacing: -.07em !important;
  text-wrap: balance;
}

.hero-subtitle {
  margin: 0 !important;
  font-size: clamp(.88rem, min(1.55vw, 2.15vh), 1.34rem) !important;
  line-height: 1.14 !important;
  letter-spacing: .045em !important;
}

.hero-kicker {
  margin: clamp(.18rem, .55vh, .42rem) 0 0 !important;
  max-width: min(650px, 100%) !important;
  font-size: clamp(.84rem, min(1.42vw, 1.92vh), 1.16rem) !important;
  line-height: 1.38 !important;
}

.hero .lead {
  margin: clamp(.12rem, .5vh, .42rem) 0 0 !important;
  max-width: min(690px, 100%) !important;
  font-size: clamp(.84rem, min(1.16vw, 1.72vh), 1.05rem) !important;
  line-height: 1.62 !important;
  color: rgba(50,70,48,.94) !important;
}

.hero-actions {
  margin-top: clamp(.45rem, 1.25vh, 1.15rem) !important;
  gap: clamp(.45rem, .9vw, .8rem) !important;
}

.hero-actions .btn {
  min-height: clamp(38px, 5.8vh, 48px) !important;
  padding: clamp(.58rem, 1.15vh, .86rem) clamp(.88rem, 1.55vw, 1.22rem) !important;
  font-size: clamp(.72rem, min(1.05vw, 1.45vh), .94rem) !important;
  box-shadow: 0 10px 24px rgba(7,48,20,.10);
}

.hero-meta {
  margin-top: clamp(.35rem, 1.15vh, 1.05rem) !important;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: clamp(.45rem, .9vw, .8rem) !important;
  max-width: min(520px, 100%) !important;
}

.meta-pill {
  padding: clamp(.58rem, 1.18vh, .8rem) clamp(.68rem, 1.2vw, .95rem) !important;
  border-radius: clamp(14px, 2.2vh, 18px) !important;
  background: rgba(255,255,255,.82) !important;
  backdrop-filter: blur(12px);
}

.meta-pill.emphasis span {
  font-size: clamp(.55rem, min(1.02vw, 1.25vh), .72rem) !important;
  line-height: 1.25 !important;
  letter-spacing: .07em !important;
}

.meta-pill.emphasis strong {
  margin-top: clamp(.18rem, .42vh, .28rem) !important;
  font-size: clamp(.88rem, min(1.55vw, 2.05vh), 1.18rem) !important;
  line-height: 1.08 !important;
}

.hero-top-qr {
  margin-top: clamp(.42rem, 1.15vh, 1rem) !important;
  max-width: min(455px, 100%) !important;
  padding: clamp(.48rem, 1.05vh, .68rem) clamp(.62rem, 1.2vw, .9rem) clamp(.5rem, 1.05vh, .7rem) clamp(.48rem, 1vw, .68rem) !important;
  gap: clamp(.55rem, 1vw, .85rem) !important;
  border-radius: clamp(18px, 3vh, 26px) !important;
  box-shadow: 0 18px 44px rgba(6,41,21,.15), inset 0 1px 0 rgba(255,255,255,.72) !important;
}

.hero-qr-frame {
  width: clamp(58px, 9.3vh, 86px) !important;
  height: clamp(58px, 9.3vh, 86px) !important;
  flex-basis: clamp(58px, 9.3vh, 86px) !important;
  border-radius: clamp(14px, 2.3vh, 21px) !important;
}

.hero-qr-frame::after {
  font-size: clamp(.44rem, .88vh, .56rem) !important;
  bottom: clamp(-.46rem, -.78vh, -.32rem) !important;
}

.hero-qr-kicker {
  font-size: clamp(.52rem, .96vh, .66rem) !important;
  padding: clamp(.16rem, .46vh, .25rem) clamp(.4rem, .8vw, .55rem) !important;
  margin-bottom: clamp(.18rem, .45vh, .32rem) !important;
}

.hero-top-qr strong {
  font-size: clamp(.78rem, min(1.18vw, 1.58vh), .98rem) !important;
  line-height: 1.18 !important;
}

.hero-qr-copy > span:last-child {
  font-size: clamp(.68rem, min(1vw, 1.32vh), .88rem) !important;
  margin-top: .18rem !important;
}

.hero-qr-arrow {
  font-size: clamp(.54rem, .92vh, .68rem) !important;
  padding: clamp(.32rem, .72vh, .45rem) clamp(.48rem, .9vw, .65rem) !important;
}

.wave-bottom {
  height: clamp(36px, 7.2vh, 78px) !important;
}

.hero-bg-slideshow img {
  object-position: 62% center !important;
}

/* Short laptop screens */
@media (max-height: 720px) and (min-width: 701px) {
  .hero {
    padding-top: clamp(10px, 1.8vh, 18px) !important;
    padding-bottom: clamp(38px, 6.8vh, 62px) !important;
  }

  .hero .container.hero-grid {
    min-height: calc(100svh - var(--hero-visible-offset) - 56px) !important;
  }

  .hero .hero-copy {
    gap: clamp(.25rem, .8vh, .52rem) !important;
  }

  .logo-badge.hero-full-logo-badge {
    width: clamp(62px, 10.2vh, 92px) !important;
  }

  .hero-title {
    font-size: clamp(2.35rem, min(6.4vw, 8vh), 4.65rem) !important;
  }

  .hero-subtitle { font-size: clamp(.78rem, 1.8vh, 1.05rem) !important; }
  .hero-kicker { font-size: clamp(.72rem, 1.64vh, .96rem) !important; line-height: 1.35 !important; }
  .hero .lead { font-size: clamp(.7rem, 1.48vh, .88rem) !important; line-height: 1.48 !important; max-width: 630px !important; }
  .hero-actions .btn { min-height: 36px !important; padding: .5rem .82rem !important; font-size: .72rem !important; }
  .meta-pill { padding: .5rem .66rem !important; }
  .meta-pill.emphasis span { font-size: .54rem !important; }
  .meta-pill.emphasis strong { font-size: .88rem !important; }
  .hero-top-qr { max-width: 385px !important; }
  .hero-qr-frame { width: 56px !important; height: 56px !important; flex-basis: 56px !important; }
  .hero-qr-arrow { display: none !important; }
}

/* Very short screens: keep the whole first view visible */
@media (max-height: 610px) and (min-width: 701px) {
  .hero .lead { display: none !important; }
  .logo-badge.hero-full-logo-badge { width: 58px !important; }
  .hero-title { font-size: clamp(2rem, min(5.8vw, 7.2vh), 3.6rem) !important; }
  .hero-kicker { max-width: 570px !important; }
  .hero-top-qr { max-width: 350px !important; }
  .wave-bottom { height: 30px !important; }
}

/* Tablets */
@media (max-width: 1060px) {
  :root { --hero-visible-offset: 112px; }

  .hero .container.hero-grid {
    width: min(100% - 38px, 920px) !important;
    grid-template-columns: minmax(0, min(690px, 100%)) !important;
  }

  .hero .hero-copy {
    max-width: min(690px, 100%) !important;
  }

  .hero-bg-slideshow img { object-position: 66% center !important; }
}

/* Phones */
@media (max-width: 700px) {
  :root { --hero-visible-offset: 104px; }

  .hero {
    min-height: calc(100svh - var(--hero-visible-offset)) !important;
    text-align: center !important;
    align-items: center !important;
    padding: clamp(12px, 2vh, 22px) 0 clamp(36px, 6vh, 58px) !important;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(255,253,247,.96) 0%, rgba(255,253,247,.86) 45%, rgba(255,253,247,.48) 100%) !important;
  }

  .hero .container.hero-grid {
    width: min(100% - 30px, 560px) !important;
    min-height: calc(100svh - var(--hero-visible-offset) - 48px) !important;
    grid-template-columns: 1fr !important;
    justify-content: center !important;
  }

  .hero .hero-copy {
    align-items: center !important;
    max-width: 100% !important;
    transform: none !important;
    gap: clamp(.28rem, .9vh, .56rem) !important;
  }

  .logo-badge.hero-full-logo-badge {
    width: clamp(66px, 12vh, 104px) !important;
    max-width: 28vw !important;
  }

  .hero-title {
    font-size: clamp(2.05rem, 11.5vw, 3.65rem) !important;
    line-height: .92 !important;
  }

  .hero-kicker,
  .hero .lead {
    max-width: 100% !important;
  }

  .hero .lead {
    font-size: clamp(.74rem, 2.3vw, .9rem) !important;
    line-height: 1.48 !important;
  }

  .hero-actions {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    width: 100% !important;
    gap: .42rem !important;
  }

  .hero-actions .btn {
    width: 100% !important;
    min-height: 36px !important;
    padding: .52rem .42rem !important;
    font-size: clamp(.62rem, 2.4vw, .74rem) !important;
  }

  .hero-meta {
    width: 100% !important;
    max-width: 100% !important;
    gap: .45rem !important;
  }

  .hero-top-qr {
    width: 100% !important;
    max-width: 100% !important;
    text-align: left !important;
  }

  .hero-bg-slideshow img { object-position: 68% center !important; }
}

@media (max-width: 460px) {
  .hero .lead { display: none !important; }
  .hero-title { font-size: clamp(1.95rem, 12.8vw, 3.15rem) !important; }
  .hero-kicker { font-size: clamp(.68rem, 2.65vw, .85rem) !important; }
  .hero-actions { gap: .34rem !important; }
  .hero-actions .btn { font-size: .6rem !important; }
  .meta-pill { padding: .48rem .5rem !important; }
  .meta-pill.emphasis span { font-size: .48rem !important; }
  .meta-pill.emphasis strong { font-size: .76rem !important; }
  .hero-qr-copy > span:last-child { display: none !important; }
  .hero-qr-arrow { display: none !important; }
}

@media (max-width: 360px), (max-height: 540px) {
  .hero-top-qr { display: none !important; }
}

/* Garden & Co reduced hero background wash: keeps text readable while showing more photo. */
.hero::before {
  background:
    radial-gradient(ellipse at 12% 47%, rgba(255,253,247,.92) 0%, rgba(255,253,247,.76) 22%, rgba(255,253,247,.40) 39%, rgba(255,253,247,.14) 54%, rgba(255,253,247,0) 69%),
    linear-gradient(90deg, rgba(255,253,247,.82) 0%, rgba(255,253,247,.56) 21%, rgba(255,253,247,.24) 34%, rgba(255,253,247,.08) 45%, rgba(255,253,247,0) 58%) !important;
}
.hero-title,
.hero-subtitle,
.hero-kicker,
.hero .lead,
.hero .eyebrow {
  text-shadow: 0 2px 16px rgba(255,253,247,.74), 0 1px 0 rgba(255,255,255,.35) !important;
}
.hero .hero-copy {
  filter: drop-shadow(0 12px 34px rgba(255,253,247,.20));
}
@media (max-width: 700px) {
  .hero::before {
    background:
      linear-gradient(180deg, rgba(255,253,247,.88) 0%, rgba(255,253,247,.66) 36%, rgba(255,253,247,.32) 66%, rgba(255,253,247,.12) 100%) !important;
  }
}
@media (min-width: 1180px) {
  .hero::before {
    background:
      radial-gradient(ellipse at 12% 47%, rgba(255,253,247,.91) 0%, rgba(255,253,247,.72) 20%, rgba(255,253,247,.34) 36%, rgba(255,253,247,.10) 50%, rgba(255,253,247,0) 64%),
      linear-gradient(90deg, rgba(255,253,247,.80) 0%, rgba(255,253,247,.50) 19%, rgba(255,253,247,.20) 31%, rgba(255,253,247,.06) 42%, rgba(255,253,247,0) 54%) !important;
  }
}


/* Dual page hero photos for inner pages */
.page-hero .container {
  grid-template-columns: minmax(0, .95fr) minmax(340px, .78fr);
}
.page-hero-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(.75rem, 1.5vw, 1.2rem);
  align-items: stretch;
}
.page-hero-media .page-hero-image {
  min-height: clamp(230px, 28vw, 340px);
}
.page-hero-media .page-hero-image:nth-child(2) {
  transform: translateY(clamp(18px, 2.4vw, 32px));
}
.page-hero-media .page-hero-image img {
  display: block;
}
@media (max-width: 900px) {
  .page-hero-media {
    grid-template-columns: 1fr 1fr;
  }
  .page-hero-media .page-hero-image:nth-child(2) {
    transform: none;
  }
}
@media (max-width: 620px) {
  .page-hero-media {
    grid-template-columns: 1fr;
  }
  .page-hero-media .page-hero-image {
    min-height: 210px;
  }
}

@media (max-width: 900px) {
  .page-hero .container {
    grid-template-columns: 1fr;
  }
}

/* Final requested refinements: hero logo placement and clean footer legal/details layout */
.hero .logo-badge.hero-full-logo-badge {
  align-self: flex-start !important;
  margin-left: clamp(92px, 12vw, 205px) !important;
  margin-right: 0 !important;
}
@media (max-width: 700px) {
  .hero .logo-badge.hero-full-logo-badge {
    align-self: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
.footer-terms {
  border-top: 0 !important;
  padding-top: .25rem;
  padding-bottom: .75rem;
  margin-top: .2rem;
  font-size: .86rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(255,255,255,.82);
  position: relative;
  z-index: 1;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12) !important;
  padding-top: .9rem !important;
  justify-content: flex-start !important;
}
.site-footer .footer-links li br {
  display: block;
  content: "";
  margin-top: .2rem;
}

