/* ============================================================
   ENERGAZ.INK — "Terracotta Serif" Design System
   Warm · Authoritative · Editorial
   Fonts: Playfair Display + Outfit
   Palette: Cream · Rust · Charcoal · Warm White
   ============================================================ */

:root {
  --cream:       #f5ede0;
  --cream-dark:  #ecdcc8;
  --rust:        #c04a20;
  --rust-dark:   #9a3618;
  --rust-light:  #e86a40;
  --coal:        #1c1917;
  --coal-mid:    #292524;
  --slate:       #44403c;
  --sand:        #78716c;
  --mist:        #d6cdc4;
  --white:       #fdfaf7;
  --blue:        #1e4d8c;
  --blue-light:  #2a63b5;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-ui:      'Outfit', 'Segoe UI', sans-serif;

  --ease:   cubic-bezier(.25,.46,.45,.94);
  --t:      all .28s var(--ease);
  --shadow: 0 4px 32px rgba(28,25,23,.12);
  --shadow-lg: 0 16px 64px rgba(28,25,23,.18);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.75;
  color: var(--coal);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.15;
  color: var(--coal);
}
h4, h5, h6 { font-family: var(--font-ui); font-weight: 600; color: var(--coal); }

h1 { font-size: clamp(2.8rem, 6vw, 5.2rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 600; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); font-weight: 600; }

p { margin-bottom: 1rem; font-size: 16px; }
a { text-decoration: none; color: inherit; transition: var(--t); }
img { max-width: 100%; height: auto; display: block; }

/* ── UTILITIES ── */
.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }

.tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-ui); font-size: .72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 3px; color: var(--rust);
  margin-bottom: 16px;
}
.tag::after {
  content: '';
  width: 32px; height: 1px;
  background: var(--rust);
}

.rule { width: 40px; height: 3px; background: var(--rust); margin: 14px 0 28px; border-radius: 2px; }
.rule.center { margin: 14px auto 28px; }
.rule.white { background: rgba(255,255,255,.6); }

.lead { font-size: 18px; line-height: 1.8; color: var(--slate); }

/* ── BUTTONS ── */
.btn-rust {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 36px;
  background: var(--rust); color: var(--white);
  font-family: var(--font-ui); font-weight: 600; font-size: .95rem;
  letter-spacing: .5px;
  border: none; cursor: pointer; border-radius: 2px;
  transition: var(--t);
}
.btn-rust:hover {
  background: var(--rust-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(192,74,32,.35);
}
.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 34px;
  background: transparent; color: var(--coal);
  font-family: var(--font-ui); font-weight: 600; font-size: .95rem;
  border: 1.5px solid var(--coal); border-radius: 2px;
  cursor: pointer; transition: var(--t);
}
.btn-outline:hover { background: var(--coal); color: var(--white); }
.btn-outline.light { color: var(--white); border-color: rgba(255,255,255,.6); }
.btn-outline.light:hover { background: white; color: var(--coal); }
.btn-blue {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 36px;
  background: var(--blue); color: white;
  font-family: var(--font-ui); font-weight: 600; font-size: .95rem;
  border: none; border-radius: 2px; cursor: pointer; transition: var(--t);
}
.btn-blue:hover { background: var(--blue-light); transform: translateY(-2px); }

/* ── NAVIGATION ── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 0;
  transition: background .35s, box-shadow .35s;
  background: rgba(28,25,23,.6);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(192,74,32,.2);
}
.site-nav.scrolled {
  background: var(--white);
  box-shadow: 0 2px 24px rgba(28,25,23,.1);
  border-bottom: 1px solid var(--cream-dark);
  backdrop-filter: none;
}
.nav-inner {
  display: flex; align-items: center; height: 72px; gap: 0;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.5rem; color: var(--white);
  flex-shrink: 0; transition: color .3s;
}
.nav-logo img { height: 38px; width: auto; }
.nav-logo .dot { color: var(--rust-light); }
.site-nav.scrolled .nav-logo { color: var(--coal); }
.site-nav.scrolled .nav-logo .dot { color: var(--rust); }

.nav-links {
  display: flex; align-items: center; gap: 2px;
  list-style: none; margin-left: auto;
}
.nav-links a {
  display: block; padding: 8px 16px;
  font-size: .85rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: rgba(253,250,247,.85); border-radius: 2px;
  position: relative; transition: color .2s;
}
.nav-links a::after {
  content: ''; position: absolute;
  bottom: 4px; left: 16px; right: 16px;
  height: 1.5px; background: var(--rust-light);
  transform: scaleX(0); transform-origin: left;
  transition: transform .22s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }

/* Dark links after scroll */
.site-nav.scrolled .nav-links a { color: var(--coal); }
.site-nav.scrolled .nav-links a::after { background: var(--rust); }
.site-nav.scrolled .nav-links a:hover { color: var(--rust); }

/* Nav CTA outline on transparent, solid on scroll */
.nav-cta { margin-left: 20px; }

/* Hamburger */
.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 38px; height: 38px; cursor: pointer;
  background: none; border: 1.5px solid rgba(253,250,247,.5); border-radius: 2px;
  padding: 7px; margin-left: auto; transition: border-color .3s;
}
.nav-toggle span {
  display: block; height: 1.5px; background: rgba(253,250,247,.85);
  transition: var(--t);
}
.site-nav.scrolled .nav-toggle { border-color: var(--coal); }
.site-nav.scrolled .nav-toggle span { background: var(--coal); }
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-mobile {
  display: none; position: fixed; top: 72px; left: 0; right: 0;
  background: var(--white); z-index: 199;
  border-top: 1px solid var(--cream-dark);
  box-shadow: 0 8px 32px rgba(28,25,23,.12);
  padding: 20px 0 28px;
}
.nav-mobile.open { display: block; }
.nav-mobile ul { list-style: none; padding: 0 28px; }
.nav-mobile ul li { border-bottom: 1px solid var(--cream-dark); }
.nav-mobile ul a {
  display: block; padding: 14px 4px;
  font-size: .9rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--coal);
}
.nav-mobile ul a:hover { color: var(--rust); }
.nav-mobile .nav-mobile-cta {
  padding: 16px 28px 0;
}
.nav-mobile .nav-mobile-cta .btn-rust { width: 100%; justify-content: center; }

/* Named layout helpers used in HTML */
.hero-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.contact-page-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: start; }
.policy-layout-inner { display: grid; grid-template-columns: 240px 1fr; gap: 48px; align-items: start; }

/* ── HERO ── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; flex-direction: column; justify-content: center;
  background: var(--coal-mid);
  overflow: hidden; padding-top: 72px; padding-bottom: 80px;
}
.hero > .container { flex: 1; display: flex; align-items: center; width: 100%; }
.hero-bg-img {
  position: absolute; inset: 0;
  background: url('../images/hero-bg.png') center/cover no-repeat;
  opacity: .28;
}
/* Warm overlay gradient */
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(
    110deg,
    rgba(28,25,23,.92) 0%,
    rgba(28,25,23,.72) 55%,
    rgba(192,74,32,.15) 100%
  );
  z-index: 1;
}
/* Right vertical accent line */
.hero::after {
  content: ''; position: absolute;
  right: 36%; top: 15%; bottom: 15%;
  width: 1px; background: rgba(192,74,32,.4);
  z-index: 2;
  display: none;
}
.hero-content { position: relative; z-index: 3; }

.hero-kicker {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: .72rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 4px; color: var(--rust-light);
  margin-bottom: 22px;
}
.hero-kicker::before {
  content: ''; width: 20px; height: 1px; background: var(--rust-light);
}
.hero-title {
  color: var(--white);
  margin-bottom: 24px;
}
.hero-title em { font-style: italic; color: var(--cream); }
.hero-sub {
  font-size: 17px; color: rgba(253,250,247,.68);
  max-width: 480px; line-height: 1.82; margin-bottom: 40px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* Hero right: well image */
.hero-img-col { position: relative; z-index: 3; }
.hero-img-frame {
  position: relative;
  border: 1px solid rgba(192,74,32,.4);
}
.hero-img-frame img {
  width: 100%; display: block;
  filter: brightness(.88) saturate(.9);
}
.hero-img-badge {
  position: absolute; bottom: -1px; left: -1px;
  background: var(--rust); color: white;
  padding: 16px 24px;
  font-family: var(--font-display); font-size: .9rem;
}
.hero-img-badge strong { display: block; font-size: 2rem; line-height: 1; }

/* Hero bottom strip */
.hero-stats-strip {
  width: 100%;
  background: rgba(28,25,23,.82); backdrop-filter: blur(8px);
  border-top: 1px solid rgba(192,74,32,.3);
  z-index: 3; padding: 20px 0;
  flex-shrink: 0;
}
.hero-stats-inner {
  display: flex; gap: 0;
}
.hero-stat {
  flex: 1; padding: 0 28px;
  border-right: 1px solid rgba(192,74,32,.25);
  text-align: center;
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  font-family: var(--font-display); font-size: 2rem;
  font-weight: 700; color: white; line-height: 1;
}
.hero-stat-num sup { font-size: 1.1rem; color: var(--rust-light); }
.hero-stat-label {
  font-size: .7rem; text-transform: uppercase;
  letter-spacing: 2px; color: rgba(253,250,247,.45);
  margin-top: 4px;
}

/* ── ABOUT ── */
.about-section { background: var(--cream); padding: 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 580px; }
.about-img {
  background: url('../images/about-field.png') center/cover no-repeat;
  background-color: var(--coal-mid);
  position: relative;
}
.about-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--cream));
}
.about-text {
  padding: 72px 64px 72px 56px;
  display: flex; flex-direction: column; justify-content: center;
}
.about-text h2 { margin-bottom: 0; }
.about-text h2 span { color: var(--rust); display: block; }

.check-list { list-style: none; padding: 0; margin: 24px 0 32px; }
.check-list li {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 10px 0; border-bottom: 1px solid var(--cream-dark);
  font-size: 15px; color: var(--slate);
}
.check-list li:last-child { border-bottom: none; }
.check-list li::before {
  content: '✓';
  flex-shrink: 0; width: 22px; height: 22px;
  background: var(--rust); color: white;
  font-size: .7rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}

/* Experience badge */
.exp-badge {
  display: inline-flex; align-items: center; gap: 16px;
  background: var(--coal); color: white;
  padding: 16px 24px;
  margin-top: 8px;
}
.exp-num {
  font-family: var(--font-display); font-size: 2.4rem;
  font-weight: 700; color: var(--rust-light); line-height: 1;
}
.exp-label { font-size: .75rem; text-transform: uppercase; letter-spacing: 2px; opacity: .7; }

/* ── SERVICES ── */
.services-section { background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 56px; }
.service-card {
  background: var(--cream);
  overflow: hidden;
  transition: var(--t);
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-img {
  height: 220px; overflow: hidden;
  background: var(--coal-mid);
}
.service-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s var(--ease);
}
.service-card:hover .service-img img { transform: scale(1.06); }
.service-body { padding: 32px 28px; flex: 1; display: flex; flex-direction: column; }
.service-num {
  font-family: var(--font-display); font-size: 3.5rem;
  color: var(--mist); line-height: 1; margin-bottom: 12px;
  font-weight: 700;
}
.service-body h3 { font-size: 1.35rem; margin-bottom: 12px; }
.service-body p { font-size: 14.5px; color: var(--slate); flex: 1; margin: 0 0 22px; }
.service-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .8rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; color: var(--rust);
  border-bottom: 1.5px solid var(--rust);
  padding-bottom: 2px; align-self: flex-start;
  transition: var(--t);
}
.service-link:hover { gap: 14px; }

/* ── PROCESS ── */
.process-section {
  background: var(--coal);
  padding: 96px 0;
  position: relative; overflow: hidden;
}
.process-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(90deg,
      rgba(192,74,32,.04) 0px, rgba(192,74,32,.04) 1px,
      transparent 1px, transparent 64px
    ),
    repeating-linear-gradient(0deg,
      rgba(192,74,32,.04) 0px, rgba(192,74,32,.04) 1px,
      transparent 1px, transparent 64px
    );
}
.process-title { color: white; }
.process-title span { color: var(--rust-light); }
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; margin-top: 56px; position: relative;
}
.process-steps::before {
  content: '';
  position: absolute; top: 24px;
  left: 12.5%; right: 12.5%;
  height: 1px; background: linear-gradient(to right, var(--rust), rgba(192,74,32,.2));
}
.process-step { padding: 0 16px; text-align: center; position: relative; z-index: 1; }
.step-dot {
  width: 48px; height: 48px; margin: 0 auto 20px;
  background: var(--coal); border: 2px solid var(--rust);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 700;
  color: var(--rust-light);
}
.process-step h4 { color: white; font-size: .95rem; margin-bottom: 8px; font-family: var(--font-ui); font-weight: 600; }
.process-step p { font-size: 13.5px; color: rgba(253,250,247,.5); margin: 0; line-height: 1.65; }

/* ── WHO ── */
.who-section { background: var(--cream); }
.who-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; margin-top: 52px; }
.who-card {
  background: var(--white); padding: 40px 36px;
  border-left: 3px solid transparent;
  transition: var(--t);
}
.who-card:hover { border-left-color: var(--rust); transform: translateX(4px); }
.who-icon {
  font-size: 2rem; margin-bottom: 16px;
  color: var(--rust);
}
.who-card h4 { margin-bottom: 10px; font-size: 1.1rem; }
.who-card p { font-size: 14.5px; color: var(--slate); margin: 0; line-height: 1.7; }

/* ── STATS BAND ── */
.stats-band {
  background: var(--rust); padding: 52px 0;
  position: relative; overflow: hidden;
}
.stats-band::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -45deg, transparent, transparent 12px,
    rgba(255,255,255,.04) 12px, rgba(255,255,255,.04) 14px
  );
}
.stats-band-inner {
  display: flex; gap: 0; position: relative; z-index: 1;
}
.stat-block {
  flex: 1; text-align: center; padding: 0 20px;
  border-right: 1px solid rgba(255,255,255,.25);
}
.stat-block:last-child { border-right: none; }
.stat-block-num {
  font-family: var(--font-display); font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 700; color: white; line-height: 1; margin-bottom: 6px;
}
.stat-block-label { font-size: .7rem; text-transform: uppercase; letter-spacing: 2.5px; color: rgba(255,255,255,.75); }

/* ── GALLERY / PROOF ── */
.proof-section { background: var(--coal-mid); padding: 96px 0; }
.proof-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 300px 300px;
  gap: 8px; margin-top: 52px;
}
.proof-item {
  overflow: hidden; position: relative; cursor: pointer;
  background: var(--coal);
}
.proof-item:first-child { grid-row: 1 / 3; }
.proof-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease);
  filter: brightness(.8) saturate(.85);
}
.proof-item:hover img { transform: scale(1.05); filter: brightness(.9) saturate(1); }
.proof-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(28,25,23,.8));
  padding: 32px 18px 14px;
  color: rgba(255,255,255,.65); font-size: .72rem;
  text-transform: uppercase; letter-spacing: 2px;
  opacity: 0; transition: opacity .3s;
}
.proof-item:hover .proof-caption { opacity: 1; }
/* Rust corner accent */
.proof-item::after {
  content: ''; position: absolute;
  top: 0; left: 0; width: 0; height: 0;
  border-style: solid; border-width: 24px 24px 0 0;
  border-color: var(--rust) transparent transparent transparent;
  opacity: 0; transition: opacity .3s;
}
.proof-item:hover::after { opacity: 1; }

/* ── WHY / TESTIMONIALS ── */
.testi-section { background: var(--cream); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 52px; }
.testi-card {
  background: var(--white); padding: 36px 30px;
  border-bottom: 3px solid transparent;
  transition: var(--t);
}
.testi-card:hover { border-bottom-color: var(--rust); box-shadow: var(--shadow); }
.testi-stars {
  font-size: .75rem; color: var(--rust); letter-spacing: 3px; margin-bottom: 16px;
}
.testi-text {
  font-family: var(--font-display); font-style: italic;
  font-size: 1rem; color: var(--slate); line-height: 1.82;
  margin-bottom: 24px;
}
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-initials {
  width: 42px; height: 42px; background: var(--rust);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .85rem; color: white; flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: .9rem; color: var(--coal); }
.testi-role { font-size: .78rem; color: var(--sand); text-transform: uppercase; letter-spacing: 1px; }

/* ── ORDER FORM ── */
.order-section { background: var(--coal); padding: 96px 0; }
.order-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: start; }
.order-title { color: white; }
.order-title span { color: var(--rust-light); }
.order-subtitle { color: rgba(253,250,247,.6); font-size: 16px; margin-bottom: 36px; }
.order-benefit-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.order-benefit-list li {
  display: flex; gap: 14px; align-items: flex-start;
  color: rgba(253,250,247,.75); font-size: 15px;
}
.order-benefit-list li i { color: var(--rust-light); margin-top: 3px; width: 16px; flex-shrink: 0; }
.order-hotline {
  margin-top: 36px; padding: 22px 24px;
  border: 1px solid rgba(192,74,32,.35);
  display: flex; align-items: center; gap: 16px;
}
.order-hotline i { font-size: 1.4rem; color: var(--rust-light); }
.hotline-label { font-size: .7rem; text-transform: uppercase; letter-spacing: 2px; color: rgba(253,250,247,.4); }
.hotline-num { font-family: var(--font-display); font-size: 1.3rem; color: white; font-weight: 600; }

/* Form */
.form-card {
  background: var(--white); padding: 44px 38px;
}
.form-card h3 { margin-bottom: 28px; font-size: 1.5rem; }
.field { margin-bottom: 20px; }
.field label {
  display: block; font-size: .72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--sand); margin-bottom: 7px;
}
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 16px;
  background: var(--cream); border: 1.5px solid var(--cream-dark);
  border-radius: 1px; font-family: var(--font-ui); font-size: 15px;
  color: var(--coal); transition: border-color .2s;
  appearance: none; -webkit-appearance: none;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--rust);
  background: var(--white);
}
.field input::placeholder, .field textarea::placeholder { color: var(--mist); }
.field textarea { resize: vertical; min-height: 110px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.submit-btn { width: 100%; justify-content: center; font-size: 1rem; padding: 17px; }
.privacy-note {
  font-size: 12px; color: var(--sand); margin-top: 12px; text-align: center; line-height: 1.6;
}
.privacy-note a { color: var(--rust); }

/* ── MAP ── */
.contact-band { background: var(--cream-dark); }
.contact-band-grid { display: grid; grid-template-columns: 1fr 1.6fr; min-height: 420px; }
.contact-info-side {
  padding: 56px 48px;
  background: var(--coal); color: white;
  display: flex; flex-direction: column; justify-content: center;
}
.cinfo-row {
  display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px;
}
.cinfo-row:last-child { margin-bottom: 0; }
.cinfo-ico {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(192,74,32,.18); border: 1px solid rgba(192,74,32,.35);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--rust-light); font-size: 15px;
}
.cinfo-txt strong {
  display: block; font-size: .7rem; text-transform: uppercase;
  letter-spacing: 2px; color: var(--rust-light); margin-bottom: 3px;
}
.cinfo-txt span, .cinfo-txt a {
  font-size: 15px; color: rgba(253,250,247,.82);
}
.cinfo-txt a:hover { color: var(--rust-light); }
.schedule { margin-top: 28px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); }
.schedule-row {
  display: flex; justify-content: space-between; padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,.07); font-size: 14px;
}
.schedule-row:last-child { border: none; }
.schedule-row .day { color: rgba(255,255,255,.6); }
.schedule-row .hrs { font-family: var(--font-display); font-style: italic; color: var(--rust-light); }
.map-side iframe { display: block; width: 100%; height: 100%; min-height: 420px; border: none; }

/* ── COOKIE NOTICE ── */
#cookieBar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
  background: var(--coal); border-top: 2px solid var(--rust);
  padding: 16px 0; display: none;
}
#cookieBar p { font-size: 14px; color: rgba(253,250,247,.7); margin: 0; }
#cookieBar a { color: var(--rust-light); }

/* ── SUCCESS MODAL ── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 998;
  background: rgba(28,25,23,.75); backdrop-filter: blur(4px);
  display: none; align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--white); max-width: 440px; width: 100%;
  padding: 52px 44px; text-align: center;
  border-top: 4px solid var(--rust);
  animation: modalIn .3s var(--ease);
}
@keyframes modalIn { from { opacity: 0; transform: scale(.95) translateY(16px); } to { opacity: 1; transform: none; } }
.modal-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(192,74,32,.1); border: 2px solid var(--rust);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: var(--rust); margin: 0 auto 22px;
}
.modal-box h3 { margin-bottom: 10px; }
.modal-box p { color: var(--slate); font-size: 15px; margin-bottom: 0; }
.modal-progress { width: 100%; height: 3px; background: var(--cream-dark); margin-top: 24px; overflow: hidden; }
.modal-fill { height: 100%; background: var(--rust); width: 0; animation: fill 3.2s linear forwards; }
@keyframes fill { to { width: 100%; } }

/* ── FOOTER ── */
.site-footer {
  background: var(--coal-mid);
  border-top: 1px solid rgba(192,74,32,.2);
  padding: 64px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-logo {
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 700;
  color: white; margin-bottom: 14px; display: flex; align-items: center; gap: 8px;
}
.footer-logo img { height: 32px; }
.footer-logo .dot { color: var(--rust-light); }
.footer-desc { font-size: 14px; color: rgba(253,250,247,.5); line-height: 1.75; max-width: 240px; }
.footer-heading {
  font-size: .68rem; text-transform: uppercase; letter-spacing: 3px;
  color: var(--rust-light); margin-bottom: 16px;
  padding-bottom: 10px; border-bottom: 1px solid rgba(192,74,32,.25);
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 9px; }
.footer-links a {
  font-size: 14px; color: rgba(253,250,247,.55);
  display: flex; align-items: center; gap: 8px;
  transition: var(--t);
}
.footer-links a::before { content: '—'; font-size: .8rem; opacity: .3; flex-shrink: 0; }
.footer-links a:hover { color: white; padding-left: 4px; }
.footer-contact-row {
  display: flex; gap: 12px; align-items: flex-start;
  margin-bottom: 12px; font-size: 14px; color: rgba(253,250,247,.6);
}
.footer-contact-row i { color: var(--rust-light); margin-top: 3px; width: 14px; flex-shrink: 0; }
.footer-contact-row a:hover { color: var(--rust-light); }
.footer-bottom {
  border-top: 1px solid rgba(192,74,32,.15); margin-top: 48px;
  padding: 18px 0; display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { font-size: 12px; color: rgba(253,250,247,.3); margin: 0; }
.footer-policy-links { display: flex; gap: 20px; }
.footer-policy-links a {
  font-size: 12px; color: rgba(253,250,247,.3);
  text-transform: uppercase; letter-spacing: 1.5px; transition: var(--t);
}
.footer-policy-links a:hover { color: var(--rust-light); }

/* ── INNER PAGES ── */
.inner-hero {
  background: var(--coal-mid);
  padding: 108px 0 56px;
  position: relative; overflow: hidden;
}
.inner-hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(192,74,32,.12) 0%, transparent 60%);
}
.inner-hero-inner { position: relative; z-index: 1; }
.breadcrumb {
  display: flex; gap: 8px; align-items: center;
  font-size: .78rem; text-transform: uppercase; letter-spacing: 2px;
  color: rgba(253,250,247,.4); margin-bottom: 16px;
}
.breadcrumb a { color: var(--rust-light); }
.breadcrumb a:hover { color: white; }
.breadcrumb .sep { color: rgba(253,250,247,.2); font-size: .6rem; }
.inner-hero h1 { color: white; font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 8px; }
.inner-hero .sub { color: rgba(253,250,247,.5); font-size: 14px; font-family: monospace; letter-spacing: 1.5px; }

/* Policy layout */
.policy-layout { padding: 72px 0 88px; background: white; }
.policy-content h2 {
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 600;
  color: var(--coal); margin-top: 40px; margin-bottom: 12px;
  padding-top: 40px; border-top: 1px solid var(--cream-dark);
}
.policy-content h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.policy-content p, .policy-content li {
  font-size: 16px; color: var(--slate); line-height: 1.82;
}
.policy-content ul { padding-left: 20px; margin-bottom: 16px; }
.policy-content li { margin-bottom: 8px; }
.policy-content a { color: var(--rust); }
.policy-meta {
  background: var(--cream); border-left: 3px solid var(--rust);
  padding: 16px 20px; margin-bottom: 40px; font-size: 14px; color: var(--slate);
}
.policy-sidebar { position: sticky; top: 90px; }
.toc-box {
  background: var(--cream); padding: 24px 20px;
  border: 1px solid var(--cream-dark);
}
.toc-title {
  font-size: .68rem; text-transform: uppercase; letter-spacing: 2.5px;
  color: var(--rust); margin-bottom: 14px; padding-bottom: 10px;
  border-bottom: 1px solid var(--cream-dark);
}
.toc-list { list-style: none; padding: 0; }
.toc-list li { margin-bottom: 2px; }
.toc-list a {
  display: flex; gap: 10px; align-items: center;
  padding: 7px 8px; font-size: 13px; color: var(--slate);
  border-radius: 2px; transition: var(--t);
}
.toc-list a:hover { background: var(--cream-dark); color: var(--rust); }
.toc-num {
  flex-shrink: 0; width: 20px; height: 20px;
  background: var(--rust); color: white;
  font-size: 10px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  border-radius: 2px;
}

/* Inner map section */
.inner-map-section { background: var(--coal); padding: 72px 0; }
.inner-map-section h2 { color: white; }
.inner-map-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 32px; align-items: stretch; margin-top: 40px; }
.inner-map-info { background: var(--coal-mid); padding: 36px 28px; border: 1px solid rgba(192,74,32,.25); }
.inner-map-info h3 { color: white; font-size: 1.2rem; margin-bottom: 24px; padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,.1); }
.inner-map iframe { display: block; width: 100%; height: 100%; min-height: 360px; border: none; }

/* Thank you */
.thankyou-wrap {
  min-height: 100vh; display: flex; align-items: center;
  background: var(--cream); padding: 100px 0 80px;
}
.ty-box { max-width: 560px; margin: 0 auto; text-align: center; }
.ty-icon {
  width: 90px; height: 90px; border-radius: 50%;
  background: var(--rust); color: white; font-size: 36px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px; box-shadow: 0 8px 32px rgba(192,74,32,.35);
}
.ty-box h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.ty-box p { color: var(--slate); font-size: 17px; }
.ty-ref {
  display: inline-block; font-family: monospace; font-size: 13px;
  background: var(--coal); color: var(--rust-light);
  padding: 6px 16px; letter-spacing: 2px; margin: 12px 0;
}
.ty-actions { display: flex; gap: 14px; justify-content: center; margin-top: 32px; flex-wrap: wrap; }

/* ── RESPONSIVE ── */

/* Tablet (≤1024px) */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .order-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img { height: 360px; }
  .about-img-overlay { background: linear-gradient(to bottom, transparent 40%, var(--cream)); }
  .about-text { padding: 56px 40px; }
  .contact-band-grid { grid-template-columns: 1fr; }
  .map-side iframe { min-height: 320px; height: 320px; }
  .inner-map-grid { grid-template-columns: 1fr; }
  /* Named layout helpers */
  .hero-layout { grid-template-columns: 1fr; }
  .hero-img-col { display: none; }
  .policy-layout-inner { grid-template-columns: 1fr; }
  .policy-sidebar { display: none; }
  .contact-page-grid { grid-template-columns: 1fr; }
}

/* Mobile (≤768px) */
@media (max-width: 768px) {
  html, body { overflow-x: hidden; }

  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  /* Hero: stack properly */
  .hero { min-height: auto; padding: 100px 0 0; }
  .hero > .container { align-items: flex-start; padding: 36px 20px 40px; }
  .hero-layout { grid-template-columns: 1fr; gap: 0; }
  .hero-img-col { display: none; }
  .hero-stats-inner { flex-wrap: wrap; }
  .hero-stat { flex: 0 0 50%; border-bottom: 1px solid rgba(192,74,32,.2); border-right: 1px solid rgba(192,74,32,.2); }
  .hero-stat:nth-child(2n) { border-right: none; }
  .hero-stat:nth-child(3),
  .hero-stat:nth-child(4) { border-bottom: none; }

  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .process-steps::before { display: none; }
  .who-grid { grid-template-columns: 1fr; }
  .stats-band-inner { flex-wrap: wrap; }
  .stat-block { flex: 0 0 50%; border-bottom: 1px solid rgba(255,255,255,.12); }
  .stat-block:nth-child(3),
  .stat-block:nth-child(4) { border-bottom: none; }
  .proof-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px 200px;
  }
  .proof-item:first-child { grid-column: 1 / 3; grid-row: 1; }
  .testi-grid { grid-template-columns: 1fr; }
  .inner-map-grid { grid-template-columns: 1fr; }
  .about-text { padding: 40px 24px; }
}

/* Small mobile (≤576px) */
@media (max-width: 576px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.75rem; }
  .section { padding: 64px 0; }
  .section-sm { padding: 48px 0; }
  .container { padding: 0 18px; }

  /* Hero */
  .hero { padding-top: 88px; }
  .hero > .container { padding: 32px 18px 36px; }
  .hero-kicker { font-size: .65rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn-rust,
  .hero-actions .btn-outline { justify-content: center; text-align: center; width: 100%; }
  .hero-stat { padding: 14px 12px; }
  .hero-stat-num { font-size: 1.5rem; }

  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 24px; }
  .proof-grid { grid-template-columns: 1fr; grid-template-rows: repeat(4, 200px); }
  .proof-item:first-child { grid-column: 1; }
  .form-card { padding: 28px 20px; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-policy-links { justify-content: center; }
  .contact-info-side { padding: 36px 20px; }
  .inner-hero { padding: 96px 0 44px; }
  .policy-layout { padding: 48px 0 64px; }
  .order-grid { gap: 28px; }
  .order-hotline { flex-direction: column; gap: 8px; }
  .testi-card { padding: 26px 20px; }
  .footer-contact-row { font-size: 14px; }

  /* Stats band 2x2 */
  .stat-block { flex: 0 0 50%; padding: 16px 12px; }
  .stat-block-num { font-size: 2.2rem; }
}
