*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-deep: #1a3a2a; --green-mid: #2d6a4f; --green-light: #52b788;
  --sand: #f4ede4; --cream: #faf7f2; --gold: #c9a84c;
  --text-dark: #1a2018; --text-muted: #7a8c74; --white: #ffffff; --red: #c0392b;
  font-size: clamp(15px, 0.6vw + 12.6px, 18px);
}
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--text-dark); overflow-x: hidden; font-size: 1rem; line-height: 1.7; }

/* ── TOP BAR ~28px tall ── */
.top-bar { background: var(--green-deep); border-bottom: 1px solid rgba(82,183,136,0.2); padding: 0.45rem 2rem; position: fixed; top: 0; left: 0; right: 0; z-index: 101; }
.top-bar-inner { display: flex; align-items: center; justify-content: center; gap: 1.2rem; flex-wrap: wrap; font-size: 0.78rem; color: rgba(244,237,228,0.75); letter-spacing: 0.04em; }
.top-bar-inner strong { color: var(--gold); }
.top-bar-inner a { color: var(--green-light); text-decoration: none; font-weight: 600; transition: opacity 0.2s; }
.top-bar-inner a:hover { opacity: 0.75; }
.top-bar-divider { opacity: 0.3; }

/* ── NAV ~56px tall — sits at top:28px so bottom edge = 84px ── */
nav.site-nav { position: fixed; top: 28px; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 0.9rem 2.5rem; background: rgba(26,58,42,0.97); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(82,183,136,0.15); }
.nav-logo { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--sand); letter-spacing: 0.04em; text-decoration: none; flex-shrink: 0; }
.nav-logo span { color: var(--green-light); font-style: italic; }
.nav-links { display: flex; list-style: none; align-items: center; }
.nav-links > li { position: relative; }
.nav-links > li > a, .nav-links > li > button { color: rgba(244,237,228,0.8); text-decoration: none; font-size: 0.82rem; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; transition: color 0.25s; padding: 0.5rem 0.9rem; background: none; border: none; cursor: pointer; font-family: 'DM Sans', sans-serif; display: flex; align-items: center; gap: 0.3rem; white-space: nowrap; }
.nav-links > li > a:hover, .nav-links > li > button:hover { color: var(--green-light); }
.nav-links > li > a.active { color: var(--green-light); }
.nav-dropdown { display: none; position: absolute; top: 100%; left: 0; background: var(--green-deep); border: 1px solid rgba(82,183,136,0.2); border-radius: 4px; min-width: 200px; padding: 0.5rem 0; z-index: 200; }
.nav-links > li:hover .nav-dropdown { display: block; }
.nav-dropdown a { display: block; padding: 0.55rem 1.2rem; color: rgba(244,237,228,0.75); text-decoration: none; font-size: 0.82rem; transition: color 0.2s, background 0.2s; white-space: nowrap; }
.nav-dropdown a:hover { color: var(--green-light); background: rgba(82,183,136,0.08); }
.nav-cta { background: var(--green-light) !important; color: var(--green-deep) !important; border-radius: 2px !important; font-weight: 700 !important; margin-left: 0.5rem; }
.nav-cta:hover { background: #74d6a8 !important; }

/* ── HAMBURGER ── */
.nav-hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 36px; height: 36px; background: none; border: none; cursor: pointer; padding: 4px; flex-shrink: 0; }
.nav-hamburger span { display: block; height: 2px; background: var(--sand); border-radius: 2px; transition: transform 0.25s, opacity 0.25s; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE DRAWER ── */
.mobile-menu { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 99; background: var(--green-deep); padding: 100px 2rem 2rem; flex-direction: column; overflow-y: auto; }
.mobile-menu.open { display: flex; }
.mobile-menu a, .mobile-menu button { display: block; width: 100%; text-align: left; padding: 1rem 0; border: none; border-bottom: 1px solid rgba(82,183,136,0.12); background: none; color: rgba(244,237,228,0.85); text-decoration: none; font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 500; letter-spacing: 0.04em; cursor: pointer; transition: color 0.2s; }
.mobile-menu a:hover { color: var(--green-light); }
.mobile-menu .mm-section-label { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--green-light); padding: 1.4rem 0 0.4rem; border: none; }
.mobile-menu .mm-cta { margin-top: 1.4rem; background: var(--green-light); color: var(--green-deep) !important; border-radius: 2px; text-align: center; font-weight: 700; border: none !important; padding: 0.9rem; }
.mobile-menu .mm-wa { margin-top: 0.6rem; background: #25D366; color: #fff !important; border-radius: 2px; text-align: center; font-weight: 700; border: none !important; padding: 0.9rem; }

/* ── HERO — padding-top clears both fixed bars (84px) ── */
.hero { min-height: 100vh; padding: 84px 6rem 4rem; background: linear-gradient(160deg, rgba(26,58,42,0.88) 0%, rgba(26,58,42,0.55) 60%, transparent 100%), var(--hero-bg, url('media/main_background.jpg')) center/cover no-repeat; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; position: relative; overflow: hidden; }
.hero::after { content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 80px; background: linear-gradient(to top, var(--cream), transparent); pointer-events: none; }
.hero.hero-short { min-height: 0; padding-top: 84px; padding-bottom: 2.5rem; justify-content: flex-start; }
.hero.hero-short::after { height: 30px; }
.hero.hero-compact { background: linear-gradient(180deg, rgba(26,58,42,0.80) 0%, rgba(26,58,42,0.40) 55%, rgba(26,58,42,0.12) 85%, transparent 100%), var(--hero-bg, url('media/main_background.jpg')) center/cover no-repeat; }
.hero.hero-compact::after { height: 36px; }
.hero-eyebrow { font-size: 0.78rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--green-light); margin-bottom: 1rem; opacity: 0; animation: fadeUp 0.8s 0.2s forwards; }
.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.8rem, 4vw + 1.2rem, 6rem); color: var(--white); line-height: 1.1; max-width: 700px; opacity: 0; animation: fadeUp 0.8s 0.4s forwards; }
.hero h1 em { color: var(--green-light); font-style: italic; }
.hero-sub { margin-top: 1.4rem; max-width: 580px; color: rgba(244,237,228,0.85); font-size: clamp(1rem, 0.5vw + 0.85rem, 1.25rem); line-height: 1.7; opacity: 0; animation: fadeUp 0.8s 0.6s forwards; }
.hero-cta { margin-top: 2.4rem; display: flex; gap: 1rem; flex-wrap: wrap; opacity: 0; animation: fadeUp 0.8s 0.8s forwards; }

/* ── BUTTONS ── */
.btn-primary { background: var(--green-light); color: var(--green-deep); padding: 0.85rem 2rem; border: none; border-radius: 2px; font-family: 'DM Sans', sans-serif; font-size: 0.9rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; transition: background 0.25s, transform 0.2s; }
.btn-primary:hover { background: #74d6a8; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--sand); padding: 0.85rem 2rem; border: 1.5px solid rgba(244,237,228,0.4); border-radius: 2px; font-family: 'DM Sans', sans-serif; font-size: 0.9rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; transition: border-color 0.25s, color 0.25s; }
.btn-ghost:hover { border-color: var(--green-light); color: var(--green-light); }
.btn-wa { background: #25D366; color: #fff; padding: 0.85rem 2rem; border: none; border-radius: 2px; font-family: 'DM Sans', sans-serif; font-size: 0.9rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem; transition: background 0.25s, transform 0.2s; }
.btn-wa:hover { background: #1ebd5a; transform: translateY(-2px); }

/* ── BANNER ── */
.banner { background: var(--green-mid); padding: 0.9rem 2rem; text-align: center; }
.banner p { color: var(--sand); font-size: 0.95rem; font-weight: 400; letter-spacing: 0.04em; }
.banner strong { color: var(--green-light); }
.banner a { color: var(--gold); text-decoration: none; font-weight: 600; margin-left: 0.5rem; transition: opacity 0.2s; }
.banner a:hover { opacity: 0.8; }

/* ── SECTIONS ── */
.page-section { padding: 6rem 4rem; }
.page-section.dark-bg { background: var(--green-deep); }
.page-section.alt-bg { background: var(--white); }
.content-wrap { max-width: 1100px; margin: 0 auto; }
.section-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; color: var(--green-mid); margin-bottom: 0.7rem; }
.dark-bg .section-label { color: var(--green-light); }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 2.5vw + 1rem, 3.4rem); color: var(--green-deep); line-height: 1.2; margin-bottom: 1rem; }
.dark-bg .section-title { color: var(--sand); }
.section-sub { color: var(--text-muted); font-size: clamp(1rem, 0.4vw + 0.85rem, 1.15rem); line-height: 1.7; max-width: 620px; margin-bottom: 3rem; }
.dark-bg .section-sub { color: rgba(244,237,228,0.65); }
.section-header { margin-bottom: 3rem; }
.section-header.centered { text-align: center; }
.section-header.centered .section-sub { margin-left: auto; margin-right: auto; }

/* ── FEATURE GRID ── */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.feature-card { background: var(--white); border: 1px solid rgba(45,106,79,0.12); border-radius: 4px; padding: 2rem; }
.dark-bg .feature-card { background: rgba(82,183,136,0.08); border-color: rgba(82,183,136,0.15); }
.feature-icon { font-size: 2rem; margin-bottom: 1rem; }
.feature-card h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--green-deep); margin-bottom: 0.5rem; }
.dark-bg .feature-card h3 { color: var(--sand); }
.feature-card p { font-size: clamp(0.88rem, 0.3vw + 0.78rem, 1rem); color: var(--text-muted); line-height: 1.65; }
.dark-bg .feature-card p { color: rgba(244,237,228,0.6); }

/* ── TWO COL ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }
.two-col-text h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.4rem); color: var(--green-deep); line-height: 1.2; margin-bottom: 1rem; }
.dark-bg .two-col-text h2 { color: var(--sand); }
.two-col-text p { font-size: clamp(0.95rem, 0.4vw + 0.82rem, 1.15rem); color: var(--text-muted); line-height: 1.75; margin-bottom: 1rem; }
.dark-bg .two-col-text p { color: rgba(244,237,228,0.7); }
.two-col-text ul { margin: 1rem 0 1.5rem 1.2rem; display: flex; flex-direction: column; gap: 0.5rem; }
.two-col-text ul li { font-size: 0.92rem; color: var(--text-muted); line-height: 1.6; }
.dark-bg .two-col-text ul li { color: rgba(244,237,228,0.7); }
.two-col-image { border-radius: 4px; overflow: hidden; height: 400px; background: #d8ead2; }
.two-col-image img { width: 100%; height: 100%; object-fit: cover; }

/* ── VS TABLE ── */
.vs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; max-width: 860px; margin: 0 auto; }
.vs-card { border-radius: 4px; padding: 2rem; }
.vs-card.primary { background: var(--white); border: 2px solid var(--green-mid); }
.vs-card.secondary { background: var(--cream); border: 1px solid rgba(45,106,79,0.15); }
.vs-card h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--green-deep); margin-bottom: 1.2rem; padding-bottom: 0.8rem; border-bottom: 1px solid rgba(45,106,79,0.15); }
.vs-card ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.vs-card ul li { font-size: clamp(0.9rem, 0.35vw + 0.8rem, 1.05rem); color: var(--text-muted); display: flex; gap: 0.6rem; align-items: flex-start; line-height: 1.5; }
.vs-card ul li::before { content: '✓'; color: var(--green-mid); font-weight: 700; flex-shrink: 0; margin-top: 0.05rem; }

/* ── SHOP ── */
.shop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; max-width: 1100px; margin: 0 auto; align-items: stretch; }
.plant-card { background: var(--white); border: 1px solid rgba(45,106,79,0.12); border-radius: 4px; overflow: hidden; display: flex; flex-direction: column; transition: box-shadow 0.3s, transform 0.3s; }
.plant-card:hover { box-shadow: 0 16px 48px rgba(26,58,42,0.13); transform: translateY(-4px); }
.card-thumb { position: relative; height: 200px; overflow: hidden; background: #d8ead2; flex-shrink: 0; }
.card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.plant-card:hover .card-thumb img { transform: scale(1.05); }
.price-badge { position: absolute; top: 12px; left: 12px; background: var(--green-deep); color: var(--sand); padding: 0.35rem 0.75rem; border-radius: 2px; font-size: 0.78rem; font-weight: 700; }
.price-badge span { color: var(--green-light); }
.card-body { padding: 1.2rem 1.4rem; flex: 1; display: flex; flex-direction: column; min-height: 0; }
.card-name { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: var(--green-deep); margin-bottom: 0.25rem; flex-shrink: 0; }
.card-desc { font-size: clamp(0.85rem, 0.3vw + 0.75rem, 1rem); color: var(--text-muted); line-height: 1.5; margin-bottom: 1rem; flex-shrink: 0; }
.add-line { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 0.75rem; flex-shrink: 0; }
.add-line-bottom { display: flex; gap: 0.5rem; align-items: center; }
.add-line select { width: 100%; padding: 0.55rem 1.6rem 0.55rem 0.7rem; border: 1.5px solid rgba(45,106,79,0.2); border-radius: 2px; background: var(--cream); font-family: 'DM Sans', sans-serif; font-size: 0.85rem; color: var(--text-dark); appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='7' viewBox='0 0 10 7'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%232d6a4f' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.6rem center; }
.add-line select:focus { outline: none; border-color: var(--green-mid); }
.qty-stepper { display: flex; align-items: center; flex-shrink: 0; }
.qty-btn { width: 30px; height: 32px; border: 1.5px solid rgba(45,106,79,0.2); background: var(--cream); color: var(--green-mid); font-size: 1rem; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s; border-radius: 2px; flex-shrink: 0; }
.qty-btn:hover { background: rgba(45,106,79,0.1); }
.qty-num { width: 40px; height: 32px; text-align: center; border: 1.5px solid rgba(45,106,79,0.2); border-left: none; border-right: none; background: var(--cream); font-family: 'DM Sans', sans-serif; font-size: 0.9rem; font-weight: 600; color: var(--text-dark); -moz-appearance: textfield; }
.qty-num::-webkit-outer-spin-button, .qty-num::-webkit-inner-spin-button { -webkit-appearance: none; }
.qty-num:focus { outline: none; }
.btn-add-line { flex: 1; height: 32px; background: var(--green-mid); color: var(--white); border: none; border-radius: 2px; font-family: 'DM Sans', sans-serif; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; cursor: pointer; white-space: nowrap; transition: background 0.2s; }
.btn-add-line:hover { background: var(--green-deep); }
.basket-lines { flex: 1; overflow-y: auto; display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 0.6rem; min-height: 60px; max-height: 180px; }
.basket-line { display: flex; align-items: center; justify-content: space-between; background: rgba(82,183,136,0.07); border: 1px solid rgba(82,183,136,0.18); border-radius: 3px; padding: 0.45rem 0.7rem; font-size: 0.8rem; gap: 0.5rem; flex-shrink: 0; }
.basket-line-info { flex: 1; color: var(--text-dark); line-height: 1.3; min-width: 0; }
.basket-line-info span { color: var(--text-muted); font-size: 0.75rem; }
.basket-line-price { font-weight: 700; color: var(--green-mid); white-space: nowrap; }
.basket-line-remove { background: none; border: none; cursor: pointer; color: var(--text-muted); font-size: 1rem; line-height: 1; padding: 0 0.2rem; transition: color 0.2s; flex-shrink: 0; }
.basket-line-remove:hover { color: var(--red); }
.basket-empty { font-size: 0.78rem; color: var(--text-muted); font-style: italic; padding: 0.5rem 0; text-align: center; }
.card-subtotal { font-size: 0.82rem; color: var(--text-muted); border-top: 1px solid rgba(45,106,79,0.1); padding-top: 0.5rem; flex-shrink: 0; }
.card-subtotal strong { color: var(--green-mid); font-size: 0.95rem; }

/* ── ORDER SUMMARY ── */
.order-summary { max-width: 1100px; margin: 2.5rem auto 0; background: var(--white); border: 1.5px solid rgba(45,106,79,0.15); border-radius: 4px; padding: 1.6rem 2rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.order-summary-left { display: flex; flex-direction: column; gap: 0.25rem; min-width: 120px; }
.order-total-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-muted); }
.order-total-amount { font-family: 'Playfair Display', serif; font-size: 2.2rem; color: var(--green-deep); line-height: 1; transition: color 0.3s; }
.order-total-amount.below-min { color: var(--red); }
.order-progress-wrap { flex: 1; min-width: 180px; }
.order-progress-text { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 0.5rem; line-height: 1.4; }
.order-progress-text strong { color: var(--green-mid); }
.order-progress-text.met { color: var(--green-mid); font-weight: 500; }
.progress-bar-bg { height: 6px; background: rgba(45,106,79,0.1); border-radius: 99px; overflow: hidden; }
.progress-bar-fill { height: 100%; background: var(--green-light); border-radius: 99px; transition: width 0.35s ease, background 0.3s; width: 0%; }
.progress-bar-fill.met { background: var(--green-mid); }
.btn-order { padding: 0.9rem 1.8rem; background: var(--green-deep); color: var(--sand); border: none; border-radius: 2px; cursor: pointer; font-family: 'DM Sans', sans-serif; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; transition: background 0.25s, opacity 0.25s; display: flex; align-items: center; gap: 0.5rem; white-space: nowrap; }
.btn-order:disabled { opacity: 0.35; cursor: not-allowed; }
.btn-order:not(:disabled):hover { background: var(--green-mid); }
.btn-order svg { width: 17px; height: 17px; fill: currentColor; }

/* ── FAQ ── */
.faq-list { max-width: 780px; display: flex; flex-direction: column; gap: 1rem; }
.faq-item { background: var(--white); border: 1px solid rgba(45,106,79,0.12); border-radius: 4px; overflow: hidden; }
.faq-question { width: 100%; text-align: left; padding: 1.2rem 1.5rem; background: none; border: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-family: 'DM Sans', sans-serif; font-size: clamp(0.95rem, 0.4vw + 0.82rem, 1.1rem); font-weight: 600; color: var(--green-deep); gap: 1rem; }
.faq-question:hover { background: rgba(45,106,79,0.03); }
.faq-icon { font-size: 1.2rem; color: var(--green-mid); flex-shrink: 0; transition: transform 0.25s; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.25s; font-size: clamp(0.9rem, 0.35vw + 0.8rem, 1.05rem); color: var(--text-muted); line-height: 1.7; padding: 0 1.5rem; }
.faq-item.open .faq-answer { max-height: 300px; padding: 0 1.5rem 1.2rem; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* ── DELIVERY CARDS ── */
.delivery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; max-width: 860px; }
.delivery-card { background: rgba(82,183,136,0.08); border: 1px solid rgba(82,183,136,0.15); border-radius: 4px; padding: 1.8rem; transition: background 0.25s; }
.delivery-card:hover { background: rgba(82,183,136,0.14); }
.delivery-icon { width: 42px; height: 42px; background: rgba(82,183,136,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; font-size: 1.3rem; }
.delivery-card h3 { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--sand); margin-bottom: 0.4rem; }
.delivery-card p { font-size: clamp(0.88rem, 0.3vw + 0.78rem, 1rem); color: rgba(244,237,228,0.6); line-height: 1.6; }
.delivery-note { margin-top: 2.5rem; padding: 1.2rem 1.8rem; background: rgba(201,168,76,0.1); border-left: 3px solid var(--gold); border-radius: 0 4px 4px 0; max-width: 860px; }
.delivery-note p { font-size: 0.88rem; color: rgba(244,237,228,0.75); line-height: 1.6; }
.delivery-note strong { color: var(--gold); }

/* ── CTA STRIP ── */
.cta-strip { background: var(--sand); text-align: center; padding: 5rem 2rem; }
.cta-strip .section-title { margin: 0 auto 1rem; }
.cta-strip p { color: var(--text-muted); max-width: 520px; margin: 0 auto 2rem; font-size: 1rem; line-height: 1.7; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── CITY LINKS ── */
.city-links { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 2rem; }
.city-link { background: rgba(82,183,136,0.1); border: 1px solid rgba(82,183,136,0.25); border-radius: 2px; padding: 0.45rem 1rem; font-size: 0.8rem; font-weight: 600; color: var(--green-mid); text-decoration: none; transition: background 0.2s, color 0.2s; letter-spacing: 0.04em; }
.city-link:hover, .city-link.active { background: var(--green-mid); color: var(--white); }

/* ── INTERNAL LINK GRID ── */
.link-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; max-width: 1100px; margin: 0 auto; }
.link-card { background: var(--white); border: 1px solid rgba(45,106,79,0.12); border-radius: 4px; padding: 1.4rem 1.6rem; text-decoration: none; display: block; transition: box-shadow 0.2s, transform 0.2s; }
.link-card:hover { box-shadow: 0 8px 24px rgba(26,58,42,0.1); transform: translateY(-2px); }
.link-card .lc-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--green-mid); margin-bottom: 0.4rem; }
.link-card h3 { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--green-deep); margin-bottom: 0.4rem; }
.link-card p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; }
.link-card .arrow { font-size: 0.8rem; color: var(--green-mid); margin-top: 0.8rem; font-weight: 700; }

/* ── NOT HOME DEPOT ── */
.vs-hd-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; max-width: 900px; }
.vs-hd-card { border-radius: 4px; padding: 2rem 2.2rem; }
.vs-hd-card.oasis { background: rgba(82,183,136,0.1); border: 2px solid var(--green-mid); }
.vs-hd-card.hd { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); }
.vs-hd-card h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; margin-bottom: 1.2rem; padding-bottom: 0.8rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
.vs-hd-card.oasis h3 { color: var(--green-light); border-color: rgba(82,183,136,0.25); }
.vs-hd-card.hd h3 { color: rgba(244,237,228,0.5); }
.vs-hd-card ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.vs-hd-card ul li { font-size: clamp(0.9rem, 0.35vw + 0.8rem, 1.05rem); line-height: 1.5; display: flex; gap: 0.6rem; align-items: flex-start; }
.vs-hd-card.oasis ul li { color: rgba(244,237,228,0.85); }
.vs-hd-card.oasis ul li::before { content: '✓'; color: var(--green-light); font-weight: 700; flex-shrink: 0; }
.vs-hd-card.hd ul li { color: rgba(244,237,228,0.4); }
.vs-hd-card.hd ul li::before { content: '✗'; color: rgba(244,237,228,0.25); font-weight: 700; flex-shrink: 0; }

/* ── BREADCRUMB ── */
.breadcrumb { padding: 0; font-size: 0.78rem; color: rgba(244,237,228,0.5); display: flex; gap: 0.4rem; align-items: center; flex-wrap: wrap; margin-bottom: 1.2rem; }
.breadcrumb a { color: rgba(244,237,228,0.6); text-decoration: none; }
.breadcrumb a:hover { color: var(--green-light); }
.breadcrumb span { opacity: 0.4; }

/* ── REVIEWS ── */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 1100px; margin: 0 auto; }
.review-card { background: var(--white); border: 1px solid rgba(45,106,79,0.12); border-radius: 4px; padding: 1.8rem; display: flex; flex-direction: column; gap: 1rem; }
.review-stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 0.05em; }
.review-text { font-size: clamp(0.9rem, 0.35vw + 0.8rem, 1.05rem); color: var(--text-muted); line-height: 1.75; font-style: italic; border: none; padding: 0; margin: 0; flex: 1; }
.review-author { display: flex; align-items: center; gap: 0.75rem; margin-top: auto; }
.review-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--green-mid); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 700; flex-shrink: 0; }
.review-author strong { display: block; font-size: 0.88rem; color: var(--text-dark); }
.review-author span { font-size: 0.75rem; color: var(--text-muted); }

/* ── BLOG ── */
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; max-width: 900px; }
.blog-card { background: var(--white); border: 1px solid rgba(45,106,79,0.12); border-radius: 4px; padding: 1.6rem; text-decoration: none; display: block; transition: box-shadow 0.2s, transform 0.2s; }
.blog-card:hover { box-shadow: 0 8px 24px rgba(26,58,42,0.1); transform: translateY(-2px); }
.blog-tag { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--green-mid); margin-bottom: 0.5rem; }
.blog-card h3 { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--green-deep); margin-bottom: 0.5rem; line-height: 1.3; }
.blog-card p { font-size: clamp(0.85rem, 0.3vw + 0.75rem, 1rem); color: var(--text-muted); line-height: 1.6; }
.blog-card .arrow { font-size: 0.8rem; color: var(--green-mid); margin-top: 0.8rem; font-weight: 700; }
.blog-post h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.4rem, 1.5vw + 0.8rem, 2rem); color: var(--green-deep); margin: 2rem 0 0.8rem; line-height: 1.25; }
.blog-post h2:first-child { margin-top: 0; }
.blog-post p { font-size: clamp(0.95rem, 0.4vw + 0.82rem, 1.15rem); color: var(--text-muted); line-height: 1.8; margin-bottom: 1rem; }

/* ── GALLERY ── */
.gallery-grid { display: flex; flex-direction: column; gap: 3rem; max-width: 900px; }
.gallery-pair { background: var(--white); border: 1px solid rgba(45,106,79,0.12); border-radius: 4px; overflow: hidden; }
.gallery-images { display: grid; grid-template-columns: 1fr 1fr; }
.gallery-img-wrap { position: relative; height: 280px; overflow: hidden; background: #d8ead2; }
.gallery-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.gallery-label { position: absolute; top: 10px; left: 10px; background: var(--green-deep); color: var(--sand); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.3rem 0.7rem; border-radius: 2px; }
.placeholder-img { display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: 0.82rem; font-style: italic; }
.gallery-caption { padding: 1.4rem 1.8rem; }
.gallery-caption h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--green-deep); margin-bottom: 0.4rem; }
.gallery-caption p { font-size: clamp(0.88rem, 0.3vw + 0.78rem, 1rem); color: var(--text-muted); line-height: 1.6; }

/* ── REMOVAL QUOTE WIDGET ── */
.removal-quote-widget { max-width: 640px; background: var(--white); border: 1.5px solid rgba(45,106,79,0.15); border-radius: 4px; padding: 2rem; }
.rq-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-bottom: 1.2rem; }
.rq-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.2rem; }
.rq-group:last-of-type { margin-bottom: 0; }
.rq-group label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); }
.rq-input { padding: 0.65rem 0.9rem; border: 1.5px solid rgba(45,106,79,0.2); border-radius: 2px; background: var(--cream); font-family: 'DM Sans', sans-serif; font-size: 0.88rem; color: var(--text-dark); width: 100%; transition: border-color 0.2s; }
.rq-input:focus { outline: none; border-color: var(--green-mid); }
select.rq-input { appearance: none; cursor: pointer; padding-right: 1.8rem; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='7' viewBox='0 0 10 7'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%232d6a4f' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.7rem center; background-color: var(--cream); }

/* ── FOOTER ── */
.footer-main { background: var(--text-dark); color: rgba(244,237,228,0.5); padding: 3.5rem 4rem 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; max-width: 1100px; margin: 0 auto; padding-bottom: 3rem; border-bottom: 1px solid rgba(244,237,228,0.08); }
.footer-brand p { font-size: 0.82rem; line-height: 1.7; color: rgba(244,237,228,0.5); margin-top: 0.8rem; max-width: 280px; }
.footer-logo { display: inline-block; text-decoration: none; }
.footer-logo img { height: 240px; width: auto; display: block; }
.footer-contact { margin-top: 1.2rem; display: flex; flex-direction: column; gap: 0.4rem; font-size: 0.82rem; }
.footer-contact a { color: var(--green-light); text-decoration: none; font-weight: 600; }
.footer-contact a:hover { opacity: 0.8; }
.footer-social { display: flex; gap: 0.6rem; margin-top: 1.2rem; }
.footer-social a { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 50%; background: rgba(244,237,228,0.07); color: rgba(244,237,228,0.6); text-decoration: none; font-size: 0.75rem; font-weight: 700; transition: background 0.2s, color 0.2s; border: 1px solid rgba(244,237,228,0.1); }
.footer-social a:hover { background: var(--green-mid); color: var(--sand); }
.footer-col h4 { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--sand); margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col ul a { font-size: 0.8rem; color: rgba(244,237,228,0.5); text-decoration: none; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--green-light); }
.footer-bottom { max-width: 1100px; margin: 0 auto; padding: 1.5rem 0 2.5rem; display: flex; align-items: center; justify-content: space-between; font-size: 0.75rem; color: rgba(244,237,228,0.3); flex-wrap: wrap; gap: 0.5rem; }
.footer-bottom a { color: rgba(244,237,228,0.3); text-decoration: none; }
.footer-bottom a:hover { color: var(--green-light); }

/* ── MOBILE STICKY ── */
.mobile-sticky { display: none; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }

/* ── MOBILE ── */
@media (max-width: 900px) {
  nav.site-nav { padding: 0.85rem 1.2rem; top: 28px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-logo { font-size: 1.3rem; }
  .hero { padding: 84px 1.5rem 3rem; }
  .hero.hero-short { padding-top: 84px; padding-bottom: 2rem; }
  .page-section { padding: 4rem 1.5rem; }
  .two-col { grid-template-columns: 1fr; gap: 2rem; }
  .two-col.reverse { direction: ltr; }
  .two-col-image { height: 260px; }
  .shop-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .delivery-grid { grid-template-columns: 1fr; }
  .order-summary { flex-direction: column; align-items: stretch; }
  .btn-order { width: 100%; justify-content: center; }
  .vs-grid { grid-template-columns: 1fr; }
  .vs-hd-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .link-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { padding: 3rem 1.5rem 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .top-bar-inner > span:nth-child(3),
  .top-bar-inner > span:nth-child(4),
  .top-bar-inner > span:nth-child(5) { display: none; }
  .mobile-sticky { display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 200; }
  .mobile-sticky-call, .mobile-sticky-wa { flex: 1; padding: 1rem; text-align: center; font-family: 'DM Sans', sans-serif; font-size: 0.9rem; font-weight: 700; text-decoration: none; letter-spacing: 0.04em; }
  .mobile-sticky-call { background: var(--green-deep); color: var(--sand); }
  .mobile-sticky-wa { background: #25D366; color: #fff; }
  body { padding-bottom: 0; }
  .footer-main { padding-bottom: 56px; }
  .rq-row { grid-template-columns: 1fr; }
  .gallery-images { grid-template-columns: 1fr; }
  .gallery-img-wrap { height: 200px; }
  .blog-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .feature-grid { grid-template-columns: 1fr; }
  .link-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ── LARGE SCREENS ── */
@media (min-width: 1400px) {
  nav.site-nav { padding: 1.1rem 5rem; }
  .nav-links > li > a, .nav-links > li > button { font-size: 0.9rem; padding: 0.5rem 1rem; }
  .nav-logo { font-size: 1.9rem; }
  .page-section { padding: 8rem 8rem; }
  .hero { padding: 110px 10rem 4rem; }
  .two-col { gap: 8rem; }
  .two-col-image { height: 520px; }
  .content-wrap { max-width: 1200px; }
  .shop-grid { max-width: 1200px; gap: 3rem; }
  .order-summary { max-width: 1200px; }
  .link-grid { max-width: 1200px; }
}

@media (min-width: 1800px) {
  .page-section { padding: 9rem 12rem; }
  .hero { padding: 120px 14rem 4rem; }
  .content-wrap { max-width: 1600px; }
  .shop-grid { max-width: 1600px; }
  .order-summary { max-width: 1600px; }
  .link-grid { max-width: 1600px; }
}
