/* Bloom — shared styles across landing + property-type pages */
:root {
  --green:    #5cb036;
  --green-d:  #4a8e2b;
  --bg:       #f5f7f4;
  --paper:    #ffffff;
  --ink:      #1a1d1a;
  --muted:    #6b7280;
  --soft:     #eef1ec;
  --soft2:    #f0f4ed;
  --line:     rgba(0,0,0,0.07);
  --bee:      #f5b400;
  --bloom:    #d63a6a;
  --display:  'Anton', 'Inter', system-ui, sans-serif;
  --sans:     'Inter', system-ui, -apple-system, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; -webkit-font-smoothing: antialiased; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--ink); font-family: var(--sans); line-height: 1.55; font-size: 16px; }
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }
button { font-family: inherit; cursor: pointer; }
img, svg { max-width: 100%; height: auto; display: block; }

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: 920px; margin: 0 auto; padding: 0 24px; }

.display { font-family: var(--display); font-weight: 400; letter-spacing: -0.01em; line-height: 0.95; text-transform: uppercase; }
.display.huge { font-size: clamp(3rem, 9.5vw, 7rem); }
.display.big  { font-size: clamp(2.5rem, 6.5vw, 5rem); }
.display.med  { font-size: clamp(1.8rem, 4vw, 2.8rem); }
.eyebrow { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--green-d); }
.eyebrow.alt { color: var(--bloom); }
.lede { font-size: 1.15rem; color: var(--muted); max-width: 620px; }

/* Topbar */
.topbar { position: sticky; top: 0; z-index: 80; background: rgba(245, 247, 244, 0.92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.topbar .row { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.brand-mark { display: flex; align-items: center; gap: 10px; }
.brand-mark .logo { width: 36px; height: 36px; flex-shrink: 0; }
.brand-mark .wm { display: flex; flex-direction: column; line-height: 1; }
.brand-mark .wm-top { font-family: var(--display); font-weight: 400; font-size: 1.05rem; letter-spacing: 0.04em; color: var(--ink); }
.brand-mark .wm-tag { font-family: var(--sans); font-size: 0.6rem; font-weight: 600; letter-spacing: 0.18em; color: var(--muted); margin-top: 3px; }
.topbar nav { display: flex; gap: 22px; align-items: center; }
.topbar nav a { font-size: 0.9rem; font-weight: 500; color: var(--ink); }
.topbar .phone { font-family: var(--display); font-size: 1.05rem; letter-spacing: 0.04em; color: var(--ink); }
.topbar .cta { background: var(--green); color: white; padding: 9px 18px; border-radius: 8px; font-weight: 600; font-size: 0.88rem; }
.topbar .cta:hover { background: var(--green-d); text-decoration: none; }
@media (max-width: 800px) { .topbar nav a:not(.phone):not(.cta) { display: none; } }

/* Hero */
.hero { position: relative; padding: 56px 0 40px; overflow: hidden; }
.hero .grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
@media (max-width: 980px) { .hero .grid { grid-template-columns: 1fr; gap: 32px; } }
.hero h1 { color: var(--ink); }
.hero h1 .plus { color: var(--green); }
.hero .pitch { margin-top: 28px; font-size: 1.2rem; line-height: 1.5; max-width: 560px; color: var(--ink); }
.hero .pitch em { color: var(--green-d); font-style: normal; font-weight: 700; }
.hero .pitch strong { font-weight: 700; color: var(--ink); }
.hero .cta-row { margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary { background: var(--green); color: white; padding: 14px 24px; border-radius: 10px; font-weight: 600; font-size: 1rem; border: 0; display: inline-flex; align-items: center; gap: 8px; }
.btn-primary:hover { background: var(--green-d); }
.btn-ghost { background: transparent; color: var(--ink); padding: 14px 22px; border-radius: 10px; font-weight: 600; font-size: 1rem; border: 1px solid var(--ink); }
.btn-ghost:hover { background: var(--ink); color: white; }

/* Type page imagery grid */
.type-imagery { width: 100%; }
.imagery-grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 12px; aspect-ratio: 1.05/1; max-width: 480px; margin-left: auto; }
.img-cell { position: relative; border-radius: 12px; overflow: hidden; background: var(--soft); }
.img-cell.big { grid-row: span 2; }
.img-cell svg { width: 100%; height: 100%; display: block; }
.img-label { position: absolute; bottom: 10px; left: 10px; background: var(--ink); color: white; font-size: 0.72rem; font-weight: 600; padding: 4px 10px; border-radius: 4px; letter-spacing: 0.04em; }

/* Banger ("WHAT'S NOT BUZZING") */
.banger { background: var(--ink); color: white; padding: 80px 0; }
.banger .quote { font-family: var(--display); font-size: clamp(2rem, 4.5vw, 3.6rem); line-height: 1.05; text-transform: uppercase; max-width: 14ch; }
.banger .quote em { color: var(--bee); font-style: normal; }
.banger .quote .hl { color: var(--green); font-style: normal; }
.banger .row { display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 900px) { .banger .row { grid-template-columns: 1fr; gap: 32px; } }
.banger p { color: rgba(255,255,255,0.76); font-size: 1.08rem; line-height: 1.55; max-width: 420px; }
.banger .pollinator-row { display: flex; gap: 18px; margin-top: 24px; flex-wrap: wrap; }
.poll-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 12px; padding: 16px; flex: 1; min-width: 110px; text-align: center; }
.poll-card .n { font-family: var(--display); font-size: 1.5rem; color: white; }
.poll-card .l { font-size: 0.72rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px; }

/* Calculator */
.calc-section { padding: 80px 0 100px; background: var(--bg); }
.calc-card { background: var(--paper); border: 1px solid var(--line); border-radius: 16px; padding: clamp(24px, 4vw, 44px); box-shadow: 0 20px 60px rgba(46, 93, 58, 0.06); }
.calc-card h2 { color: var(--ink); margin-bottom: 8px; }
.calc-card .sub { color: var(--muted); font-size: 1.02rem; margin-bottom: 32px; max-width: 640px; }

.types-label { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.types { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 32px; }
@media (max-width: 640px) { .types { grid-template-columns: 1fr; } }
.type { position: relative; padding: 20px; border: 2px solid var(--line); border-radius: 12px; background: var(--paper); cursor: pointer; transition: border-color 0.15s, background 0.15s; text-align: left; display: flex; flex-direction: column; gap: 8px; font-family: inherit; color: var(--ink); }
.type:hover { border-color: var(--green); background: var(--soft); }
.type.active { border-color: var(--green); background: var(--soft); box-shadow: 0 0 0 4px rgba(92, 176, 54, 0.12); }
.type .icon-circle { width: 44px; height: 44px; border-radius: 50%; background: var(--soft); display: grid; place-items: center; color: var(--green-d); }
.type.active .icon-circle { background: var(--green); color: white; }
.type .icon-circle svg { width: 22px; height: 22px; }
.type .t-name { font-weight: 600; font-size: 1rem; }
.type .t-desc { font-size: 0.84rem; color: var(--muted); line-height: 1.4; }
.type .check { position: absolute; top: 12px; right: 12px; width: 18px; height: 18px; border: 1.5px solid var(--line); border-radius: 50%; display: grid; place-items: center; background: white; }
.type.active .check { background: var(--green); border-color: var(--green); }
.type.active .check::after { content: ""; display: block; width: 5px; height: 9px; border-right: 2px solid white; border-bottom: 2px solid white; transform: rotate(45deg); margin-bottom: 2px; }

/* CALC GRID — size box | shape toggle | count box */
.calc-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 14px; margin-bottom: 14px; align-items: stretch; }
@media (max-width: 760px) { .calc-grid { grid-template-columns: 1fr; gap: 12px; } }
.size-box, .count-box { background: var(--soft2); border-radius: 14px; padding: 18px 20px; display: flex; flex-direction: column; gap: 14px; min-width: 0; }
.box-label { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.box-label .ico { width: 14px; height: 14px; color: var(--green); }
.sub-slider .slider-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; }
.sub-slider .slider-head .l { font-size: 0.84rem; font-weight: 600; color: var(--ink); }
.sub-slider .slider-head .v { font-family: var(--display); font-size: 1.5rem; color: var(--ink); line-height: 1; }
.sub-slider .slider-head .v .u { font-family: var(--sans); font-size: 0.78rem; font-weight: 500; color: var(--muted); margin-left: 3px; letter-spacing: 0.04em; }
.range { -webkit-appearance: none; appearance: none; width: 100%; height: 6px; background: white; border: 1px solid var(--line); border-radius: 999px; outline: none; }
.range::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 22px; height: 22px; border-radius: 50%; background: var(--green); cursor: pointer; box-shadow: 0 2px 8px rgba(0,0,0,0.18); }
.range::-moz-range-thumb { width: 22px; height: 22px; border-radius: 50%; background: var(--green); cursor: pointer; border: 0; }
.count-box .sub-slider { flex: 1; display: flex; flex-direction: column; justify-content: center; }

/* SHAPE TOGGLE */
.shape-zone { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; padding: 4px 2px; }
.shape-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.shape-toggle { background: var(--paper); border: 1px solid var(--line); border-radius: 999px; padding: 4px; display: flex; flex-direction: column; gap: 4px; }
@media (max-width: 760px) { .shape-zone { flex-direction: row; } .shape-toggle { flex-direction: row; } }
.shape-btn { padding: 8px 14px; border: 0; background: transparent; color: var(--muted); cursor: pointer; border-radius: 999px; display: flex; align-items: center; justify-content: center; gap: 6px; font-size: 0.78rem; font-weight: 600; font-family: inherit; transition: background 0.15s, color 0.15s; white-space: nowrap; }
.shape-btn:hover { color: var(--ink); }
.shape-btn.active { background: var(--green); color: white; }
.shape-btn svg { width: 14px; height: 14px; flex-shrink: 0; }

/* VISUAL PLANTER ROW */
.planter-visual { margin-bottom: 16px; padding: 18px 14px 12px; background: linear-gradient(180deg, var(--soft) 0%, white 100%); border: 1px dashed var(--rule); border-radius: 12px; height: 130px; overflow: hidden; position: relative; display: flex; flex-wrap: wrap; gap: 4px; justify-content: center; align-items: center; }
.planter-visual::before { content: attr(data-summary); position: absolute; top: 8px; right: 12px; font-size: 0.68rem; color: var(--muted); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; font-family: var(--sans); }
.planter-visual::after { content: attr(data-shape-label); position: absolute; top: 8px; left: 12px; font-size: 0.68rem; color: var(--green-d); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.planter-shape { background: linear-gradient(135deg, #5cb036 0%, #4a8e2b 60%, #2E5D3A 100%); border: 1.5px solid #1a1d1a; position: relative; flex-shrink: 0; transition: width 0.18s ease-out, height 0.18s ease-out, border-radius 0.18s; box-shadow: inset 0 -3px 0 rgba(0,0,0,0.22), 0 1px 2px rgba(0,0,0,0.1); }
.planter-shape.round { border-radius: 50%; }
.planter-shape.square { border-radius: 4px; }
.planter-shape::before { content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 42%; height: 42%; background: radial-gradient(circle at 50% 50%, #d63a6a 0%, #d63a6a 40%, #f5b400 41%, #f5b400 62%, transparent 63%); border-radius: 50%; opacity: 0.95; }
.planter-more { font-family: var(--display); font-size: 1.4rem; color: var(--green-d); align-self: center; padding: 0 10px; letter-spacing: 0.04em; }

/* ESTIMATE — normal + VIP variants */
.est .est-normal { display: contents; }
.est.vip .est-normal { display: none; }
.est.vip .est-vip-block { display: contents; }
.est .est-vip-block { display: none; }
.est.vip { background: linear-gradient(135deg, #1a1d1a 0%, #2E5D3A 100%); }
.est.vip .l-block .l { color: var(--bee); }
.est.vip .l-block .price { font-size: clamp(2rem, 4.5vw, 2.8rem); }
.est.vip .r-block { font-size: 0.96rem; line-height: 1.55; }

.est { margin-top: 28px; padding: 24px; border-radius: 14px; background: linear-gradient(135deg, var(--ink) 0%, #2a3528 100%); color: white; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: center; }
@media (max-width: 640px) { .est { grid-template-columns: 1fr; } }
.est .l-block .l { font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 6px; }
.est .l-block .price { font-family: var(--display); font-size: clamp(2.4rem, 5vw, 3.2rem); line-height: 0.95; }
.est .l-block .price .per { font-family: var(--sans); font-size: 1rem; font-weight: 400; letter-spacing: 0; color: rgba(255,255,255,0.6); margin-left: 6px; text-transform: none; }
.est .r-block { text-align: right; font-size: 0.94rem; line-height: 1.5; color: rgba(255,255,255,0.85); }
@media (max-width: 640px) { .est .r-block { text-align: left; } }
.est .r-block .billing { font-size: 0.78rem; color: rgba(255,255,255,0.6); margin-top: 4px; }

.est-note { background: var(--soft); border-left: 3px solid var(--green); padding: 16px 20px; border-radius: 0 10px 10px 0; font-size: 0.94rem; color: var(--ink); margin-top: 24px; }

.walk-cta { margin-top: 28px; display: grid; gap: 16px; }
.walk-cta .primary { background: var(--green); color: white; border: 0; padding: 18px 24px; border-radius: 12px; font-weight: 700; font-size: 1.05rem; width: 100%; display: flex; align-items: center; justify-content: center; gap: 10px; }
.walk-cta .primary:hover { background: var(--green-d); }

.contact-form { display: none; margin-top: 24px; }
.contact-form.visible { display: block; }
.cf-step { margin-bottom: 16px; }
.cf-label { display: block; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 540px) { .cf-row { grid-template-columns: 1fr; } }
.cf-input { width: 100%; padding: 14px 16px; border: 1px solid var(--line); border-radius: 10px; background: var(--paper); font-family: inherit; font-size: 1rem; color: var(--ink); }
.cf-input:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(92,176,54,0.15); }
.address-step { display: none; padding: 18px; background: var(--soft); border-radius: 10px; }
.address-step.visible { display: block; }
.address-step .progress { font-size: 0.78rem; color: var(--green-d); font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 8px; }

.success { display: none; margin-top: 18px; padding: 18px; background: var(--soft); border-left: 3px solid var(--green); border-radius: 0 10px 10px 0; font-size: 0.96rem; }
.success.visible { display: block; }

/* Standard on every */
.standard { background: var(--paper); padding: 80px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.standard .grid { display: grid; grid-template-columns: 1fr 2fr; gap: 64px; align-items: start; }
@media (max-width: 900px) { .standard .grid { grid-template-columns: 1fr; gap: 32px; } }
.standard h2 { color: var(--ink); margin-bottom: 16px; }
.standard ul { list-style: none; display: grid; gap: 18px; }
.standard li { display: flex; gap: 14px; align-items: start; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.standard li:last-child { border-bottom: 0; padding-bottom: 0; }
.standard li .ic { width: 32px; height: 32px; flex-shrink: 0; background: var(--green); color: white; border-radius: 50%; display: grid; place-items: center; font-family: var(--display); font-size: 0.9rem; }
.standard li .body strong { display: block; font-size: 1.05rem; margin-bottom: 4px; color: var(--ink); }
.standard li .body p { font-size: 0.94rem; color: var(--muted); margin: 0; }

/* How it works */
.how { background: var(--soft2); padding: 80px 0; }
.how h2 { margin-bottom: 32px; color: var(--ink); }
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 900px) { .how-grid { grid-template-columns: 1fr; } }
.beat { background: var(--paper); padding: 28px; border-radius: 14px; border: 1px solid var(--line); }
.beat .num { font-family: var(--display); font-size: 2.4rem; color: var(--green); line-height: 1; margin-bottom: 10px; }
.beat h3 { font-family: var(--sans); font-weight: 700; font-size: 1.2rem; margin-bottom: 8px; color: var(--ink); }
.beat p { font-size: 0.96rem; color: var(--muted); line-height: 1.55; }

/* Ribbon */
.ribbon { background: var(--green); color: white; padding: 22px 0; font-weight: 600; }
.ribbon .row { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 18px 36px; text-align: center; }
.ribbon .item { font-size: 0.92rem; font-weight: 500; }
.ribbon .item strong { font-weight: 700; }
.ribbon .dot { color: rgba(255,255,255,0.45); }

/* Footer */
footer { background: var(--ink); color: rgba(255,255,255,0.7); padding: 56px 0 28px; font-size: 0.94rem; }
footer .grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 36px; }
@media (max-width: 760px) { footer .grid { grid-template-columns: 1fr 1fr; gap: 24px; } }
footer h5 { color: white; font-weight: 600; font-size: 0.86rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 12px; font-family: var(--sans); }
footer ul { list-style: none; }
footer li { padding: 4px 0; }
footer a { color: rgba(255,255,255,0.7); }
footer a:hover { color: white; }
footer .legal { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 18px; font-size: 0.8rem; color: rgba(255,255,255,0.5); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
footer .brand-line { font-family: var(--display); font-size: 1.4rem; color: white; letter-spacing: 0.04em; margin-bottom: 8px; }
footer .brand-line .plus { color: var(--green); }
