/* ===== Design tokens ===== */
:root {
  --teal-50:  #ecfeff;
  --teal-100: #cffafe;
  --teal-400: #22d3ee;
  --teal-500: #0ea5b7;
  --teal-600: #0891a3;
  --teal-700: #0e7490;
  --yellow:   #f3c94b;
  --yellow-deep: #e0a920;
  --badge-brown: #3d2b1f;
  --ink:      #0f1f2e;
  --ink-2:    #35505f;
  --muted:    #6b8494;
  --line:     #e3edf2;
  --bg:       #ffffff;
  --bg-soft:  #f4fafc;
  --bg-soft-2:#eef7fa;
  --white:    #ffffff;
  --shadow-sm: 0 2px 8px rgba(14,116,144,.06);
  --shadow-md: 0 12px 30px rgba(14,116,144,.10);
  --shadow-lg: 0 24px 60px rgba(14,116,144,.16);
  --radius:   18px;
  --radius-sm:12px;
  --maxw:     1160px;
  --grad:     linear-gradient(120deg, var(--teal-500), var(--teal-400));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
html, body { overflow-x: hidden; max-width: 100%; }
body {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { line-height: 1.15; margin: 0 0 .4em; letter-spacing: -.02em; }
h1 { font-size: clamp(2.3rem, 5.2vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); font-weight: 800; }
h3 { font-size: 1.22rem; font-weight: 700; }
p  { margin: 0 0 1rem; }
a  { color: var(--teal-700); text-decoration: none; }
img, svg { max-width: 100%; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.container.narrow { max-width: 820px; }
.muted { color: var(--muted); }
.grad {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-weight: 700; font-size: .98rem; cursor: pointer;
  padding: 12px 22px; border-radius: 999px; border: 1.5px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 8px 20px rgba(14,165,183,.35); }
.btn-primary:hover { box-shadow: 0 12px 28px rgba(14,165,183,.45); color:#fff; }
.btn-ghost { background: var(--white); color: var(--teal-700); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn-ghost:hover { border-color: var(--teal-400); }
.btn-lg { padding: 15px 30px; font-size: 1.02rem; }
.btn-sm { padding: 9px 18px; font-size: .9rem; }
.btn-block { display: flex; width: 100%; }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-size: 1.25rem; font-weight: 700; color: var(--ink); }
.brand-text strong { color: var(--teal-600); font-weight: 800; }
.brand-mark {
  display: grid; place-items: center; width: 46px; height: 46px;
  flex: 0 0 auto;
}
.brand-mark svg { width: 46px; height: 46px; display: block; }
.main-nav { display: flex; align-items: center; }
.nav-menu { display: flex; align-items: center; gap: 6px; list-style: none; margin: 0; padding: 0; }
.nav-menu a { color: var(--ink-2); font-weight: 600; padding: 8px 14px; border-radius: 10px; font-size: .96rem; }
.nav-menu a:hover { color: var(--teal-700); background: var(--bg-soft); }
.nav-menu a.nav-cta { color: #fff; }
.nav-menu a.nav-cta:hover { background: var(--grad); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: .25s; }

/* ===== Hero ===== */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1000px 500px at 85% -10%, var(--teal-100), transparent 60%),
    radial-gradient(700px 400px at -5% 20%, #e6fbff, transparent 55%),
    var(--bg-soft);
  padding: clamp(48px, 8vw, 96px) 0 0;
}
.hero-inner { display: grid; grid-template-columns: 1.15fr .85fr; gap: 54px; align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--teal-700); margin: 0 0 18px;
}
.eyebrow.center { justify-content: center; }
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal-500); box-shadow: 0 0 0 4px rgba(14,165,183,.18); }
.lead { font-size: 1.14rem; color: var(--ink-2); max-width: 40ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 26px 0 22px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 18px; list-style: none; padding: 0; margin: 0; }
.hero-badges li { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: .92rem; color: var(--ink-2); }
.ic { width: 20px; height: 20px; fill: none; stroke: var(--teal-500); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.hero-card { display: flex; justify-content: center; }
.quote-card {
  width: 100%; max-width: 380px; background: #fff; border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-lg); border: 1px solid var(--line);
}
.quote-card h3 { margin-bottom: 4px; }
.mini-form { display: grid; gap: 14px; margin-top: 18px; }
.mini-form label, .contact-form label, .quote-card label { display: grid; gap: 6px; font-weight: 600; font-size: .88rem; color: var(--ink-2); }
.mini-form input, .mini-form select,
.contact-form input, .contact-form select, .contact-form textarea {
  font: inherit; font-weight: 500; padding: 11px 13px; border: 1.5px solid var(--line);
  border-radius: 10px; background: var(--bg-soft); color: var(--ink); width: 100%;
}
.mini-form input:focus, .mini-form select:focus,
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--teal-400); background: #fff; box-shadow: 0 0 0 4px rgba(34,211,238,.15);
}

.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  margin-top: clamp(40px, 6vw, 72px); padding-top: 30px; padding-bottom: 30px;
  border-top: 1px solid var(--line);
}
.hero-stats div { text-align: center; }
.hero-stats strong { display: block; font-size: 1.9rem; font-weight: 800; color: var(--teal-600); }
.hero-stats span { color: var(--muted); font-size: .92rem; }

/* ===== Sections ===== */
.section { padding: clamp(56px, 8vw, 100px) 0; }
.section-alt { background: var(--bg-soft); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-sub { color: var(--ink-2); font-size: 1.05rem; }

/* ===== Cards grid ===== */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.cards.cards-3 { grid-template-columns: repeat(3, 1fr); }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--teal-100); }
.card-ic {
  width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 18px;
  background: var(--bg-soft-2);
}
.card-ic svg { width: 28px; height: 28px; fill: none; stroke: var(--teal-600); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.ic-t1 { background: #e6fbff; } .ic-t1 svg { stroke: var(--teal-600); }
.ic-t2 { background: #fff7e0; } .ic-t2 svg { stroke: #e0a920; }
.ic-t3 { background: #eafaf1; } .ic-t3 svg { stroke: #16a34a; }
.ic-t4 { background: #fdecf1; } .ic-t4 svg { stroke: #d6497f; }
.ic-t5 { background: #f0eafc; } .ic-t5 svg { stroke: #7c4ddc; }
.ic-t6 { background: #e8f0fe; } .ic-t6 svg { stroke: #3b6fd6; }
.service-card p { color: var(--ink-2); font-size: .96rem; }
.tick-list { list-style: none; padding: 0; margin: 14px 0 0; display: grid; gap: 8px; }
.tick-list li { position: relative; padding-left: 26px; font-size: .92rem; color: var(--ink-2); }
.tick-list li::before {
  content: ""; position: absolute; left: 0; top: 4px; width: 16px; height: 16px; border-radius: 50%;
  background: var(--teal-500) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/11px no-repeat;
}

/* ===== Why ===== */
.why-grid { display: grid; grid-template-columns: 1.4fr .9fr; gap: 48px; align-items: center; }
.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 26px; }
.feature { display: flex; gap: 14px; }
.feature-ic { flex: 0 0 auto; width: 44px; height: 44px; border-radius: 12px; background: #fff; display: grid; place-items: center; box-shadow: var(--shadow-sm); }
.feature-ic svg { width: 22px; height: 22px; fill: none; stroke: var(--teal-600); stroke-width: 1.6; stroke-linejoin: round; stroke-linecap: round; }
.feature h4 { margin: 2px 0 4px; font-size: 1.02rem; }
.feature p { margin: 0; font-size: .9rem; color: var(--muted); }
.guarantee-card {
  background: linear-gradient(160deg, var(--teal-600), var(--teal-700)); color: #fff;
  border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow-lg); text-align: center;
}
.guarantee-card h3 { color: #fff; }
.guarantee-card p { color: rgba(255,255,255,.85); font-size: .96rem; }
.guarantee-badge {
  width: 92px; height: 92px; margin: 0 auto 16px; border-radius: 50%; display: grid; place-items: center;
  font-size: 1.7rem; font-weight: 800; background: rgba(255,255,255,.15); border: 2px solid rgba(255,255,255,.35);
}
.guarantee-card .btn-primary { background: #fff; color: var(--teal-700); box-shadow: none; margin-top: 8px; }

/* ===== Steps ===== */
.steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; counter-reset: step; }
.steps li { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 26px; box-shadow: var(--shadow-sm); }
.step-num {
  display: grid; place-items: center; width: 46px; height: 46px; border-radius: 14px; margin-bottom: 16px;
  background: var(--grad); color: #fff; font-weight: 800; font-size: 1.2rem;
}
.steps p { margin: 0; color: var(--ink-2); font-size: .95rem; }

/* ===== Pricing ===== */
.pricing-cards { grid-template-columns: repeat(3, 1fr); }
.price-card { display: flex; flex-direction: column; text-align: center; position: relative; }
.price-card .tick-list { text-align: left; margin: 8px 0 22px; }
.price-card .btn { margin-top: auto; }
.price { font-size: 2.4rem; font-weight: 800; color: var(--ink); margin: 6px 0 14px; }
.price span { font-size: .95rem; font-weight: 600; color: var(--muted); }
.price small { font-size: 1rem; font-weight: 600; color: var(--muted); }
.price-card.featured { border-color: var(--teal-400); box-shadow: var(--shadow-md); transform: translateY(-6px); }
.tag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--grad); color: #fff; font-size: .78rem; font-weight: 700; padding: 5px 14px; border-radius: 999px; }

/* ===== Reviews ===== */
.review-card { display: flex; flex-direction: column; }
.cards .review-card { grid-column: span 1; }
#reviews .cards { grid-template-columns: repeat(3, 1fr); }
.stars { color: #f5a623; font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 10px; }
.review-card p { font-size: 1rem; color: var(--ink-2); font-style: italic; }
.review-card footer { margin-top: auto; font-weight: 700; color: var(--ink); font-style: normal; }
.reviews-note { text-align: center; margin-top: 24px; font-size: .88rem; }

/* ===== Areas ===== */
.areas-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.area-list { list-style: none; padding: 0; margin: 20px 0 26px; display: grid; gap: 10px; }
.area-list.area-cols { grid-template-columns: 1fr 1fr; column-gap: 24px; margin-bottom: 14px; }
.area-list li { padding-left: 28px; position: relative; color: var(--ink-2); font-weight: 600; }
.area-list li::before {
  content: ""; position: absolute; left: 0; top: 3px; width: 16px; height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230e7490'%3E%3Cpath d='M12 2a7 7 0 00-7 7c0 5 7 13 7 13s7-8 7-13a7 7 0 00-7-7zm0 9.5A2.5 2.5 0 1112 6.5a2.5 2.5 0 010 5z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.areas-map {
  aspect-ratio: 4/3; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-md); background: var(--bg-soft-2);
}
.areas-map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ===== FAQ ===== */
.faq { display: grid; gap: 12px; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 4px 20px; box-shadow: var(--shadow-sm); }
.faq summary { cursor: pointer; font-weight: 700; padding: 16px 0; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; font-weight: 400; color: var(--teal-500); transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin: 0 0 16px; color: var(--ink-2); font-size: .96rem; }

/* ===== Contact ===== */
.section-cta { background: linear-gradient(160deg, #0b2733, var(--ink)); color: #fff; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-copy h2 { color: #fff; }
.contact-copy > p { color: rgba(255,255,255,.78); font-size: 1.05rem; max-width: 42ch; }
.contact-list { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 18px; }
.contact-list li { display: flex; align-items: center; gap: 14px; }
.c-ic { flex: 0 0 auto; width: 46px; height: 46px; border-radius: 12px; background: rgba(255,255,255,.08); display: grid; place-items: center; }
.c-ic svg { width: 22px; height: 22px; fill: none; stroke: var(--teal-400); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.c-label { display: block; font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; color: var(--teal-400); }
.contact-list a { color: #fff; font-weight: 600; overflow-wrap: anywhere; }
.footer-col a { overflow-wrap: anywhere; }
.section-cta .muted { color: rgba(255,255,255,.5); }
.contact-form { background: #fff; color: var(--ink); }
.contact-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form label { margin-bottom: 14px; }
.form-note { margin: 12px 0 0; font-weight: 600; font-size: .92rem; min-height: 1.2em; }
.form-note.ok { color: var(--teal-700); }
.form-note.err { color: #d64545; }

/* ===== Footer ===== */
.site-footer { background: #071d26; color: rgba(255,255,255,.7); padding: 56px 0 24px; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 36px; }
.brand-light { color: #fff; margin-bottom: 14px; }
.brand-light .brand-text strong { color: var(--teal-400); }
.footer-brand p { font-size: .94rem; max-width: 34ch; }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 14px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-col a { color: rgba(255,255,255,.7); font-size: .94rem; }
.footer-col a:hover { color: var(--teal-400); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); font-size: .86rem; }
.footer-bottom p { margin: 0; }
.footer-bottom .muted { color: rgba(255,255,255,.45); }

/* ===== Floating CTA ===== */
.floating-cta {
  position: fixed; bottom: 20px; right: 20px; z-index: 40;
  background: var(--grad); color: #fff; font-weight: 700; padding: 14px 22px; border-radius: 999px;
  box-shadow: 0 10px 30px rgba(14,165,183,.5); display: none;
}
.floating-cta:hover { color: #fff; transform: translateY(-2px); }

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ===== Booking wizard ===== */
.booking { max-width: 840px; margin: 0 auto; padding: 30px; }
.book-progress { display: flex; list-style: none; margin: 0 0 6px; padding: 0; counter-reset: bstep; }
.book-progress li { flex: 1; position: relative; text-align: center; counter-increment: bstep; color: var(--muted); font-weight: 700; font-size: .82rem; }
.book-progress li span { display: block; margin-top: 8px; }
.book-progress li::before {
  content: counter(bstep); display: grid; place-items: center; width: 34px; height: 34px; margin: 0 auto;
  border-radius: 50%; background: var(--bg-soft-2); color: var(--muted); border: 2px solid var(--line); font-size: .9rem;
}
.book-progress li::after { content: ""; position: absolute; top: 17px; left: -50%; width: 100%; height: 2px; background: var(--line); z-index: -1; }
.book-progress li:first-child::after { display: none; }
.book-progress li.active::before, .book-progress li.done::before { background: var(--grad); color: #fff; border-color: transparent; }
.book-progress li.active { color: var(--teal-700); }
.book-progress li.done::before { content: "✓"; }

.book-estimate {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 6px 16px;
  margin: 22px 0 4px; padding: 14px 18px; border-radius: var(--radius-sm);
  background: var(--bg-soft-2); border: 1px solid var(--teal-100);
}
.be-label { display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); font-weight: 700; }
#be-amount { font-size: 1.6rem; font-weight: 800; color: var(--teal-700); line-height: 1.1; }
.be-note { margin: 0; font-size: .8rem; color: var(--muted); }

.book-step { border: 0; margin: 0; padding: 22px 0 0; min-inline-size: 0; }
.book-step[hidden] { display: none; }
.book-step legend { font-size: 1.25rem; font-weight: 800; color: var(--ink); padding: 0; }
.book-sub { margin: 22px 0 12px; font-size: .95rem; color: var(--ink-2); }

.opt-grid { display: grid; gap: 12px; }
.opt-grid-2 { grid-template-columns: repeat(2, 1fr); }
.opt-grid-3 { grid-template-columns: repeat(3, 1fr); }
.opt-grid-4 { grid-template-columns: repeat(4, 1fr); }
.opt-grid-6 { grid-template-columns: repeat(6, 1fr); }

.opt { position: relative; display: block; cursor: pointer; }
.opt input { position: absolute; opacity: 0; inset: 0; margin: 0; cursor: pointer; }
.opt-body {
  display: flex; flex-direction: column; gap: 3px; align-items: flex-start;
  padding: 14px 16px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: #fff; transition: border-color .15s, box-shadow .15s, background .15s; min-height: 100%;
}
.opt-body strong { font-weight: 700; font-size: .95rem; color: var(--ink); }
.opt-body em { font-style: normal; font-size: .76rem; font-weight: 700; color: var(--teal-600); }
.opt-sm .opt-body, .opt-xs .opt-body { align-items: center; text-align: center; }
.opt-xs .opt-body { padding: 12px 6px; }
.opt:hover .opt-body { border-color: var(--teal-400); }
.opt:has(input:checked) .opt-body { border-color: var(--teal-500); background: var(--teal-50); box-shadow: 0 0 0 3px rgba(14,165,183,.12); }
.opt:has(input:focus-visible) .opt-body { outline: 2px solid var(--teal-500); outline-offset: 2px; }

.book-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.book-fields label, .book-full { display: grid; gap: 6px; font-weight: 600; font-size: .88rem; color: var(--ink-2); }
.book-full { margin-top: 16px; }
.book-fields input, .book-fields select, .book-full textarea {
  font: inherit; font-weight: 500; padding: 11px 13px; border: 1.5px solid var(--line);
  border-radius: 10px; background: var(--bg-soft); color: var(--ink); width: 100%;
}
.book-fields input:focus, .book-fields select:focus, .book-full textarea:focus {
  outline: none; border-color: var(--teal-400); background: #fff; box-shadow: 0 0 0 4px rgba(34,211,238,.15);
}
.opt-tag { font-weight: 500; color: var(--muted); font-size: .78rem; }

.book-summary { margin-top: 20px; padding: 18px; border-radius: var(--radius-sm); background: var(--bg-soft); border: 1px solid var(--line); }
.book-summary h4 { margin: 0 0 10px; font-size: .95rem; }
.book-summary dl { display: grid; grid-template-columns: auto 1fr; gap: 6px 14px; margin: 0; font-size: .9rem; }
.book-summary dt { color: var(--muted); font-weight: 600; }
.book-summary dd { margin: 0; color: var(--ink); font-weight: 600; text-align: right; }
.book-summary .sum-total { grid-column: 1 / -1; display: flex; justify-content: space-between; margin-top: 8px; padding-top: 10px; border-top: 1px dashed var(--line); font-weight: 800; color: var(--teal-700); }

.book-nav { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: 26px; }

/* Calendar */
.cal { border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 16px; background: #fff; }
.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.cal-head strong { font-size: 1.05rem; }
.cal-nav { width: 38px; height: 38px; border-radius: 9px; border: 1.5px solid var(--line); background: #fff; font-size: 1.25rem; line-height: 1; cursor: pointer; color: var(--ink); }
.cal-nav:hover:not(:disabled) { border-color: var(--teal-400); }
.cal-nav:disabled { opacity: .3; cursor: not-allowed; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.cal-dow { margin-bottom: 8px; }
.cal-dow span { text-align: center; font-size: .7rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .03em; }
.cal-day { aspect-ratio: 1; border: 1.5px solid var(--line); border-radius: 10px; background: #fff; font: inherit; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--ink); }
.cal-day.empty { border: 0; background: transparent; cursor: default; }
.cal-day.off { color: var(--muted); background: var(--bg-soft); border-color: transparent; cursor: not-allowed; opacity: .6; text-decoration: line-through; }
.cal-day.avail:hover { border-color: var(--teal-400); background: var(--teal-50); }
.cal-day.selected { background: var(--grad); color: #fff; border-color: transparent; }
.cal-hint { font-size: .8rem; margin: 12px 0 0; }
.slot-picker { margin-top: 20px; }
.slot-full { color: #d64545; font-weight: 700; font-size: .74rem; font-style: normal; }
.opt:has(input:disabled) .opt-body { opacity: .5; cursor: not-allowed; background: var(--bg-soft); border-style: dashed; }
.opt input:disabled { cursor: not-allowed; }

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-card { order: -1; }
  .quote-card { max-width: 440px; }
  .cards, .cards.cards-3, #reviews .cards, .pricing-cards { grid-template-columns: repeat(2, 1fr); }
  .why-grid, .areas-grid, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: absolute; top: 72px; left: 0; right: 0; flex-direction: column; align-items: stretch;
    background: #fff; border-bottom: 1px solid var(--line); padding: 12px 22px 20px; gap: 4px;
    box-shadow: var(--shadow-md); display: none;
  }
  .nav-menu.open { display: flex; }
  .nav-menu a { padding: 12px 10px; }
  .nav-menu a.nav-cta { text-align: center; margin-top: 6px; }
  .floating-cta { display: inline-flex; }
}
@media (max-width: 560px) {
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 24px 12px; }
  .hero-stats strong { font-size: 1.3rem; }
  .cards, .cards.cards-3, #reviews .cards, .pricing-cards, .feature-list { grid-template-columns: 1fr; }
  .contact-form .row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .hero-actions .btn { flex: 1 1 100%; }
  .booking { padding: 22px 16px; }
  .opt-grid-2, .opt-grid-3, .opt-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .opt-grid-6 { grid-template-columns: repeat(3, 1fr); }
  .book-fields { grid-template-columns: 1fr; }
  .book-progress li span { font-size: .72rem; }
  .book-nav .btn { flex: 1; }
}

@media (max-width: 400px) {
  .container { padding: 0 16px; }
  .brand-text { font-size: 1.1rem; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .quote-card, .card { padding: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ===== Legal pages (privacy / terms) ===== */
.legal { padding: clamp(40px, 6vw, 80px) 0; }
.legal .container { max-width: 820px; }
.legal h1 { font-size: clamp(1.8rem, 4vw, 2.4rem); margin: 0 0 6px; }
.legal .updated { color: var(--muted); margin: 0 0 28px; font-size: .95rem; }
.legal h2 { font-size: 1.25rem; margin: 34px 0 10px; color: var(--ink); }
.legal h3 { font-size: 1.05rem; margin: 22px 0 8px; color: var(--ink); }
.legal p, .legal li { color: var(--ink-2); line-height: 1.7; }
.legal ul { padding-left: 20px; margin: 8px 0 16px; }
.legal li { margin: 4px 0; }
.legal a { color: var(--teal-700); }
.legal .todo { background: #fff7e6; border: 1px solid var(--yellow); color: #6b4e00; padding: 1px 6px; border-radius: 6px; font-size: .92em; }
.legal .intro-note { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 14px 16px; font-size: .9rem; }
.legal .back { display: inline-block; margin-top: 34px; }

/* ===== Cookie notice ===== */
.cookie-banner { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 200; max-width: 560px; margin: 0 auto; background: var(--ink); color: #fff; border-radius: var(--radius-sm); padding: 15px 18px; box-shadow: var(--shadow-lg); display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.cookie-banner p { margin: 0; font-size: .88rem; flex: 1 1 240px; color: rgba(255,255,255,.85); }
.cookie-banner a { color: var(--teal-400); }
.cookie-banner .cookie-actions { display: flex; gap: 8px; }
.cookie-banner[hidden] { display: none; }

/* ===== Form consent line ===== */
.form-consent { font-size: .82rem; color: var(--muted); margin: 10px 0 0; }
.form-consent a { color: var(--teal-700); }

/* ===== Gallery (before/after) ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.gal-item { margin: 0; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow-sm); }
.gal-item > img { width: 100%; height: 220px; object-fit: cover; display: block; }
.gal-item figcaption { padding: 11px 14px; font-size: .9rem; color: var(--ink-2); }
.gal-item figcaption span { color: var(--teal-700); font-weight: 600; }
.gal-pair { display: grid; grid-template-columns: 1fr 1fr; }
.gal-pair figcaption { grid-column: 1 / -1; }
.gal-ba { position: relative; }
.gal-ba img { width: 100%; height: 200px; object-fit: cover; display: block; }
.gal-tag { position: absolute; top: 8px; left: 8px; background: rgba(15,31,46,.82); color: #fff; font-size: .7rem; font-weight: 700; padding: 3px 9px; border-radius: 999px; text-transform: uppercase; letter-spacing: .04em; }
.gal-tag-after { background: var(--teal-600); }
