/* ============ TOKENS ============ */
:root {
  --blue: #1466B8;
  --blue-dark: #0E4C8A;
  --blue-soft: #EAF2FB;
  --navy: #16283D;
  --text: #263544;
  --muted: #64748B;
  --line: #E3E8EF;
  --bg: #FFFFFF;
  --bg-alt: #F6F8FB;
  --star: #F6A609;

  --sun: #F7C948;
  --ember: #F0632A;
  --ember-soft: #FF8A56;
  --sky: #2D9FD9;
  --sky-soft: #6FC6E8;

  --sans: 'Inter', system-ui, sans-serif;

  --wrap: 1120px;
  --radius: 10px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body { margin: 0; font-family: var(--sans); color: var(--text); background: var(--bg); line-height: 1.65; -webkit-font-smoothing: antialiased; }
h1, h2, h3 { margin: 0; line-height: 1.2; color: var(--navy); font-weight: 700; letter-spacing: -0.01em; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
::selection { background: var(--blue); color: #fff; }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 clamp(1rem, 4vw, 2rem); }
.section { padding: clamp(3rem, 7vw, 5rem) 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 2.5rem; }
.section-head h2 { font-size: clamp(1.7rem, 4vw, 2.4rem); }
.section-head p { color: var(--muted); font-size: 1.05rem; margin: 0.6rem 0 0; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; font-family: var(--sans); font-weight: 600; font-size: 1rem; padding: 0.8rem 1.5rem; border-radius: var(--radius); border: 1.5px solid transparent; cursor: pointer; transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease; }
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-dark); }
.btn-outline { border-color: #fff; color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,0.12); }
.btn-outline-blue { border-color: var(--blue); color: var(--blue); }
.btn-outline-blue:hover { background: var(--blue-soft); }
.btn-block { width: 100%; }

/* ============ HEADER ============ */
.site-header { position: sticky; top: 0; z-index: 50; background: #fff; border-bottom: 1px solid var(--line); }
.header-inner { display: flex; align-items: center; gap: 1.5rem; padding: 0.85rem clamp(1rem, 4vw, 2rem); max-width: var(--wrap); margin: 0 auto; }
.brand { display: flex; align-items: center; gap: 0.6rem; }
.brand-mark { width: 40px; height: 40px; flex-shrink: 0; object-fit: contain; }
.brand-name { font-weight: 800; font-size: 1.2rem; color: var(--navy); line-height: 1; }
.brand-name span { display: block; font-weight: 500; font-size: 0.62rem; letter-spacing: 0.06em; color: var(--muted); margin-top: 3px; text-transform: uppercase; }
.site-nav { margin-left: auto; display: flex; align-items: center; gap: 1.6rem; }
.site-nav a { color: var(--text); font-size: 0.95rem; font-weight: 500; }
.site-nav a:hover { color: var(--blue); }
.header-phone { display: inline-flex; align-items: center; gap: 0.4rem; background: var(--blue); color: #fff; font-weight: 600; font-size: 0.9rem; padding: 0.55rem 1.1rem; border-radius: var(--radius); white-space: nowrap; flex-shrink: 0; }
.header-phone:hover { background: var(--blue-dark); }
.phone-ico { width: 16px; height: 16px; flex-shrink: 0; }

@media (max-width: 560px) {
  .header-phone { padding: 0.6rem; border-radius: 50%; }
  .phone-text { display: none; }
  .phone-ico { width: 18px; height: 18px; }
}
@media (max-width: 860px) { .site-nav { display: none; } }

/* ============ HERO ============ */
.hero {
  background: linear-gradient(120deg, #FFF3D6 0%, #FFDDB0 22%, #FFEFE8 45%, #E4F4FB 62%, #CDEBF9 100%);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -10%;
  width: 55%;
  height: 160%;
  background: radial-gradient(circle, rgba(247,201,72,0.35), transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -35%;
  right: -10%;
  width: 55%;
  height: 160%;
  background: radial-gradient(circle, rgba(45,159,217,0.3), transparent 65%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3rem; align-items: center; padding: clamp(3rem, 7vw, 5rem) 0; }
.hero-rating { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; color: var(--muted); margin-bottom: 1.1rem; }
.hero-rating .stars { color: var(--star); letter-spacing: 1px; }
.hero-rating strong { color: var(--navy); }
.hero h1 { font-size: clamp(2.1rem, 5vw, 3.2rem); margin-bottom: 1rem; }
.hero-lede { font-size: clamp(1.05rem, 1.6vw, 1.18rem); color: var(--muted); max-width: 50ch; margin: 0 0 1.8rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.hero-visual { position: relative; aspect-ratio: 4/3; background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; box-shadow: 0 20px 40px rgba(22,40,61,0.1); }
.hero-photo { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 820px) { .hero-inner { grid-template-columns: 1fr; gap: 2rem; } .hero-visual { max-width: 420px; } }

/* ============ TRUST STRIP ============ */
.trust { border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; padding: 2.25rem 0; }
.trust-item { display: flex; align-items: center; gap: 0.9rem; }
.trust-ico { width: 46px; height: 46px; flex-shrink: 0; border-radius: 10px; background: var(--blue-soft); color: var(--blue); display: flex; align-items: center; justify-content: center; }
.trust-ico svg { width: 24px; height: 24px; }
.trust-item h3 { font-size: 1.02rem; }
.trust-item p { margin: 0; font-size: 0.88rem; color: var(--muted); }
@media (max-width: 780px) { .trust-grid { grid-template-columns: 1fr; gap: 1.25rem; } }

/* ============ HELP ============ */
.help { background: var(--bg-alt); }
.help-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.help-kicker { color: var(--blue); font-weight: 600; margin: 0 0 0.5rem; }
.help h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); margin-bottom: 1.3rem; }
.help-list { list-style: none; margin: 0 0 1.8rem; padding: 0; display: grid; gap: 0.75rem; }
.help-list li { display: flex; align-items: flex-start; gap: 0.65rem; font-size: 1.02rem; }
.help-check { flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; background: var(--blue); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 0.72rem; font-weight: 700; margin-top: 3px; }
.help-visual { aspect-ratio: 4/3; background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; box-shadow: 0 20px 40px rgba(22,40,61,0.1); }
.help-photo { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 820px) { .help-inner { grid-template-columns: 1fr; gap: 2rem; } }

/* ============ SERVICES ============ */
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.service-grid-6 { grid-template-columns: repeat(3, 1fr); }
.service-card { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; transition: box-shadow 0.18s ease, border-color 0.18s ease; }
.service-card:hover { border-color: var(--sky); box-shadow: 0 12px 28px rgba(22,40,61,0.08); }
.service-photo { aspect-ratio: 3/2; overflow: hidden; }
.service-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s ease; }
.service-card:hover .service-photo img { transform: scale(1.05); }
.service-card h3 { font-size: 1.12rem; padding: 1.1rem 1.2rem 0.5rem; }
.service-card ul { list-style: none; margin: 0; padding: 0 1.2rem 1.4rem; display: grid; gap: 0.35rem; }
.service-card li { position: relative; padding-left: 1.2rem; color: var(--muted); font-size: 0.92rem; }
.service-card li::before { content: '✓'; position: absolute; left: 0; color: var(--sky); font-weight: 700; font-size: 0.8rem; }
@media (max-width: 940px) { .service-grid, .service-grid-6 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .service-grid, .service-grid-6 { grid-template-columns: 1fr; } }

/* ============ HERO CHILL / HEAT EFFECT ============ */
.hero-fx {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}
.fx-flake {
  position: absolute;
  top: -5%;
  color: rgba(45,159,217,0.55);
  font-size: 14px;
  animation: flake-fall linear infinite;
}
@keyframes flake-fall {
  0%   { transform: translateY(0) translateX(0) rotate(0deg); opacity: 0; }
  10%  { opacity: 0.9; }
  90%  { opacity: 0.7; }
  100% { transform: translateY(110vh) translateX(var(--drift, 20px)) rotate(180deg); opacity: 0; }
}
.fx-heat {
  position: absolute;
  bottom: -5%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240,99,42,0.7), transparent 70%);
  animation: heat-rise linear infinite;
}
@keyframes heat-rise {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  15%  { opacity: 0.8; }
  85%  { opacity: 0.5; }
  100% { transform: translateY(-90vh) translateX(var(--drift, -15px)); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-fx { display: none; }
}

/* ============ MAP ============ */
.area-map { aspect-ratio: 4/3; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.area-map iframe { width: 100%; height: 100%; display: block; }
.area-address { font-weight: 600; color: var(--navy); margin: 0 0 0.6rem; }

/* ============ AREA ============ */
.area { background: var(--bg-alt); }
.area-body { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.area-map { aspect-ratio: 4/3; background: #fff; border: 1px solid var(--line); border-radius: 14px; position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.area-pin { position: relative; z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 0.4rem; font-weight: 700; color: var(--navy); }
.area-pin span { width: 18px; height: 18px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 6px rgba(20,102,184,0.15); }
.area-ring { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); border-radius: 50%; border: 1.5px solid rgba(20,102,184,0.25); }
.area-ring-1 { width: 32%; height: 32%; animation: ring 4s ease-out infinite; }
.area-ring-2 { width: 58%; height: 58%; animation: ring 4s ease-out infinite 1.3s; }
.area-ring-3 { width: 86%; height: 86%; animation: ring 4s ease-out infinite 2.6s; }
@keyframes ring { 0% { opacity: 0.7; } 100% { opacity: 0.1; } }
.area-map-note { position: absolute; bottom: 12px; font-size: 0.76rem; color: var(--muted); z-index: 3; }
.area-text h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); margin-bottom: 0.5rem; }
.area-text > p { color: var(--muted); margin: 0 0 1.4rem; }
.area-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.6rem 1rem; }
.area-list li { position: relative; padding-left: 1.3rem; font-size: 0.95rem; }
.area-list li::before { content: ''; position: absolute; left: 0; top: 0.6em; width: 7px; height: 7px; border-radius: 50%; background: var(--blue); }
@media (max-width: 820px) { .area-body { grid-template-columns: 1fr; gap: 2rem; } .area-map { max-width: 380px; width: 100%; } }
@media (max-width: 440px) { .area-list { grid-template-columns: repeat(2, 1fr); } }

/* ============ CTA BAND ============ */
.cta-band { background: var(--blue); color: #fff; text-align: center; }
.cta-band .wrap { padding-top: clamp(2.5rem, 5vw, 3.5rem); padding-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.cta-band h2 { color: #fff; font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 1.3rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }
.cta-band .btn-primary { background: #fff; color: var(--blue); }
.cta-band .btn-primary:hover { background: var(--blue-soft); }

/* ============ GALLERY ============ */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.gallery-item { aspect-ratio: 4/3; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s ease; }
.gallery-item:hover img { transform: scale(1.06); }
@media (max-width: 720px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============ TESTIMONIALS ============ */


/* ============ FAQ ============ */
.faq-list { max-width: 760px; margin: 0 auto; display: grid; gap: 0.8rem; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius); padding: 1rem 1.3rem; background: #fff; }
.faq-item summary { font-weight: 600; font-size: 1.02rem; color: var(--navy); cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; color: var(--blue); font-size: 1.4rem; font-weight: 400; transition: transform 0.2s ease; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { color: var(--muted); margin: 0.8rem 0 0; font-size: 0.96rem; }

/* ============ QUOTE ============ */
.quote { background: var(--navy); color: #fff; }
.quote-inner { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 3rem; align-items: start; }
.quote-head h2 { color: #fff; font-size: clamp(1.7rem, 4vw, 2.4rem); margin-bottom: 0.7rem; }
.quote-head p { color: #B5C2D0; margin: 0 0 1.8rem; }
.quote-contact { display: grid; gap: 0.85rem; }
.quote-line { display: flex; flex-direction: column; padding: 0.9rem 1.1rem; background: rgba(255,255,255,0.06); border-radius: var(--radius); border: 1px solid rgba(255,255,255,0.1); }
a.quote-line:hover { background: rgba(255,255,255,0.12); }
.quote-line-label { font-size: 0.75rem; color: #8FB8E4; font-weight: 600; }
.quote-line-value { font-size: 1.02rem; }
.quote-form { background: #fff; color: var(--text); border-radius: 14px; padding: 1.7rem; display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 1rem; min-width: 0; }
.quote-form-title { grid-column: 1 / -1; font-size: 1.2rem; }
.field { display: flex; flex-direction: column; gap: 0.3rem; min-width: 0; }
.field-full { grid-column: 1 / -1; min-width: 0; }
.field label { font-size: 0.85rem; font-weight: 600; color: var(--text); }
.field input, .field select, .field textarea { width: 100%; min-width: 0; box-sizing: border-box; font-family: var(--sans); font-size: 1rem; padding: 0.65rem 0.8rem; border: 1px solid var(--line); border-radius: 8px; background: #fff; color: var(--text); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue); outline: none; }
.field textarea { resize: vertical; }
.quote-consent { grid-column: 1 / -1; font-size: 0.76rem; color: var(--muted); margin: 0.2rem 0 0; }
.hp-field { position: absolute; left: -9999px; top: -9999px; }
.form-status { grid-column: 1 / -1; font-size: 0.9rem; margin: 0.3rem 0 0; min-height: 1.2em; }
.form-status.is-success { color: #1E7B3C; font-weight: 600; }
.form-status.is-error { color: #B3261E; font-weight: 600; }
@media (max-width: 820px) { .quote-inner { grid-template-columns: 1fr; gap: 2rem; } }

/* ============ FOOTER ============ */
.site-footer { background: #0E1B2A; color: #B5C2D0; padding: 2.5rem 0 2rem; }
.footer-top { display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 1.3rem; }
.footer-brand { display: inline-flex; align-items: center; gap: 0.6rem; }
.footer-brand .brand-name { color: #fff; }
.footer-contact { display: flex; flex-direction: column; gap: 0.25rem; text-align: right; font-size: 0.9rem; }
.footer-contact a:hover { color: #fff; }
.footer-tag { text-align: center; margin: 0 auto 0.7rem; max-width: 46ch; }
.footer-meta { text-align: center; font-size: 0.82rem; color: #7C8A99; margin: 0; }
@media (max-width: 620px) { .footer-top { flex-direction: column; text-align: center; } .footer-contact { text-align: center; } }
