/* ==========================================================================
   Tidewater — Zahrada & Domov
   Coastal-inspired garden & home design studio
   Palette: Ocean Blue #78C7DD · Sand Beige #E6D3B8 · Ivory White #FBFBF8
            Slate Gray #70767D · Bronze Gold #C48749
   ========================================================================== */

:root {
  --ocean: #78C7DD;
  --ocean-deep: #4FA6BF;
  --sand: #E6D3B8;
  --sand-soft: #F1E7D5;
  --ivory: #FBFBF8;
  --slate: #70767D;
  --slate-ink: #3A3F45;
  --bronze: #C48749;
  --bronze-deep: #A66E36;
  --white: #ffffff;
  --shadow-sm: 0 2px 10px rgba(58, 63, 69, .08);
  --shadow-md: 0 12px 34px rgba(58, 63, 69, .12);
  --shadow-lg: 0 24px 60px rgba(58, 63, 69, .18);
  --radius: 18px;
  --radius-sm: 12px;
  --maxw: 1180px;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --font: "Poppins", "Segoe UI", system-ui, -apple-system, sans-serif;
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  font-family: var(--font);
  color: var(--slate-ink);
  background: var(--ivory);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.serif { font-family: var(--serif); }
.eyebrow {
  display: inline-block;
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--bronze-deep);
  font-weight: 600;
  margin-bottom: 14px;
}
.section { padding: 92px 0; }
.section-head { max-width: 680px; margin: 0 auto 54px; text-align: center; }
.section-head h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.12;
  color: var(--slate-ink);
  margin-bottom: 16px;
}
.section-head p { color: var(--slate); font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: .98rem;
  padding: 15px 30px;
  border-radius: 999px;
  border: 1.6px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  font-family: var(--font);
  line-height: 1;
}
.btn-primary { background: var(--bronze); color: var(--white); box-shadow: 0 10px 24px rgba(196, 135, 73, .32); }
.btn-primary:hover { background: var(--bronze-deep); transform: translateY(-2px); box-shadow: 0 16px 30px rgba(196, 135, 73, .4); }
.btn-ghost { background: transparent; color: var(--slate-ink); border-color: rgba(112, 118, 125, .35); }
.btn-ghost:hover { border-color: var(--bronze); color: var(--bronze-deep); transform: translateY(-2px); }
.btn-light { background: var(--white); color: var(--slate-ink); box-shadow: var(--shadow-sm); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: rgba(251, 251, 248, .82);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid rgba(112, 118, 125, .12);
  transition: box-shadow .3s var(--ease), background .3s var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); background: rgba(251, 251, 248, .95); }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 700; font-size: 1.15rem; color: var(--slate-ink); }
.brand svg { width: 38px; height: 38px; }
.brand span small { display: block; font-size: .64rem; letter-spacing: .24em; text-transform: uppercase; color: var(--bronze-deep); font-weight: 600; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: .95rem; font-weight: 500; color: var(--slate-ink); position: relative; padding: 4px 0; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--bronze); transition: width .28s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav-phone { font-weight: 600; color: var(--slate-ink); font-size: .95rem; white-space: nowrap; }
.nav-phone:hover { color: var(--bronze-deep); }
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.burger span { width: 26px; height: 2.4px; background: var(--slate-ink); border-radius: 2px; transition: .3s var(--ease); }
.burger.open span:nth-child(1) { transform: translateY(7.4px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7.4px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: linear-gradient(180deg, rgba(58,63,69,.42), rgba(58,63,69,.58)),
              var(--slate) url("https://images.unsplash.com/photo-1512917774080-9991f1c4c750?auto=format&fit=crop&w=1600&q=70") center/cover no-repeat;
  color: var(--white);
}
.hero-inner { max-width: 720px; }
.hero .eyebrow { color: var(--sand); }
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1.06;
  font-weight: 600;
  margin-bottom: 22px;
  text-shadow: 0 2px 26px rgba(0,0,0,.25);
}
.hero p.lead { font-size: 1.18rem; max-width: 560px; margin-bottom: 34px; color: rgba(251,251,248,.94); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 44px; }
.hero-stats { display: flex; gap: 44px; flex-wrap: wrap; }
.hero-stats .stat b { font-family: var(--serif); font-size: 2.3rem; display: block; line-height: 1; color: var(--sand); }
.hero-stats .stat span { font-size: .88rem; color: rgba(251,251,248,.85); }

/* ---------- Trust strip ---------- */
.trust { background: var(--sand-soft); padding: 26px 0; }
.trust-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 18px 46px; }
.trust-item { display: flex; align-items: center; gap: 10px; color: var(--slate-ink); font-weight: 500; font-size: .96rem; }
.trust-item svg { width: 22px; height: 22px; color: var(--bronze); flex-shrink: 0; }

/* ---------- Services ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.service-media { height: 200px; background: var(--sand); background-size: cover; background-position: center; position: relative; }
.service-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(58,63,69,.28)); }
.service-body { padding: 26px 26px 30px; display: flex; flex-direction: column; flex: 1; }
.service-body h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; margin-bottom: 10px; }
.service-body p { color: var(--slate); font-size: .96rem; margin-bottom: 18px; flex: 1; }
.service-link { font-weight: 600; color: var(--bronze-deep); display: inline-flex; align-items: center; gap: 8px; font-size: .92rem; }
.service-link svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.service-card:hover .service-link svg { transform: translateX(5px); }

/* ---------- Process ---------- */
.process { background: linear-gradient(180deg, var(--ivory), var(--sand-soft)); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step { background: var(--white); border-radius: var(--radius); padding: 32px 26px; box-shadow: var(--shadow-sm); position: relative; }
.step .num {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--ocean); color: var(--white); font-weight: 700;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem; margin-bottom: 18px;
  font-family: var(--serif);
}
.step h4 { font-size: 1.15rem; margin-bottom: 8px; }
.step p { color: var(--slate); font-size: .93rem; }

/* ---------- Feature split ---------- */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
.split-media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); background: var(--sand); min-height: 380px; }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-body h2 { font-family: var(--serif); font-size: clamp(1.9rem, 3.4vw, 2.7rem); font-weight: 600; margin-bottom: 18px; line-height: 1.14; }
.split-body p { color: var(--slate); margin-bottom: 16px; }
.check-list { display: grid; gap: 14px; margin: 24px 0 30px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; font-weight: 500; }
.check-list svg { width: 22px; height: 22px; color: var(--bronze); flex-shrink: 0; margin-top: 2px; }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 16px; }
.gallery-item { border-radius: var(--radius-sm); overflow: hidden; position: relative; background: var(--sand); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease); }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item .cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 16px;
  background: linear-gradient(transparent, rgba(58,63,69,.72)); color: var(--white);
  font-weight: 600; font-size: .95rem; opacity: 0; transform: translateY(10px);
  transition: .35s var(--ease);
}
.gallery-item:hover .cap { opacity: 1; transform: translateY(0); }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

/* ---------- Pricing ---------- */
.pricing { background: linear-gradient(180deg, var(--sand-soft), var(--ivory)); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: stretch; }
.price-card {
  background: var(--white); border-radius: var(--radius); padding: 38px 30px;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  border: 1.6px solid transparent; transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.price-card.featured { border-color: var(--bronze); box-shadow: var(--shadow-md); position: relative; }
.price-card.featured::before {
  content: "Nejoblíbenější"; position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--bronze); color: var(--white); font-size: .74rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; padding: 6px 16px; border-radius: 999px;
}
.price-card h3 { font-family: var(--serif); font-size: 1.6rem; font-weight: 600; margin-bottom: 6px; }
.price-card .desc { color: var(--slate); font-size: .92rem; margin-bottom: 22px; min-height: 42px; }
.price-tag { display: flex; align-items: baseline; gap: 6px; margin-bottom: 6px; }
.price-tag .amount { font-family: var(--serif); font-size: 2.7rem; font-weight: 600; color: var(--slate-ink); }
.price-tag .cur { font-size: 1.2rem; font-weight: 600; color: var(--slate-ink); }
.price-card .unit { color: var(--slate); font-size: .86rem; margin-bottom: 24px; }
.price-features { display: grid; gap: 12px; margin-bottom: 28px; flex: 1; }
.price-features li { display: flex; gap: 10px; align-items: flex-start; font-size: .94rem; color: var(--slate-ink); }
.price-features svg { width: 20px; height: 20px; color: var(--ocean-deep); flex-shrink: 0; margin-top: 1px; }
.price-note { text-align: center; color: var(--slate); font-size: .9rem; margin-top: 34px; max-width: 720px; margin-left: auto; margin-right: auto; }
.price-note a { color: var(--bronze-deep); font-weight: 600; }

/* ---------- Estimator ---------- */
.estimator { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-md); padding: 40px; max-width: 780px; margin: 46px auto 0; }
.estimator h3 { font-family: var(--serif); font-size: 1.7rem; font-weight: 600; text-align: center; margin-bottom: 8px; }
.estimator .sub { text-align: center; color: var(--slate); margin-bottom: 28px; font-size: .95rem; }
.est-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-bottom: 22px; }
.est-field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 8px; }
.est-field select, .est-field input[type="range"] { width: 100%; }
.est-field select {
  padding: 12px 14px; border-radius: var(--radius-sm); border: 1.5px solid rgba(112,118,125,.3);
  font-family: var(--font); font-size: .95rem; background: var(--ivory); color: var(--slate-ink);
}
.range-val { font-weight: 600; color: var(--bronze-deep); }
.est-result { text-align: center; background: var(--sand-soft); border-radius: var(--radius-sm); padding: 22px; margin-top: 6px; }
.est-result .label { font-size: .85rem; color: var(--slate); letter-spacing: .05em; text-transform: uppercase; }
.est-result .figure { font-family: var(--serif); font-size: 2.4rem; font-weight: 600; color: var(--slate-ink); margin: 4px 0 2px; }
.est-result small { color: var(--slate); font-size: .82rem; }
.est-actions { text-align: center; margin-top: 24px; }

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.testi-card { background: var(--white); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); }
.stars { color: var(--bronze); letter-spacing: 2px; margin-bottom: 14px; font-size: 1.05rem; }
.testi-card p { font-style: italic; color: var(--slate-ink); margin-bottom: 20px; font-size: 1rem; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-author .avatar {
  width: 46px; height: 46px; border-radius: 50%; background: var(--ocean);
  color: var(--white); display: flex; align-items: center; justify-content: center; font-weight: 700; font-family: var(--serif);
}
.testi-author b { display: block; font-size: .96rem; }
.testi-author span { color: var(--slate); font-size: .84rem; }

/* ---------- Contact / Form ---------- */
.contact { background: var(--slate-ink); color: var(--ivory); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: start; }
.contact-info h2 { font-family: var(--serif); font-size: clamp(1.9rem, 3.4vw, 2.7rem); font-weight: 600; margin-bottom: 16px; }
.contact-info p.intro { color: rgba(251,251,248,.8); margin-bottom: 30px; }
.contact-list { display: grid; gap: 20px; }
.contact-list li { display: flex; gap: 16px; align-items: flex-start; }
.contact-list .ic {
  width: 46px; height: 46px; border-radius: 12px; background: rgba(120,199,221,.16);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-list .ic svg { width: 22px; height: 22px; color: var(--ocean); }
.contact-list .lbl { font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; color: var(--ocean); margin-bottom: 3px; }
.contact-list a, .contact-list span.val { color: var(--ivory); font-weight: 500; }
.contact-list a:hover { color: var(--ocean); }
.hours { margin-top: 28px; font-size: .9rem; color: rgba(251,251,248,.72); }

.form-card { background: var(--ivory); color: var(--slate-ink); border-radius: var(--radius); padding: 38px; box-shadow: var(--shadow-lg); }
.form-card h3 { font-family: var(--serif); font-size: 1.6rem; font-weight: 600; margin-bottom: 6px; }
.form-card .fsub { color: var(--slate); font-size: .93rem; margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group label { display: block; font-weight: 600; font-size: .88rem; margin-bottom: 7px; }
.form-group label .req { color: var(--bronze-deep); }
.form-control {
  width: 100%; padding: 13px 15px; border-radius: var(--radius-sm);
  border: 1.5px solid rgba(112,118,125,.3); font-family: var(--font); font-size: .95rem;
  background: var(--white); color: var(--slate-ink); transition: border .2s var(--ease), box-shadow .2s var(--ease);
}
.form-control:focus { outline: none; border-color: var(--ocean); box-shadow: 0 0 0 3px rgba(120,199,221,.25); }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-error { color: #c0492f; font-size: .8rem; margin-top: 5px; display: none; }
.form-group.invalid .form-control { border-color: #c0492f; }
.form-group.invalid .form-error { display: block; }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: .86rem; color: var(--slate); margin: 6px 0 20px; }
.consent input { margin-top: 4px; accent-color: var(--bronze); width: 17px; height: 17px; flex-shrink: 0; }
.consent a { color: var(--bronze-deep); font-weight: 600; text-decoration: underline; }
.form-success {
  display: none; background: rgba(120,199,221,.16); border: 1.5px solid var(--ocean);
  border-radius: var(--radius-sm); padding: 18px; color: var(--slate-ink); font-weight: 500; margin-bottom: 18px;
}
.form-success.show { display: block; }
.form-card .btn { width: 100%; justify-content: center; }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-item { background: var(--white); border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); margin-bottom: 14px; overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 22px 24px; font-family: var(--font); font-size: 1.05rem; font-weight: 600; color: var(--slate-ink);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-q .chev { width: 22px; height: 22px; color: var(--bronze); transition: transform .3s var(--ease); flex-shrink: 0; }
.faq-item.open .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a-inner { padding: 0 24px 22px; color: var(--slate); }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, rgba(79,166,191,.92), rgba(120,199,221,.85)),
              var(--ocean) url("https://images.unsplash.com/photo-1466692476868-aef1dfb1e735?auto=format&fit=crop&w=1600&q=70") center/cover;
  color: var(--white); text-align: center; border-radius: 0;
}
.cta-band h2 { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3rem); font-weight: 600; margin-bottom: 14px; }
.cta-band p { max-width: 560px; margin: 0 auto 28px; font-size: 1.08rem; color: rgba(255,255,255,.95); }

/* ---------- Footer ---------- */
.site-footer { background: #2C3035; color: rgba(251,251,248,.78); padding: 66px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 44px; }
.footer-brand { display: flex; align-items: center; gap: 12px; color: var(--ivory); font-weight: 700; font-size: 1.15rem; margin-bottom: 16px; }
.footer-brand svg { width: 38px; height: 38px; }
.footer-col p { font-size: .92rem; margin-bottom: 8px; }
.footer-col h5 { color: var(--ivory); font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul a { font-size: .93rem; transition: color .2s var(--ease); }
.footer-col ul a:hover { color: var(--ocean); }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; font-size: .92rem; }
.footer-contact svg { width: 18px; height: 18px; color: var(--ocean); flex-shrink: 0; margin-top: 3px; }
.footer-bottom {
  border-top: 1px solid rgba(251,251,248,.12); padding-top: 24px;
  display: flex; flex-wrap: wrap; gap: 12px 26px; justify-content: space-between; align-items: center; font-size: .86rem;
}
.footer-legal { display: flex; flex-wrap: wrap; gap: 8px 20px; }
.footer-legal a:hover { color: var(--ocean); }

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 1000;
  background: var(--white); box-shadow: 0 -8px 34px rgba(58,63,69,.18);
  padding: 22px 0; transform: translateY(120%); transition: transform .45s var(--ease);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-inner { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; justify-content: space-between; }
.cookie-text { flex: 1; min-width: 280px; font-size: .92rem; color: var(--slate-ink); }
.cookie-text b { display: block; margin-bottom: 4px; font-size: 1rem; }
.cookie-text a { color: var(--bronze-deep); font-weight: 600; text-decoration: underline; }
.cookie-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cookie-actions .btn { padding: 12px 22px; font-size: .9rem; }

/* ---------- Legal pages ---------- */
.legal-hero { padding: 130px 0 50px; background: var(--sand-soft); }
.legal-hero h1 { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3rem); font-weight: 600; margin-bottom: 10px; }
.legal-hero p { color: var(--slate); }
.legal-body { padding: 60px 0 90px; }
.legal-body .container { max-width: 840px; }
.legal-body h2 { font-family: var(--serif); font-size: 1.7rem; font-weight: 600; margin: 36px 0 14px; color: var(--slate-ink); }
.legal-body h3 { font-size: 1.15rem; margin: 24px 0 10px; }
.legal-body p, .legal-body li { color: #4a4f55; margin-bottom: 12px; }
.legal-body ul { list-style: disc; padding-left: 22px; margin-bottom: 16px; }
.legal-body ul li { margin-bottom: 8px; }
.legal-body .toc { background: var(--white); border-radius: var(--radius-sm); padding: 24px 28px; box-shadow: var(--shadow-sm); margin-bottom: 34px; }
.legal-body .toc h4 { margin-bottom: 12px; }
.legal-body .toc a { color: var(--bronze-deep); }
.legal-body .toc a:hover { text-decoration: underline; }
.legal-body .updated { color: var(--slate); font-size: .9rem; font-style: italic; margin-bottom: 8px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .services-grid, .process-grid, .pricing-grid, .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .section { padding: 66px 0; }
  .nav-links {
    position: fixed; top: 74px; left: 0; right: 0; background: var(--ivory);
    flex-direction: column; align-items: flex-start; gap: 4px; padding: 18px 24px 26px;
    box-shadow: var(--shadow-md); transform: translateY(-140%); transition: transform .38s var(--ease);
    max-height: calc(100vh - 74px); overflow-y: auto;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { width: 100%; padding: 12px 0; border-bottom: 1px solid rgba(112,118,125,.1); }
  .burger { display: flex; }
  .nav-cta .nav-phone { display: none; }
  .services-grid, .process-grid, .pricing-grid, .testi-grid { grid-template-columns: 1fr; }
  .est-row, .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }
  .gallery-item.wide { grid-column: span 2; }
  .hero-stats { gap: 26px; }
  .estimator, .form-card { padding: 26px; }
  .hero { min-height: auto; }
}
@media (max-width: 460px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.wide { grid-column: span 1; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
