/* =========================================================
   Thermopolis SK — Plumbing · Heating · Air Conditioning
   Design system: "Comfort in Every Season"
   Palette rooted in the logo (forest green + hot amber + ice blue)
   ========================================================= */

:root {
  /* Brand */
  --green-900: #0f3a29;
  --green-800: #14513a;
  --green-700: #1b6a4b;
  --green-600: #23855e;
  --green-500: #2fa072;
  --green-300: #7bc9a3;

  --amber-500: #f5a02e;
  --amber-400: #f9b654;
  --amber-100: #fce7c8;

  --ice-600: #3f92c4;
  --ice-500: #57a7d6;
  --ice-300: #a9d6ee;
  --ice-100: #e2f1fa;

  /* Neutrals */
  --cream: #f7f5ef;
  --cream-2: #efece2;
  --paper: #ffffff;
  --ink: #16221c;
  --ink-soft: #43524a;
  --ink-mute: #6f7d74;
  --line: rgba(22, 34, 28, 0.10);
  --line-strong: rgba(22, 34, 28, 0.18);

  /* Effects */
  --shadow-sm: 0 1px 2px rgba(15, 58, 41, 0.06), 0 2px 8px rgba(15, 58, 41, 0.05);
  --shadow-md: 0 10px 30px -12px rgba(15, 58, 41, 0.22);
  --shadow-lg: 0 30px 70px -30px rgba(15, 58, 41, 0.40);
  --radius: 18px;
  --radius-lg: 26px;
  --radius-sm: 12px;

  --maxw: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --font-display: "Sora", "Montserrat", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

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

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.08; font-weight: 700; letter-spacing: -0.02em; color: var(--green-900); text-wrap: balance; }

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

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

section { position: relative; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 600; font-size: 0.98rem;
  padding: 15px 26px; border-radius: 999px; cursor: pointer;
  border: 1px solid transparent; transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, color .3s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--green-800); color: #fff; box-shadow: 0 12px 26px -12px rgba(20, 81, 58, .8); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 34px -14px rgba(20, 81, 58, .85); background: var(--green-700); }
.btn-amber { background: var(--amber-500); color: #3a2405; box-shadow: 0 12px 26px -12px rgba(245, 160, 46, .8); }
.btn-amber:hover { transform: translateY(-3px); background: var(--amber-400); }
.btn-ghost { background: transparent; color: var(--green-900); border-color: var(--line-strong); }
.btn-ghost:hover { transform: translateY(-3px); border-color: var(--green-700); background: rgba(255,255,255,.6); }
.btn-light { background: #fff; color: var(--green-900); box-shadow: var(--shadow-sm); }
.btn-light:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Header ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .4s var(--ease), box-shadow .4s, padding .4s var(--ease), border-color .4s;
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(247, 245, 239, 0.82);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px -18px rgba(15,58,41,.5);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 84px; transition: height .4s var(--ease); }
.header.scrolled .nav { height: 70px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 46px; width: auto; transition: height .4s var(--ease); }
.header.scrolled .brand img { height: 40px; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text b { font-family: var(--font-display); font-weight: 700; font-size: 1.12rem; color: var(--green-900); letter-spacing: -0.01em; }
.brand-text span { font-size: 0.64rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-mute); margin-top: 4px; font-weight: 600; }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: 0.94rem; font-weight: 500; color: var(--ink-soft); position: relative; transition: color .25s; white-space: nowrap; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: var(--amber-500); border-radius: 2px; transition: width .3s var(--ease); }
.nav-links a:hover { color: var(--green-900); }
.nav-links a:hover::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 14px; }

.lang-toggle {
  display: inline-flex; align-items: center; border: 1px solid var(--line-strong);
  border-radius: 999px; overflow: hidden; background: rgba(255,255,255,.5); font-family: var(--font-display);
}
.lang-toggle button {
  border: none; background: transparent; padding: 8px 12px; font-size: 0.78rem; font-weight: 700;
  color: var(--ink-mute); cursor: pointer; letter-spacing: .04em; transition: color .25s, background .25s;
}
.lang-toggle button.active { background: var(--green-800); color: #fff; }

.nav-cta { display: inline-flex; }

.burger { display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px; border: 1px solid var(--line-strong); border-radius: 12px; background: rgba(255,255,255,.5); cursor: pointer; align-items: center; justify-content: center; }
.burger span { width: 20px; height: 2px; background: var(--green-900); border-radius: 2px; transition: transform .3s, opacity .3s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99; background: var(--cream);
  transform: translateX(100%); transition: transform .45s var(--ease);
  display: flex; flex-direction: column; padding: 108px 26px 40px; gap: 6px;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--green-900); padding: 14px 0; border-bottom: 1px solid var(--line); }
.mobile-menu .m-actions { margin-top: auto; display: flex; flex-direction: column; gap: 12px; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 150px 0 90px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg::before {
  content: ""; position: absolute; width: 640px; height: 640px; right: -180px; top: -160px;
  background: radial-gradient(circle at center, rgba(245,160,46,.28), rgba(245,160,46,0) 62%);
  filter: blur(6px); animation: floatWarm 14s ease-in-out infinite;
}
.hero-bg::after {
  content: ""; position: absolute; width: 620px; height: 620px; left: -200px; bottom: -220px;
  background: radial-gradient(circle at center, rgba(87,167,214,.30), rgba(87,167,214,0) 62%);
  filter: blur(6px); animation: floatCool 16s ease-in-out infinite;
}
@keyframes floatWarm { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-24px,30px)} }
@keyframes floatCool { 0%,100%{transform:translate(0,0)} 50%{transform:translate(26px,-26px)} }

.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-display); font-weight: 600;
  font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green-700);
  background: rgba(47,160,114,.10); border: 1px solid rgba(47,160,114,.22); padding: 8px 15px; border-radius: 999px;
}
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green-500); box-shadow: 0 0 0 4px rgba(47,160,114,.18); }

.hero h1 { font-size: clamp(1.75rem, 4.1vw, 3.2rem); margin: 24px 0 20px; line-height: 1.15; text-wrap: initial; }
.hero h1 .ln { display: block; }
.hero h1 .warm { color: var(--amber-500); }
.hero h1 .cool { color: var(--ice-600); }
.hero-lead { font-size: 1.14rem; color: var(--ink-soft); max-width: 540px; margin-bottom: 34px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }

.hero-trust { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.hero-trust .ht { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--ink-soft); font-weight: 500; }
.hero-trust .ht svg { width: 20px; height: 20px; color: var(--green-600); flex: none; }

/* Hero visual */
.hero-visual { position: relative; }
.hero-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5; background: linear-gradient(150deg, var(--green-800), var(--green-900));
}
.hero-card img { width: 100%; height: 100%; object-fit: cover; }
.hero-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,58,41,.55), transparent 46%); }

.hero-badge {
  position: absolute; z-index: 3; background: rgba(255,255,255,.92); backdrop-filter: blur(6px);
  border-radius: 16px; padding: 14px 18px; box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 12px;
}
.hero-badge .ico { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; flex: none; }
.hero-badge .ico svg { width: 22px; height: 22px; }
.hero-badge b { display: block; font-family: var(--font-display); font-size: 1.02rem; color: var(--green-900); }
.hero-badge small { color: var(--ink-mute); font-size: 0.78rem; }
.hero-badge.warm { top: 26px; left: -26px; animation: bob 6s ease-in-out infinite; }
.hero-badge.warm .ico { background: var(--amber-100); color: #c8790f; }
.hero-badge.cool { bottom: 30px; right: -22px; animation: bob 6s ease-in-out infinite .8s; }
.hero-badge.cool .ico { background: var(--ice-100); color: var(--ice-600); }
@keyframes bob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }

/* ---------- Marquee / logos strip ---------- */
.strip { background: var(--green-900); color: #dff0e7; padding: 20px 0; overflow: hidden; }
.strip-track { display: flex; gap: 60px; white-space: nowrap; animation: scrollX 26s linear infinite; width: max-content; }
.strip-item { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; letter-spacing: .01em; opacity: .92; }
.strip-item svg { width: 20px; height: 20px; color: var(--green-300); }
@keyframes scrollX { to { transform: translateX(-50%); } }

/* ---------- Section head ---------- */
.section { padding: 96px 0; }
.section-head { max-width: 680px; margin-bottom: 54px; }
.section-head.center { margin-inline: auto; text-align: center; }
.kicker { font-family: var(--font-display); font-weight: 700; font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--green-600); display: block; margin-bottom: 16px; }
.section-head h2 { font-size: clamp(1.9rem, 3.8vw, 2.9rem); margin-bottom: 18px; }
.section-head p { font-size: 1.08rem; color: var(--ink-soft); }

/* ---------- About ---------- */
.about { background: var(--paper); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-media { position: relative; }
.about-media .frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 5/6; }
.about-media .frame img { width: 100%; height: 100%; object-fit: cover; }
.about-media .leaf { position: absolute; inset: -18px -18px auto auto; width: 120px; height: 120px; border-radius: 50%; background: conic-gradient(from 120deg, var(--green-500), var(--ice-500), var(--amber-500), var(--green-500)); filter: blur(2px); opacity: .55; z-index: -1; animation: spin 22s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.stat-row { display: flex; gap: 34px; margin-top: 34px; flex-wrap: wrap; }
.stat b { font-family: var(--font-display); font-size: 2.1rem; color: var(--green-800); display: block; letter-spacing: -.02em; }
.stat span { font-size: 0.9rem; color: var(--ink-mute); }
.about-list { margin-top: 28px; display: grid; gap: 14px; }
.about-list li { display: flex; gap: 13px; align-items: flex-start; color: var(--ink-soft); }
.about-list li .ck { flex: none; width: 24px; height: 24px; border-radius: 7px; background: rgba(47,160,114,.14); color: var(--green-600); display: grid; place-items: center; margin-top: 2px; }
.about-list li .ck svg { width: 14px; height: 14px; }

/* ---------- Services ---------- */
.services { background: linear-gradient(180deg, var(--cream), var(--cream-2)); }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.svc-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 28px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s; position: relative; overflow: hidden;
}
.svc-card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; background: var(--accent, var(--green-500)); transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease); }
.svc-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.svc-card:hover::before { transform: scaleX(1); }
.svc-ico { width: 58px; height: 58px; border-radius: 15px; display: grid; place-items: center; margin-bottom: 20px; background: var(--accent-bg, rgba(47,160,114,.12)); color: var(--accent, var(--green-600)); }
.svc-ico svg { width: 28px; height: 28px; }
.svc-card h3 { font-size: 1.28rem; margin-bottom: 10px; }
.svc-card p { color: var(--ink-soft); font-size: 0.96rem; margin-bottom: 16px; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.svc-tags span { font-size: 0.76rem; font-weight: 500; color: var(--ink-soft); background: var(--cream-2); border: 1px solid var(--line); padding: 5px 11px; border-radius: 999px; }

.svc-warm { --accent: var(--amber-500); --accent-bg: var(--amber-100); }
.svc-cool { --accent: var(--ice-600); --accent-bg: var(--ice-100); }
.svc-green { --accent: var(--green-600); --accent-bg: rgba(47,160,114,.12); }

/* ---------- Why choose ---------- */
.why { background: var(--green-900); color: #e9f4ee; overflow: hidden; }
.why .kicker { color: var(--green-300); }
.why h2 { color: #fff; }
.why .section-head p { color: rgba(233,244,238,.78); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.why-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.10); border-radius: var(--radius); padding: 28px 24px; transition: background .35s, transform .35s var(--ease), border-color .35s; }
.why-card:hover { background: rgba(255,255,255,.08); transform: translateY(-6px); border-color: rgba(123,201,163,.4); }
.why-card .n { font-family: var(--font-display); font-size: 0.9rem; font-weight: 700; color: var(--green-300); letter-spacing: .1em; }
.why-card .wico { width: 50px; height: 50px; margin: 16px 0 18px; border-radius: 13px; background: rgba(123,201,163,.14); color: var(--green-300); display: grid; place-items: center; }
.why-card .wico svg { width: 26px; height: 26px; }
.why-card h3 { color: #fff; font-size: 1.16rem; margin-bottom: 9px; }
.why-card p { color: rgba(233,244,238,.72); font-size: 0.92rem; }

/* ---------- Process ---------- */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; padding-top: 20px; }
.step .num { font-family: var(--font-display); font-size: 3.2rem; font-weight: 700; color: var(--green-300); opacity: .5; line-height: 1; letter-spacing: -.04em; }
.step h3 { font-size: 1.18rem; margin: 12px 0 8px; }
.step p { color: var(--ink-soft); font-size: 0.95rem; }
.step::after { content: ""; position: absolute; top: 34px; left: 62px; right: -11px; height: 2px; background: repeating-linear-gradient(90deg, var(--line-strong) 0 6px, transparent 6px 12px); }
.step:last-child::after { display: none; }

/* ---------- Gallery ---------- */
.gallery { background: var(--paper); }
.gal-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 16px; }
.gal-item { position: relative; border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow-sm); }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gal-item:hover img { transform: scale(1.07); }
.gal-item .cap { position: absolute; left: 14px; bottom: 12px; color: #fff; font-family: var(--font-display); font-weight: 600; font-size: 0.95rem; text-shadow: 0 2px 12px rgba(0,0,0,.5); z-index: 2; }
.gal-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,58,41,.6), transparent 55%); }
.gal-wide { grid-column: span 2; }
.gal-tall { grid-row: span 2; }

/* ---------- Testimonials ---------- */
.reviews { background: linear-gradient(180deg, var(--cream-2), var(--cream)); }
.rev-top { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; flex-wrap: wrap; margin-bottom: 46px; }
.rating-badge { display: flex; align-items: center; gap: 16px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 22px; box-shadow: var(--shadow-sm); }
.rating-badge .g { font-family: var(--font-display); font-weight: 700; font-size: 1.9rem; color: var(--green-900); }
.stars { display: flex; gap: 3px; color: var(--amber-500); }
.stars svg { width: 18px; height: 18px; }
.rating-badge small { color: var(--ink-mute); font-size: 0.82rem; }
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.rev-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); transition: transform .4s var(--ease), box-shadow .4s; }
.rev-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.rev-card .stars { margin-bottom: 14px; }
.rev-card p { color: var(--ink-soft); font-size: 0.98rem; margin-bottom: 20px; }
.rev-who { display: flex; align-items: center; gap: 12px; }
.rev-who .av { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; color: #fff; font-size: 1.05rem; }
.rev-who b { font-family: var(--font-display); font-size: 0.98rem; color: var(--green-900); display: block; }
.rev-who span { font-size: 0.8rem; color: var(--ink-mute); }

/* ---------- Contact ---------- */
.contact { background: var(--paper); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 46px; align-items: stretch; }
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.ci-card { display: flex; gap: 16px; align-items: flex-start; padding: 20px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--cream); transition: border-color .3s, transform .3s var(--ease); }
.ci-card:hover { border-color: var(--green-300); transform: translateY(-3px); }
.ci-card .ci-ico { flex: none; width: 48px; height: 48px; border-radius: 13px; background: rgba(47,160,114,.12); color: var(--green-700); display: grid; place-items: center; }
.ci-card .ci-ico svg { width: 22px; height: 22px; }
.ci-card b { font-family: var(--font-display); font-size: 1.02rem; color: var(--green-900); }
.ci-card a, .ci-card p { color: var(--ink-soft); font-size: 0.96rem; }
.ci-card a:hover { color: var(--green-700); }
.hours-row { display: flex; justify-content: space-between; font-size: 0.9rem; padding: 5px 0; border-bottom: 1px dashed var(--line); }
.hours-row:last-child { border-bottom: none; }
.hours-row .d { color: var(--ink-soft); }
.hours-row .h { font-weight: 600; color: var(--green-900); }
.hours-row.closed .h { color: var(--ink-mute); font-weight: 500; }
.open-pill { display: inline-flex; align-items: center; gap: 7px; font-size: 0.78rem; font-weight: 600; color: var(--green-700); background: rgba(47,160,114,.12); padding: 4px 11px; border-radius: 999px; margin-left: auto; }
.open-pill .live { width: 8px; height: 8px; border-radius: 50%; background: var(--green-500); box-shadow: 0 0 0 0 rgba(47,160,114,.5); animation: pulse 2s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(47,160,114,.5)} 70%{box-shadow:0 0 0 8px rgba(47,160,114,0)} 100%{box-shadow:0 0 0 0 rgba(47,160,114,0)} }

.form-card { background: linear-gradient(160deg, var(--green-800), var(--green-900)); border-radius: var(--radius-lg); padding: 38px; color: #fff; box-shadow: var(--shadow-lg); }
.form-card h3 { color: #fff; font-size: 1.5rem; margin-bottom: 8px; }
.form-card > p { color: rgba(233,244,238,.75); font-size: 0.96rem; margin-bottom: 26px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 0.82rem; font-weight: 600; margin-bottom: 7px; color: rgba(233,244,238,.9); font-family: var(--font-display); letter-spacing: .01em; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border-radius: 12px; border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.07); color: #fff; font-family: var(--font-body); font-size: 0.96rem; transition: border-color .25s, background .25s;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(233,244,238,.45); }
.field select { color: #fff; }
.field select option { color: #16221c; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--green-300); background: rgba(255,255,255,.12); }
.field textarea { resize: vertical; min-height: 96px; }
.field-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-note { font-size: 0.8rem; color: rgba(233,244,238,.6); margin-top: 14px; text-align: center; }
.form-ok { display: none; background: rgba(123,201,163,.16); border: 1px solid rgba(123,201,163,.4); border-radius: 12px; padding: 14px; font-size: 0.9rem; margin-bottom: 16px; }
.form-ok.show { display: block; }

/* ---------- Map ---------- */
.map-wrap { margin-top: 26px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.map-wrap iframe { width: 100%; height: 300px; border: 0; display: block; filter: saturate(.9); }

/* ---------- Final CTA ---------- */
.cta-band { padding: 84px 0; background: linear-gradient(120deg, var(--amber-500), var(--green-600) 55%, var(--ice-600)); position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 20% 20%, rgba(255,255,255,.22), transparent 40%); }
.cta-inner { position: relative; z-index: 2; text-align: center; max-width: 720px; margin-inline: auto; }
.cta-inner h2 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.cta-inner p { color: rgba(255,255,255,.92); font-size: 1.12rem; margin-bottom: 30px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.footer { background: #0c2c20; color: #b9d2c6; padding: 64px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
.footer .brand-text b { color: #fff; }
.footer p { font-size: 0.92rem; color: #90ab9f; margin-top: 16px; max-width: 300px; }
.footer h4 { color: #fff; font-family: var(--font-display); font-size: 0.86rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 18px; }
.footer ul { display: grid; gap: 11px; }
.footer ul a { font-size: 0.93rem; color: #a9c4b8; transition: color .25s, padding-left .25s; }
.footer ul a:hover { color: #fff; padding-left: 4px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.10); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-size: 0.85rem; color: #7f9a8e; }
.footer-bottom a { color: #a9c4b8; }
.footer-bottom a:hover { color: #fff; }

/* ---------- Floating call (mobile) ---------- */
.fab { position: fixed; right: 18px; bottom: 18px; z-index: 90; display: none; }
.fab a { width: 58px; height: 58px; border-radius: 50%; background: var(--amber-500); color: #3a2405; display: grid; place-items: center; box-shadow: 0 12px 30px -8px rgba(245,160,46,.8); animation: bob 3s ease-in-out infinite; }
.fab a svg { width: 26px; height: 26px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { max-width: 460px; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .step::after { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 44px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .gal-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }
}
@media (max-width: 720px) {
  .lang-toggle { display: inline-flex; }
  .section { padding: 68px 0; }
  .svc-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .rev-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .field-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .gal-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }
  .gal-wide { grid-column: span 2; }
  .gal-tall { grid-row: span 1; }
  .fab { display: block; }
  .hero { padding-top: 128px; }
  .form-card { padding: 26px; }
  .stat-row { gap: 24px; }
}
@media (max-width: 420px) {
  .brand-text span { display: none; }
  .hero-badge.warm { left: 0; }
  .hero-badge.cool { right: 0; }
}

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