/* ============ UTTS Service — design tokens ============ */
:root{
  --navy: #1e2c52;
  --navy-deep: #14182a;
  --navy-soft: #2a3a64;
  --flame: #d8442a;
  --flame-deep: #b8371f;
  --water: #2b7bbd;
  --cream: #f6f1e8;
  --cream-deep: #ece4d2;
  --paper: #fdfaf3;
  --ink: #14182a;
  --ink-soft: #4a4f63;
  --line: #e2dccd;
  --shadow: 0 1px 0 rgba(20,24,42,.04), 0 8px 24px -12px rgba(20,24,42,.18);

  --font-sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --max: 1240px;
  --pad: clamp(20px, 4vw, 56px);
}

*,*::before,*::after{ box-sizing: border-box; }
html,body{ margin:0; padding:0; }
html{ scroll-behavior: smooth; }
body{
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  padding-bottom: 72px; /* room for mobile sticky bar */
}
@media (min-width: 1100px){
  body{ padding-bottom: 0; }
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration: none; }
button{ font: inherit; cursor: pointer; }

h1,h2,h3,h4{
  font-family: var(--font-sans);
  font-weight: 800;
  letter-spacing: -0.015em;
  color: var(--navy-deep);
  line-height: 1.1;
  margin: 0;
  text-wrap: balance;
}
h1{ font-size: clamp(36px, 5.4vw, 64px); letter-spacing: -0.025em; }
h2{ font-size: clamp(28px, 3.6vw, 44px); letter-spacing: -0.02em; }
h3{ font-size: clamp(20px, 2vw, 24px); }
p{ margin: 0; }
p + p{ margin-top: 12px; }

.wrap{ max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
.eyebrow{
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}
.eyebrow .dot{
  display:inline-block; width:6px; height:6px; border-radius:50%;
  background: var(--flame); margin-right: 10px; vertical-align: 2px;
}

/* ============ Top navigation ============ */
.topbar{
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: sticky; top:0; z-index: 40;
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding: 14px var(--pad);
  max-width: var(--max);
  margin: 0 auto;
  gap: 24px;
}
.brand{ display:flex; align-items:center; gap:12px; }
.brand img{ height: 44px; width:auto; }
.brand-text{ display:none; }
@media (min-width: 540px){
  .brand-text{
    display: block;
    font-size: 11px;
    font-family: var(--font-mono);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-soft);
    line-height: 1.3;
  }
  .brand-text b{ color: var(--navy-deep); font-weight: 700; letter-spacing: 0.16em; }
}

.menu{ display:none; gap: 2px; }
.menu a{
  padding: 10px 14px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  border-radius: 8px;
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.menu a:hover{ background: var(--cream); }
.menu a.is-active{ color: var(--navy-deep); font-weight: 700; }
.menu a.is-active::after{
  content: ""; display:block; height: 2px; background: var(--flame);
  margin: 4px auto -2px; width: 18px; border-radius: 2px;
}

.nav-phone{ display:none; }
.nav-phone a{
  display:flex; align-items:center; gap:8px;
  padding: 10px 16px;
  background: var(--navy);
  color: #fff;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  transition: background .15s;
  white-space: nowrap;
}
.nav-phone a:hover{ background: var(--navy-deep); }
.nav-phone svg{ width: 16px; height: 16px; }

.hamburger{
  display: inline-flex; align-items:center; justify-content:center;
  width: 44px; height: 44px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 10px;
}
.hamburger span{
  display:block; width: 18px; height: 2px; background: var(--ink);
  position: relative;
}
.hamburger span::before, .hamburger span::after{
  content:""; position:absolute; left:0; width:18px; height:2px; background: var(--ink);
}
.hamburger span::before{ top: -6px; }
.hamburger span::after{ top: 6px; }

@media (min-width: 1100px){
  .menu{ display:flex; }
  .nav-phone{ display:block; }
  .hamburger{ display:none; }
}
@media (min-width: 1180px){
  .brand-text{ display:block; }
}
@media (max-width: 1179px){
  .brand-text{ display:none !important; }
}

.mobile-menu{
  display:none;
  border-top: 1px solid var(--line);
  background: var(--paper);
  padding: 8px var(--pad) 20px;
}
.mobile-menu.open{ display:block; }
.mobile-menu a{
  display:block; padding: 14px 4px;
  font-size: 17px; font-weight: 500;
  border-bottom: 1px solid var(--line);
}
.mobile-menu a:last-child{ border-bottom: none; }
.mobile-menu a.is-active{ color: var(--flame); font-weight: 700; }

/* ============ Mobile sticky call bar ============ */
.callbar{
  position: fixed; left:0; right:0; bottom:0;
  display:flex; gap: 8px;
  padding: 10px 14px;
  background: var(--paper);
  border-top: 1px solid var(--line);
  z-index: 50;
  box-shadow: 0 -8px 24px -12px rgba(20,24,42,.16);
}
.callbar a{
  flex:1;
  display:flex; align-items:center; justify-content:center; gap:8px;
  padding: 14px 12px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
}
.callbar .call{
  background: var(--flame); color:#fff;
}
.callbar .quote{
  background: var(--navy); color: #fff;
}
.callbar svg{ width:18px; height:18px; }
@media (min-width: 1100px){
  .callbar{ display:none; }
}

/* ============ Buttons ============ */
.btn{
  display: inline-flex; align-items:center; gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: 1px solid transparent;
  transition: transform .12s ease, background .15s, color .15s, border-color .15s;
}
.btn:active{ transform: translateY(1px); }
.btn-flame{ background: var(--flame); color: #fff; }
.btn-flame:hover{ background: var(--flame-deep); }
.btn-navy{ background: var(--navy); color: #fff; }
.btn-navy:hover{ background: var(--navy-deep); }
.btn-ghost{
  background: transparent; color: var(--navy-deep); border-color: var(--navy-deep);
}
.btn-ghost:hover{ background: var(--navy-deep); color: #fff; }
.btn svg{ width: 18px; height: 18px; }

/* ============ Sections ============ */
section{ padding: clamp(56px, 8vw, 96px) 0; }
section.tight{ padding: clamp(40px, 6vw, 64px) 0; }
.bg-cream{ background: var(--cream); }
.bg-navy{ background: var(--navy-deep); color: #f4f1ea; }
.bg-navy h1,.bg-navy h2,.bg-navy h3{ color: #fff; }
.bg-navy .eyebrow{ color: rgba(244,241,234,.7); }

/* ============ Hero ============ */
.hero{
  padding: clamp(48px, 7vw, 96px) 0 clamp(56px, 8vw, 112px);
  position: relative;
  overflow: hidden;
}
.hero-grid{
  display:grid; gap: clamp(32px, 5vw, 56px);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 960px){
  .hero-grid{ grid-template-columns: 1.1fr .9fr; }
}
.hero h1{ margin-top: 18px; }
.hero p.lede{
  margin-top: 20px;
  font-size: clamp(17px, 1.4vw, 19px);
  color: var(--ink-soft);
  max-width: 52ch;
}
.hero-ctas{
  display:flex; flex-wrap:wrap; gap: 12px;
  margin-top: 28px;
}
.hero-meta{
  display:flex; flex-wrap:wrap; gap: 18px 28px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.hero-meta div{ display:flex; align-items:center; gap: 10px; font-size: 14px; color: var(--ink-soft); }
.hero-meta strong{ color: var(--navy-deep); font-weight: 700; }
.hero-meta svg{ width:18px; height:18px; color: var(--flame); }

/* ============ Placeholder images ============ */
.ph{
  position: relative;
  background:
    repeating-linear-gradient(135deg,
      var(--cream-deep) 0 12px,
      var(--cream) 12px 24px);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
}
.ph::after{
  content: attr(data-label);
  position:absolute; inset: auto 0 0 0;
  margin: 0;
  padding: 8px 12px;
  background: rgba(20,24,42,.78);
  color: #fdfaf3;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.ph.tall{ aspect-ratio: 3 / 4; }
.ph.wide{ aspect-ratio: 16 / 9; }
.ph.square{ aspect-ratio: 1 / 1; }

.hero-photo{
  aspect-ratio: 4 / 5;
  border-radius: 18px;
  position: relative;
}
@media (min-width: 960px){
  .hero-photo{ aspect-ratio: 4 / 5; }
}

/* Decorative trust badge over hero photo */
.trust-stamp{
  position: absolute;
  left: -16px; bottom: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: var(--shadow);
  display:flex; align-items:center; gap: 14px;
  max-width: 280px;
}
.trust-stamp .icon{
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--flame);
  display:grid; place-items:center; color: #fff; flex-shrink:0;
}
.trust-stamp .icon svg{ width: 22px; height: 22px; }
.trust-stamp .t{ font-size: 13px; line-height: 1.35; }
.trust-stamp .t b{ display:block; color: var(--navy-deep); font-size: 14px; }

/* ============ Service cards ============ */
.services-grid{
  display:grid; gap: 16px;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  margin-top: 40px;
}
.s-card{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px 24px;
  transition: border-color .15s, transform .15s, box-shadow .15s;
  display:flex; flex-direction: column;
  min-height: 220px;
}
.s-card:hover{
  border-color: var(--navy-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.s-card .ico{
  width: 48px; height: 48px; border-radius: 12px;
  display:grid; place-items:center;
  background: var(--cream);
  color: var(--navy-deep);
  margin-bottom: 18px;
}
.s-card .ico svg{ width: 24px; height: 24px; }
.s-card.flame .ico{ background: #fde7df; color: var(--flame); }
.s-card.water .ico{ background: #dfeaf5; color: var(--water); }
.s-card.navy .ico{ background: #e0e4ef; color: var(--navy); }

.s-card h3{ font-size: 19px; }
.s-card p{ margin-top: 8px; color: var(--ink-soft); font-size: 14.5px; }
.s-card .more{
  margin-top: auto; padding-top: 18px;
  font-size: 13px; font-weight: 700; color: var(--navy-deep);
  display:inline-flex; align-items:center; gap: 6px;
  font-family: var(--font-mono); letter-spacing: 0.08em; text-transform: uppercase;
}
.s-card .more::after{ content: "→"; transition: transform .15s; }
.s-card:hover .more::after{ transform: translateX(3px); }

/* ============ Two-col section ============ */
.two-col{
  display:grid; gap: clamp(28px, 5vw, 64px);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 880px){
  .two-col{ grid-template-columns: 1fr 1fr; }
  .two-col.left-img{ grid-template-columns: 1fr 1.05fr; }
}

/* ============ Steps ============ */
.steps{
  display:grid; gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 40px;
}
.step{
  padding: 24px;
  border-radius: 14px;
  background: var(--paper);
  border: 1px solid var(--line);
}
.step .n{
  display:inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--flame);
  font-weight: 700;
  margin-bottom: 8px;
}
.step h3{ font-size: 18px; }
.step p{ margin-top: 6px; color: var(--ink-soft); font-size: 14.5px; }

/* ============ Stats strip ============ */
.stats{
  display:grid; gap: 0;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
@media (min-width: 700px){
  .stats{ grid-template-columns: repeat(4, 1fr); }
}
.stat{
  padding: 28px 24px;
  border-right: 1px solid rgba(255,255,255,.12);
}
.stat:nth-child(2n){ border-right: 1px solid rgba(255,255,255,.12); }
@media (max-width: 699px){
  .stat:nth-child(2n){ border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2){ border-bottom: 1px solid rgba(255,255,255,.12); }
}
@media (min-width: 700px){
  .stat:last-child{ border-right: none; }
}
.stat .big{
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat .big .u{ color: var(--flame); }
.stat .label{
  margin-top: 8px;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: var(--font-mono);
  color: rgba(244,241,234,.7);
}

/* ============ Testimonials ============ */
.testimonials{
  display:grid; gap: 16px;
  grid-template-columns: 1fr;
  margin-top: 40px;
}
@media (min-width: 780px){
  .testimonials{ grid-template-columns: repeat(3, 1fr); }
}
.testi{
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
}
.testi .stars{ color: var(--flame); letter-spacing: 2px; }
.testi blockquote{
  margin: 12px 0 16px; padding: 0;
  font-size: 15.5px; line-height: 1.55;
  color: var(--ink);
}
.testi cite{
  display:block; font-style: normal;
  font-size: 13.5px; color: var(--ink-soft);
}
.testi cite b{ color: var(--navy-deep); font-weight: 700; }

/* ============ Urgences hero ============ */
.urgence-banner{
  background:
    linear-gradient(0deg, rgba(20,24,42,.94), rgba(20,24,42,.94));
  color: #fff;
  position: relative;
  overflow: hidden;
}
.urgence-banner::before{
  content:""; position:absolute; inset:0;
  background:
    repeating-linear-gradient(45deg,
      rgba(216,68,42,.08) 0 20px,
      transparent 20px 40px);
  pointer-events:none;
}
.urgence-banner h1{ color: #fff; }
.urgence-banner .lede{ color: rgba(244,241,234,.85); }
.urgence-pulse{
  display:inline-flex; align-items:center; gap: 10px;
  padding: 6px 14px 6px 10px;
  background: rgba(216,68,42,.15);
  border: 1px solid rgba(216,68,42,.4);
  color: var(--flame);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}
.urgence-pulse .dot{
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--flame);
  box-shadow: 0 0 0 0 rgba(216,68,42,.7);
  animation: pulse 1.8s infinite;
}
@keyframes pulse{
  0%{ box-shadow: 0 0 0 0 rgba(216,68,42,.6); }
  70%{ box-shadow: 0 0 0 10px rgba(216,68,42,0); }
  100%{ box-shadow: 0 0 0 0 rgba(216,68,42,0); }
}
.urgence-call{
  margin-top: 28px;
  display:flex; flex-direction: column; gap: 10px;
}
.urgence-call a{
  display:inline-flex; align-items:center; gap: 14px;
  padding: 22px 28px;
  background: var(--flame);
  color: #fff;
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 800;
  border-radius: 16px;
  letter-spacing: -0.01em;
  transition: background .15s;
  width: fit-content;
}
.urgence-call a:hover{ background: var(--flame-deep); }
.urgence-call a svg{ width: 28px; height: 28px; }
.urgence-call small{
  font-size: 13px;
  color: rgba(244,241,234,.65);
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
}

.checklist{ margin-top: 28px; padding: 0; list-style: none; display:grid; gap: 10px; }
.checklist li{
  display:flex; gap: 10px; align-items:flex-start;
  font-size: 15.5px;
}
.checklist li::before{
  content:""; flex-shrink:0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--flame);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='3 8 6.5 11.5 13 5'/></svg>");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ============ Map / Zone ============ */
.zone-map{
  aspect-ratio: 4 / 3;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 18px;
  position: relative;
  overflow: hidden;
}
.zone-pin{
  position: absolute;
  transform: translate(-50%, -100%);
  display:flex; flex-direction: column; align-items:center; gap:2px;
}
.zone-pin .pin{
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--flame);
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(20,24,42,.25);
}
.zone-pin .label{
  margin-top: 6px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--navy-deep);
  background: #fff;
  padding: 3px 8px;
  border-radius: 6px;
  border: 1px solid var(--line);
  white-space: nowrap;
}
.zone-pin.center .pin{
  width: 18px; height: 18px; background: var(--navy-deep); border-color: #fff;
}
.zone-pin.center .label{ background: var(--navy-deep); color:#fff; border-color: var(--navy-deep); }

.zone-radius{
  position: absolute;
  border: 1.5px dashed rgba(30,44,82,.25);
  border-radius: 50%;
  pointer-events: none;
}

.cities-grid{
  display:grid; gap: 8px;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  margin-top: 24px;
}
.cities-grid div{
  padding: 12px 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 14.5px;
  display:flex; align-items:center; gap: 10px;
}
.cities-grid div::before{
  content:""; width:6px; height:6px; border-radius: 50%; background: var(--flame);
}

/* ============ Realisations gallery ============ */
.gallery{
  display:grid; gap: 16px;
  grid-template-columns: 1fr;
  margin-top: 40px;
}
@media (min-width: 640px){ .gallery{ grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px){ .gallery{ grid-template-columns: 1fr 1fr 1fr; } }
.proj{
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: var(--paper);
  display:flex; flex-direction: column;
}
.proj .ph{ border-radius: 0; border: none; border-bottom: 1px solid var(--line); }
.proj .meta{ padding: 18px 20px; }
.proj .tag{
  display:inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--flame);
  font-weight: 700;
  margin-bottom: 6px;
}
.proj h3{ font-size: 17px; }
.proj p{ margin-top: 4px; font-size: 14px; color: var(--ink-soft); }

.filter-row{
  display:flex; flex-wrap:wrap; gap: 8px;
  margin-top: 24px;
}
.filter-row button{
  padding: 8px 14px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.filter-row button.is-active{
  background: var(--navy-deep); color:#fff; border-color: var(--navy-deep);
}

/* ============ Contact form ============ */
.contact-grid{
  display:grid; gap: clamp(28px, 5vw, 56px);
  grid-template-columns: 1fr;
  margin-top: 40px;
}
@media (min-width: 880px){
  .contact-grid{ grid-template-columns: 1.2fr .9fr; }
}
.form{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(20px, 3vw, 32px);
}
.form .row{
  display:grid; gap: 16px;
  grid-template-columns: 1fr;
  margin-bottom: 16px;
}
@media (min-width: 560px){
  .form .row.two{ grid-template-columns: 1fr 1fr; }
}
.field label{
  display:block; font-size: 13px; font-weight: 600;
  color: var(--navy-deep);
  margin-bottom: 6px;
  font-family: var(--font-mono); letter-spacing: 0.06em; text-transform: uppercase;
}
.field label .req{ color: var(--flame); }
.field input, .field select, .field textarea{
  width: 100%;
  padding: 12px 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  font: inherit;
  color: var(--ink);
  transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus{
  outline: none;
  border-color: var(--navy-deep);
  box-shadow: 0 0 0 3px rgba(30,44,82,.12);
}
.field textarea{ min-height: 130px; resize: vertical; }

.service-pills{ display:flex; flex-wrap:wrap; gap: 8px; }
.service-pills label{
  display:inline-flex; align-items:center; gap: 8px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  cursor: pointer;
  background: var(--paper);
  font-family: var(--font-sans);
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink);
  font-weight: 500;
  margin: 0;
  transition: all .12s;
}
.service-pills input{ display:none; }
.service-pills input:checked + span{
  /* visual handled on label via :has() */
}
.service-pills label:has(input:checked){
  background: var(--navy-deep);
  color: #fff;
  border-color: var(--navy-deep);
}

.form-meta{
  font-size: 13px; color: var(--ink-soft);
  margin-top: 8px;
}
.form-actions{
  display:flex; flex-wrap:wrap; gap: 12px; align-items:center;
  margin-top: 8px;
}

.contact-side .block{
  padding: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-bottom: 14px;
}
.contact-side .block h3{ font-size: 17px; }
.contact-side .block .row{ display:flex; align-items:flex-start; gap: 12px; margin-top: 12px; font-size: 14.5px; }
.contact-side .block .row svg{ width:18px; height:18px; color: var(--flame); flex-shrink:0; margin-top:2px; }
.contact-side .block .row b{ display:block; color: var(--navy-deep); font-size: 13px; }
.contact-side .block .row a{ font-weight: 700; color: var(--navy-deep); }

/* ============ Footer ============ */
footer{
  background: var(--navy-deep);
  color: rgba(244,241,234,.78);
  padding: clamp(48px, 7vw, 72px) 0 24px;
}
.foot-grid{
  display:grid; gap: 32px;
  grid-template-columns: 1fr;
}
@media (min-width: 680px){ .foot-grid{ grid-template-columns: 1.4fr 1fr 1fr; } }
.foot-grid h4{
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: var(--font-mono);
  margin-bottom: 16px;
  font-weight: 600;
}
.foot-grid p{ font-size: 14.5px; line-height: 1.6; }
.foot-grid ul{ list-style: none; padding: 0; margin: 0; display:grid; gap: 8px; }
.foot-grid ul a{ font-size: 14.5px; }
.foot-grid ul a:hover{ color: #fff; }
.foot-brand{ display:flex; align-items:center; gap: 14px; margin-bottom: 16px; }
.foot-brand img{ height: 48px; background: #fff; padding: 4px; border-radius: 8px; }
.foot-bottom{
  margin-top: 48px; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.08);
  display:flex; flex-wrap:wrap; gap: 16px; justify-content: space-between;
  font-size: 12.5px;
  color: rgba(244,241,234,.55);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}

/* ============ Page header (non-home) ============ */
.page-head{
  padding: clamp(48px, 6vw, 80px) 0 clamp(32px, 4vw, 48px);
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.crumbs{
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.crumbs a:hover{ color: var(--navy-deep); }
.crumbs .sep{ margin: 0 8px; opacity: .4; }
.page-head .lede{
  margin-top: 16px;
  max-width: 60ch;
  font-size: 17px;
  color: var(--ink-soft);
}

/* ============ Utility ============ */
.cta-strip{
  background: var(--navy-deep);
  color: #fff;
  padding: clamp(40px, 6vw, 72px) 0;
}
.cta-strip h2{ color: #fff; }
.cta-strip .inner{
  display:grid; gap: 24px;
  grid-template-columns: 1fr;
  align-items:center;
}
@media (min-width: 780px){
  .cta-strip .inner{ grid-template-columns: 1.4fr auto; }
}
.cta-strip .actions{ display:flex; gap: 12px; flex-wrap: wrap; }
.cta-strip .btn-flame{ font-size: 16px; padding: 16px 24px; }
.cta-strip .btn-ghost{ color:#fff; border-color: rgba(255,255,255,.5); }
.cta-strip .btn-ghost:hover{ background: #fff; color: var(--navy-deep); }

/* Detail service page block */
.svc-detail{
  display:grid; gap: clamp(28px, 5vw, 48px);
  grid-template-columns: 1fr;
  padding: clamp(48px, 6vw, 72px) 0;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 880px){
  .svc-detail{ grid-template-columns: 1fr 1.1fr; align-items:center; }
  .svc-detail.alt > div:first-child{ order: 2; }
}
.svc-detail h2{ font-size: clamp(26px, 2.8vw, 34px); }
.svc-detail .feats{
  list-style: none; padding: 0; margin: 18px 0 0;
  display:grid; gap: 8px;
}
.svc-detail .feats li{
  display:flex; gap: 10px; align-items:flex-start;
  font-size: 15px;
}
.svc-detail .feats li::before{
  content:"+"; color: var(--flame); font-weight: 800;
  width: 18px; flex-shrink: 0;
}
