/* Shared stylesheet. Each brand sets palette and fonts through CSS variables in <head>. */
*, *::before, *::after { box-sizing: border-box; }
:root {
  --bg: #f7f4ec; --surface: #ffffff; --ink: #1d2320; --muted: #5d6660; --line: #e2ddd0;
  --brand: #1f4d3a; --brand-ink: #ffffff; --accent: #e8b04a; --soft: #e9efe6; --radius: 14px;
  --font-head: Georgia, serif; --font-body: system-ui, -apple-system, "Segoe UI", sans-serif;
  --shadow: 0 1px 2px rgba(20,30,25,.06), 0 8px 24px rgba(20,30,25,.07);
}
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--ink); font-family: var(--font-body); font-size: 17px; line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: var(--brand); }
h1, h2, h3 { font-family: var(--font-head); line-height: 1.15; margin: 0 0 .5em; letter-spacing: -.01em; }
h1 { font-size: clamp(2.2rem, 5.2vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1em; }
.wrap { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 20px; }
.eyebrow { font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--brand); margin-bottom: .8em; display: block; }
.lede { font-size: 1.15rem; color: var(--muted); max-width: 38em; }
section { padding: 84px 0; }
.alt { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
@media (max-width: 700px) { section { padding: 60px 0; } }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5em; padding: .85em 1.4em; border-radius: 999px; border: 2px solid var(--brand); background: var(--brand); color: var(--brand-ink); font: 600 1rem var(--font-body); text-decoration: none; cursor: pointer; transition: transform .15s ease, box-shadow .15s ease; }
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
.btn.ghost { background: transparent; color: var(--brand); }
.btn.block { width: 100%; }
.btn[disabled] { opacity: .55; cursor: not-allowed; transform: none; box-shadow: none; }

.topbar { background: var(--brand); color: var(--brand-ink); font-size: .86rem; text-align: center; padding: 8px 16px; }
.topbar strong { color: var(--accent); }
header.site { position: sticky; top: 0; z-index: 20; background: color-mix(in srgb, var(--bg) 92%, transparent); backdrop-filter: saturate(1.4) blur(10px); -webkit-backdrop-filter: saturate(1.4) blur(10px); border-bottom: 1px solid var(--line); }
header.site .wrap { display: flex; align-items: center; justify-content: space-between; height: 70px; gap: 16px; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); min-width: 0; }
.logo svg { width: 38px; height: 38px; flex: none; }
.logo .name { font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; line-height: 1.05; }
.logo .name small { display: block; font-family: var(--font-body); font-weight: 600; font-size: .64rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-top: 3px; }
nav.main { display: flex; gap: 26px; align-items: center; }
nav.main a { color: var(--ink); text-decoration: none; font-weight: 500; font-size: .95rem; }
nav.main a:hover { color: var(--brand); }
nav.main .btn { padding: .6em 1.1em; font-size: .92rem; color: var(--brand-ink); white-space: nowrap; }
@media (max-width: 860px) { nav.main a:not(.btn) { display: none; } }
@media (max-width: 420px) { .logo .name small { display: none; } nav.main .btn { padding: .55em .9em; } }

.hero { padding: 60px 0 72px; }
.hero .grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.hero .art { border-radius: 22px; overflow: hidden; box-shadow: var(--shadow); background: var(--soft); aspect-ratio: 5 / 4; }
.hero .art svg { width: 100%; height: 100%; }
.hero .points { list-style: none; padding: 0; margin: 22px 0 8px; display: grid; gap: 8px; }
.hero .points li { display: flex; gap: 10px; align-items: flex-start; }
.hero .points li::before { content: ""; flex: none; width: 20px; height: 20px; margin-top: 4px; border-radius: 50%; background: var(--brand) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M5.5 10.5l3 3 6-7' fill='none' stroke='white' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 100% no-repeat; }
@media (max-width: 900px) { .hero .grid { grid-template-columns: 1fr; gap: 28px; } .hero .art { order: -1; aspect-ratio: 16 / 9; } .hero { padding-top: 28px; } }

.estimator { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); margin-top: 22px; max-width: 540px; }
.estimator h3 { font-family: var(--font-body); font-size: .95rem; font-weight: 700; margin-bottom: 14px; }
.estimator .row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 12px; }
.estimator .total { display: flex; justify-content: space-between; align-items: center; margin-top: 4px; padding-top: 14px; border-top: 1px dashed var(--line); gap: 12px; flex-wrap: wrap; }
.estimator .total .amt { font-family: var(--font-head); font-size: 2rem; font-weight: 700; color: var(--brand); line-height: 1.1; }
.estimator .total .note { color: var(--muted); font-size: .86rem; }

label.f { display: block; font-size: .85rem; font-weight: 600; margin-bottom: 6px; color: var(--ink); }
.field { margin-bottom: 14px; min-width: 0; }
input[type=text], input[type=email], input[type=tel], input[type=date], input[type=number], select, textarea { width: 100%; font: inherit; font-size: 1rem; color: var(--ink); background: var(--bg); border: 1.5px solid var(--line); border-radius: 10px; padding: .65em .8em; min-height: 46px; }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand) 18%, transparent); }
textarea { min-height: 88px; resize: vertical; }
.check { display: flex; gap: 10px; align-items: flex-start; font-size: .86rem; color: var(--muted); }
.check input { margin-top: 3px; width: 18px; height: 18px; flex: none; accent-color: var(--brand); }
.err { color: #b3261e; font-size: .88rem; margin-top: 6px; min-height: 1.3em; }

.cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; margin-top: 36px; }
.cards.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.alt .card { background: var(--bg); }
.card .num { font-family: var(--font-head); font-size: 1.6rem; color: var(--accent); font-weight: 700; display: block; margin-bottom: 6px; }
.card p { color: var(--muted); margin: 0; font-size: .97rem; }
.icon { width: 46px; height: 46px; border-radius: 12px; background: var(--soft); display: grid; place-items: center; margin-bottom: 14px; color: var(--brand); }
.icon svg { width: 24px; height: 24px; }
@media (max-width: 960px) { .cards, .cards.four { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 600px) { .cards, .cards.four { grid-template-columns: 1fr; } }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: 28px; } }
.ticks { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.ticks li { padding-left: 30px; position: relative; }
.ticks li::before { content: ""; position: absolute; left: 0; top: 6px; width: 16px; height: 16px; border-radius: 5px; background: var(--accent); }
.ticks li strong { display: block; }
.ticks li span { color: var(--muted); font-size: .95rem; }

.plans { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; margin-top: 40px; align-items: stretch; }
.plan { background: var(--surface); border: 1.5px solid var(--line); border-radius: 18px; padding: 28px; display: flex; flex-direction: column; position: relative; }
.plan.featured { border-color: var(--brand); box-shadow: var(--shadow); }
.plan .tag { position: absolute; top: -12px; left: 24px; background: var(--brand); color: var(--brand-ink); font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; }
.plan h3 { font-family: var(--font-body); font-size: 1.05rem; }
.plan .price { font-family: var(--font-head); font-size: 2.3rem; font-weight: 700; color: var(--ink); margin: 2px 0 2px; line-height: 1.1; }
.plan .price small { font-family: var(--font-body); font-size: .9rem; color: var(--muted); font-weight: 500; }
.plan .sub { color: var(--muted); font-size: .92rem; margin-bottom: 16px; }
.plan ul { list-style: none; padding: 0; margin: 0 0 22px; display: grid; gap: 8px; font-size: .95rem; flex: 1; align-content: start; }
.plan ul li { padding-left: 22px; position: relative; }
.plan ul li::before { content: "✓"; position: absolute; left: 0; color: var(--brand); font-weight: 700; }
@media (max-width: 900px) { .plans { grid-template-columns: 1fr; } }
.fineprint { color: var(--muted); font-size: .88rem; margin-top: 18px; }

.chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 0; }
.chip { background: var(--surface); border: 1px solid var(--line); border-radius: 999px; padding: 6px 14px; font-size: .9rem; }
.map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 4 / 3; background: var(--soft); }
.map iframe { width: 100%; height: 100%; border: 0; display: block; }

.calendar { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; margin-top: 32px; }
.calendar .season { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; }
.alt .calendar .season { background: var(--bg); }
.calendar .season h3 { font-size: 1.1rem; margin-bottom: 2px; }
.calendar .season .months { font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); font-weight: 700; margin-bottom: 10px; display: block; }
.calendar .season ul { padding-left: 18px; margin: 0; color: var(--muted); font-size: .93rem; }
@media (max-width: 900px) { .calendar { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .calendar { grid-template-columns: 1fr; } }

.faq { max-width: 820px; margin-top: 28px; }
.faq details { border-bottom: 1px solid var(--line); padding: 18px 0; }
.faq summary { cursor: pointer; font-weight: 600; font-size: 1.05rem; list-style: none; display: flex; justify-content: space-between; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--brand); font-size: 1.4rem; line-height: 1; }
.faq details[open] summary::after { content: "–"; }
.faq details p { color: var(--muted); margin: 12px 0 0; }

.booking-shell { display: grid; grid-template-columns: .8fr 1.2fr; gap: 44px; align-items: start; }
@media (max-width: 900px) { .booking-shell { grid-template-columns: 1fr; gap: 24px; } }
.booker { background: var(--surface); border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow); padding: 28px; min-width: 0; }
@media (max-width: 520px) { .booker { padding: 20px 16px; } }
.steps-bar { display: flex; gap: 8px; margin-bottom: 22px; }
.steps-bar span { flex: 1; height: 5px; border-radius: 99px; background: var(--line); transition: background .2s; }
.steps-bar span.on { background: var(--brand); }
.step-title { font-family: var(--font-body); font-weight: 700; font-size: 1.1rem; margin-bottom: 16px; }
.opts { display: grid; gap: 10px; margin-bottom: 18px; }
.opt { display: flex; gap: 12px; align-items: flex-start; border: 1.5px solid var(--line); border-radius: 12px; padding: 14px; cursor: pointer; background: var(--bg); }
.opt input { margin-top: 4px; accent-color: var(--brand); width: 18px; height: 18px; flex: none; }
.opt .t { font-weight: 600; }
.opt .d { color: var(--muted); font-size: .9rem; }
.opt .p { margin-left: auto; font-weight: 700; color: var(--brand); white-space: nowrap; padding-left: 8px; }
.opt:has(input:checked) { border-color: var(--brand); background: color-mix(in srgb, var(--brand) 6%, var(--surface)); }
.grid2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 14px; }
@media (max-width: 520px) { .grid2, .estimator .row { grid-template-columns: 1fr; } }
.nav-row { display: flex; justify-content: space-between; gap: 12px; margin-top: 8px; }
.summary-box { background: var(--soft); border-radius: 12px; padding: 14px 16px; font-size: .93rem; margin-bottom: 16px; }
.summary-box strong { color: var(--brand); }
.done { text-align: center; padding: 24px 6px; }
.done .big { width: 64px; height: 64px; border-radius: 50%; background: var(--brand); display: grid; place-items: center; margin: 0 auto 16px; }
.hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.aside-list { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 16px; }
.aside-list li { display: flex; gap: 12px; }
.aside-list li b { display: grid; place-items: center; flex: none; width: 30px; height: 30px; border-radius: 50%; background: var(--soft); color: var(--brand); font-size: .9rem; }

footer.site { background: var(--ink); color: rgba(255,255,255,.72); padding: 56px 0 34px; font-size: .93rem; }
footer.site a { color: inherit; }
footer.site .cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; }
footer.site h4 { color: #fff; font-family: var(--font-body); font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; margin: 0 0 12px; }
footer.site ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 6px; }
footer.site .fname { font-family: var(--font-head); color: #fff; font-size: 1.3rem; margin-bottom: 8px; }
footer.site .legal { margin-top: 38px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: .84rem; }
@media (max-width: 760px) { footer.site .cols { grid-template-columns: 1fr; } }

.mobile-cta { display: none; }
@media (max-width: 700px) {
  .mobile-cta { display: block; position: fixed; left: 16px; right: 16px; bottom: 14px; z-index: 30; transition: opacity .2s, transform .2s; }
  .mobile-cta.hide { opacity: 0; transform: translateY(20px); pointer-events: none; }
  .mobile-cta .btn { width: 100%; box-shadow: 0 10px 30px rgba(0,0,0,.25); }
  body { padding-bottom: 80px; }
}
.legal-page { max-width: 760px; padding: 56px 20px 80px; margin: 0 auto; }
.legal-page h2 { font-size: 1.3rem; margin-top: 1.6em; }
.billing-note { background: var(--soft); border-radius: 10px; padding: 12px 14px; color: var(--ink); }

/* Human touches: photos, plain numbered steps, owner's note */
.hero .art.photo { background: none; aspect-ratio: 4 / 5; transform: rotate(.6deg); }
.hero .art.photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 900px) { .hero .art.photo { aspect-ratio: 3 / 2; transform: none; } }
.detail-photo { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 16px; margin-top: 26px; box-shadow: var(--shadow); }
.howto { list-style: none; counter-reset: s; padding: 0; margin: 34px 0 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px 40px; }
.howto li { counter-increment: s; position: relative; padding-top: 50px; }
.howto li::before { content: counter(s); position: absolute; top: 0; left: 0; width: 36px; height: 36px; border-radius: 50%; border: 2px solid var(--accent); color: var(--ink); font: 700 1rem var(--font-body); display: grid; place-items: center; }
.howto h3 { font-size: 1.15rem; margin-bottom: .35em; }
.howto p { color: var(--muted); margin: 0; }
@media (max-width: 800px) { .howto { grid-template-columns: 1fr; } .howto li { padding: 0 0 0 54px; } }
.note-split { align-items: center; }
.owner-note { background: #fffdf7; border: 1px solid var(--line); border-radius: 6px; padding: 34px 34px 28px; box-shadow: 0 1px 0 var(--line), 0 14px 30px rgba(0,0,0,.06); transform: rotate(-.8deg); font-size: 1.02rem; }
.owner-note .note-hi { font-family: 'Caveat', cursive; font-size: 1.9rem; line-height: 1.1; color: var(--brand); margin-bottom: .5em; }
.owner-note .sig { font-family: 'Caveat', cursive; font-size: 2.1rem; color: var(--ink); margin: .4em 0 0; line-height: 1; }
.owner-note .sig-role { color: var(--muted); font-size: .9rem; margin: 4px 0 0; }
@media (max-width: 860px) { .owner-note { transform: none; } }
.promises { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 18px; }
.promises li { display: flex; gap: 14px; align-items: flex-start; }
.promises .picon { flex: none; width: 36px; height: 36px; border-radius: 10px; background: var(--soft); color: var(--brand); display: grid; place-items: center; }
.promises .picon svg { width: 20px; height: 20px; }
.promises strong { display: block; }
.promises span span, .promises div > span { color: var(--muted); font-size: .96rem; }
nav.main a.tel { font-weight: 600; color: var(--brand); }
.review-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; margin-top: 28px; }
.review { margin: 0; background: var(--bg); border: 1px solid var(--line); border-radius: 14px; padding: 22px; }
.review blockquote { margin: 0 0 14px; font-size: 1.02rem; }
.review figcaption span { display: block; color: var(--muted); font-size: .85rem; }
