:root {
  --teal: #1F8A8C;
  --teal-d: #176a6c;
  --teal-l: #7ed6d7;
  --blue: #2E5C8A;
  --char: #1E2A2F;
  --bg: #F7F9F9;
  --white: #FFFFFF;
  --amber: #D08A2C;
  --amber-d: #b5751f;
  --line: #e2e9e9;
  --muted: #566066;
  --radius: 16px;
  --shadow-s: 0 2px 8px rgba(30,42,47,.06);
  --shadow-m: 0 14px 38px rgba(30,42,47,.12);
  --shadow-l: 0 28px 70px rgba(30,42,47,.18);
  --maxw: 1200px;
}

*,*::before,*::after { box-sizing: border-box; }
html, body { max-width: 100%; overflow-x: hidden; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--char);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
}
h1, h2, h3, h4 { font-family: "Manrope", sans-serif; line-height: 1.12; margin: 0 0 .5em; color: var(--char); }
img, svg, video, iframe { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; border-radius: 4px; }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4em;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: .98rem;
  padding: .85em 1.5em;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  text-decoration: none;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-amber { background: var(--amber); color: #fff; box-shadow: 0 8px 20px rgba(208,138,44,.32); }
.btn-amber:hover { background: var(--amber-d); }
.btn-block { width: 100%; }

.link-arrow { font-family: "Manrope", sans-serif; font-weight: 700; color: var(--teal); display: inline-block; transition: transform .18s ease, color .18s ease; }
.link-arrow:hover { color: var(--teal-d); text-decoration: none; transform: translateX(3px); }

.eyebrow { font-family: "Manrope", sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; font-size: .78rem; color: var(--teal); margin: 0 0 .55em; }
.eyebrow-light { color: rgba(190,235,236,.85); }

/* TRUST BAR */
.trustbar { background: var(--char); color: #dfe8e8; font-size: .82rem; }
.trustbar-inner { display: flex; flex-wrap: wrap; gap: .5em; justify-content: center; align-items: center; padding: 8px 22px; }
.trustbar a { color: #fff; font-weight: 600; }
.trustbar .dot { opacity: .5; }

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: padding .25s ease, box-shadow .25s ease;
}
.header-inner { display: flex; align-items: center; gap: 18px; padding: 14px 22px; transition: padding .25s ease; }
.site-header.shrink .header-inner { padding: 8px 22px; }
.site-header.shrink { box-shadow: var(--shadow-s); }
.brand img { width: 170px; height: auto; }
.site-header.shrink .brand img { width: 150px; }
.primary-nav { margin-left: auto; }
.nav-list { display: flex; gap: 4px; list-style: none; margin: 0; padding: 0; align-items: center; }
.nav-list > li > a { display: flex; align-items: center; gap: 5px; padding: 10px 12px; font-family: "Manrope", sans-serif; font-weight: 600; font-size: .95rem; color: var(--char); border-radius: 8px; }
.nav-list > li > a:hover { background: #eef5f5; color: var(--teal); text-decoration: none; }
.caret { width: 7px; height: 7px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); margin-top: -3px; flex-shrink: 0; }
.has-drop { position: relative; }
.drop { position: absolute; top: calc(100% + 6px); left: 0; min-width: 230px; background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow-m); padding: 8px; list-style: none; margin: 0; opacity: 0; visibility: hidden; transform: translateY(8px); transition: .18s ease; z-index: 70; }
.has-drop:hover > .drop, .has-drop:focus-within > .drop { opacity: 1; visibility: visible; transform: translateY(0); }
.drop a { display: block; padding: 8px 10px; border-radius: 7px; color: var(--char); font-size: .9rem; }
.drop a:hover { background: #eef5f5; color: var(--teal); text-decoration: none; }
.drop-wide { display: flex; gap: 6px; min-width: 640px; padding: 14px; }
.drop-group { flex: 1; min-width: 0; }
.drop-head { display: block; font-family: "Manrope", sans-serif; font-weight: 700; color: var(--teal); padding: 6px 10px; font-size: .86rem; text-transform: uppercase; letter-spacing: .04em; }
.drop-group ul { list-style: none; margin: 0; padding: 0; }
.header-cta { flex-shrink: 0; font-size: .9rem; padding: .7em 1.2em; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; cursor: pointer; margin-left: auto; }
.nav-toggle span { width: 26px; height: 3px; background: var(--char); border-radius: 3px; transition: .2s; }

/* MOBILE NAV */
.mobile-nav-overlay { position: fixed; inset: 0; background: rgba(30,42,47,.5); z-index: 90; }
.mobile-nav { position: fixed; top: 0; right: 0; height: 100%; width: min(88%, 360px); background: #fff; z-index: 100; box-shadow: var(--shadow-l); overflow-y: auto; padding: 18px; transform: translateX(100%); transition: transform .28s ease; }
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.nav-close { background: none; border: 0; font-size: 2rem; line-height: 1; cursor: pointer; color: var(--char); padding: 0 6px; }
.m-list { list-style: none; margin: 0; padding: 0; }
.m-list > li { border-bottom: 1px solid var(--line); }
.m-list > li > a { display: block; padding: 13px 4px; font-family: "Manrope", sans-serif; font-weight: 600; color: var(--char); }
.m-acc-btn { width: 100%; display: flex; justify-content: space-between; align-items: center; background: none; border: 0; padding: 13px 4px; font-family: "Manrope", sans-serif; font-weight: 600; font-size: 1rem; color: var(--char); cursor: pointer; }
.m-acc-btn .caret { transition: transform .2s; }
.m-acc-btn[aria-expanded="true"] .caret { transform: rotate(-135deg); margin-top: 3px; }
.m-sub { list-style: none; margin: 0; padding: 0 0 8px 12px; max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.m-sub.open { max-height: 900px; }
.m-sub a { display: block; padding: 8px 4px; color: var(--muted); font-size: .92rem; }
.m-cta { margin-top: 18px; width: 100%; }

/* =====================
   HERO — dark editorial split
   ===================== */
.hero {
  position: relative;
  background: linear-gradient(145deg, #0b2123 0%, #152d31 38%, #1E2A2F 100%);
  padding: 64px 0 80px;
  overflow: hidden;
}

/* Decorative ring — top-left */
.hero::before {
  content: "";
  position: absolute;
  width: 680px;
  height: 680px;
  border-radius: 50%;
  border: 1px solid rgba(31,138,140,.18);
  top: -300px;
  left: -140px;
  pointer-events: none;
}

/* Decorative ring — inner */
.hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(31,138,140,.10);
  top: -120px;
  left: -20px;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 52px;
  align-items: center;
}

/* Copy side */
.hero-copy h1 {
  color: #ffffff;
  font-size: clamp(2.1rem, 4.2vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.08;
  margin-bottom: .45em;
}

.hero-lead {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  color: var(--teal-l);
  margin: 0 0 .6em;
  line-height: 1.3;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.72);
  max-width: 46ch;
  margin: 0 0 28px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 32px;
}

.hero-sec-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: .98rem;
  color: rgba(255,255,255,.82);
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 2px solid rgba(255,255,255,.25);
  transition: color .2s ease, border-color .2s ease;
}
.hero-sec-cta:hover {
  color: var(--teal-l);
  border-bottom-color: var(--teal-l);
  text-decoration: none;
}

.hero-stats {
  list-style: none;
  display: flex;
  gap: 28px;
  flex-wrap: nowrap;
  margin: 0;
  padding: 24px 0 0;
  border-top: 1px solid rgba(255,255,255,.14);
}
.hero-stats li { display: flex; flex-direction: column; min-width: 0; }
.hero-stats strong { font-family: "Manrope", sans-serif; font-weight: 800; font-size: 1.25rem; color: var(--teal-l); }
.hero-stats span { font-size: .8rem; color: rgba(255,255,255,.55); margin-top: 2px; }

/* Media side */
.hero-media { position: relative; }

/* Teal decorative offset behind photo */
.hero-media::before {
  content: "";
  position: absolute;
  width: 92%;
  height: 90%;
  background: var(--teal);
  opacity: 0.22;
  border-radius: 26px;
  bottom: -18px;
  right: -18px;
  pointer-events: none;
}

.hero-photo {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 36px 90px rgba(0,0,0,.5);
}

/* Teal scrim over photo */
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(31,138,140,.44), rgba(46,92,138,.2) 55%, transparent 82%);
}

.hero-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 2/3;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hero-badge {
  position: absolute;
  left: -18px;
  bottom: 28px;
  background: rgba(10,30,33,.90);
  border: 1px solid rgba(31,138,140,.35);
  border-radius: 14px;
  box-shadow: 0 8px 28px rgba(0,0,0,.32);
  padding: 14px 18px;
  max-width: 220px;
}
.badge-k { display: block; font-family: "Manrope", sans-serif; font-weight: 800; color: var(--teal-l); }
.badge-s { display: block; font-size: .78rem; color: rgba(255,255,255,.62); margin-top: 3px; }

/* SECTION HEAD */
.section-head { max-width: 62ch; margin-bottom: 36px; }
.section-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); font-weight: 800; letter-spacing: -.01em; }
.section-head > p { color: var(--muted); font-size: 1.05rem; margin: .2em 0 0; }

/* LOCATIONS */
.locations { padding: 80px 0; background: var(--white); border-top: 1px solid var(--line); }
.loc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 18px; }
.loc-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-s);
  transition: transform .2s ease, box-shadow .2s ease;
  border-top: 4px solid var(--teal);
}
.loc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-m); }
.loc-card h3 { font-size: 1.12rem; margin-bottom: .4em; }
.loc-card h3 span { color: var(--muted); font-weight: 600; font-size: .84rem; }
.loc-card address { font-style: normal; color: var(--char); margin-bottom: 10px; font-size: .94rem; }
.loc-phone { margin: 0 0 4px; font-weight: 600; font-size: .94rem; }
.loc-phone a { color: var(--blue); }
.loc-mail { margin: 0 0 12px; font-size: .9rem; color: var(--muted); }
.loc-mail a { color: var(--teal); }
.loc-dir { font-family: "Manrope", sans-serif; font-weight: 700; font-size: .9rem; color: var(--teal); }
.loc-note {
  background: linear-gradient(155deg, var(--teal), var(--teal-d));
  color: #fff;
  border: 0;
  border-top: 4px solid var(--amber);
}
.loc-note h3 { color: #fff; }
.loc-note strong { color: #fff; }
.loc-note .loc-mail { color: rgba(210,240,240,.82); }
.loc-note .loc-mail a { color: rgba(210,240,240,.82); }

/* BAND — image/text alternating sections */
.band { padding: 88px 0; }

.band-holistic {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
/* Decorative teal circle — top-right corner */
.band-holistic::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: rgba(31,138,140,.05);
  top: -120px;
  right: -80px;
  pointer-events: none;
}
.band-holistic::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px solid rgba(31,138,140,.1);
  top: 40px;
  right: 60px;
  pointer-events: none;
}

.band-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.band-grid-reverse .band-media { order: 2; }

.band-media {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-m);
  position: relative;
}
.band-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
  transition: transform .6s ease;
  display: block;
}
.band-media:hover img { transform: scale(1.04); }

/* Teal accent bar on bottom of each band image */
.band-media::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--teal);
  opacity: .6;
}

.band-copy h2 { font-size: clamp(1.65rem, 3.2vw, 2.3rem); font-weight: 800; margin-bottom: .45em; }
.band-copy p { color: #3c474c; max-width: 60ch; margin: 0 0 1em; line-height: 1.7; }

.band-team { background: linear-gradient(180deg, var(--bg), #edf4f4); }

/* Team placeholder */
.team-ph-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-top: 24px; }
.team-ph-card {
  background: rgba(31,138,140,.06);
  border: 1px solid rgba(31,138,140,.18);
  border-radius: 14px;
  padding: 16px 20px;
  text-align: center;
  min-width: 130px;
}
.team-ph-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(31,138,140,.22), rgba(46,92,138,.22));
  margin: 0 auto 10px;
  position: relative;
  overflow: hidden;
}
.team-ph-avatar::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 34px;
  height: 28px;
  background: linear-gradient(135deg, rgba(31,138,140,.18), rgba(46,92,138,.18));
  border-radius: 50% 50% 0 0;
}
.team-ph-title { font-family: "Manrope", sans-serif; font-weight: 700; font-size: .85rem; color: var(--char); margin: 0; }
.team-ph-loc { font-size: .75rem; color: var(--muted); margin: 2px 0 0; }
.team-ph-note { font-size: .8rem; color: var(--muted); font-style: italic; margin: 4px 0 0; }

/* CONDITIONS */
.conditions { padding: 88px 0; background: var(--bg); }
.cond-sub { font-size: 1.25rem; font-weight: 800; color: var(--blue); margin: 36px 0 6px; }
.cond-intro { color: var(--muted); margin: 0 0 18px; }
.cond-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(215px, 1fr)); gap: 16px; }
.cond-grid-2 { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }

.cond-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--teal);
  border-radius: 12px;
  padding: 20px 20px 20px;
  transition: transform .2s ease, box-shadow .2s ease, border-left-color .2s ease;
}
.cond-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-s); border-left-color: var(--amber); }
.cond-card h4 { font-size: 1rem; margin: 0 0 .3em; color: var(--teal); }
.cond-card p { margin: 0; font-size: .91rem; color: #3c474c; line-height: 1.5; }

/* Icon wrapper inside condition cards */
.cond-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(31,138,140,.1);
  border-radius: 12px;
  margin-bottom: 14px;
  color: var(--teal);
  flex-shrink: 0;
}
.cond-icon-wrap svg {
  width: 22px;
  height: 22px;
  display: block;
  flex-shrink: 0;
}

/* SERVICES — bento grid */
.services { padding: 88px 0; background: var(--white); border-top: 1px solid var(--line); }

.serv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 22px;
}

.serv-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-s);
  display: flex;
  flex-direction: column;
  transition: transform .22s ease, box-shadow .22s ease;
}
.serv-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-m); }

/* Featured first card — full row, horizontal layout */
.serv-featured {
  grid-column: 1 / -1;
  flex-direction: row;
}
.serv-featured .serv-img {
  flex: 0 0 44%;
  max-width: 44%;
  aspect-ratio: unset;
  min-height: 280px;
  overflow: hidden;
}
.serv-featured .serv-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.serv-card:hover .serv-featured .serv-img img { transform: scale(1.07); }
.serv-featured .serv-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px 44px;
}
.serv-featured .serv-body h3 { font-size: 1.5rem; }
.serv-featured .serv-body p { font-size: 1rem; max-width: 52ch; }

.serv-img { overflow: hidden; aspect-ratio: 3/2; }
.serv-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.serv-card:hover .serv-img img { transform: scale(1.07); }
.serv-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.serv-body h3 { font-size: 1.18rem; color: var(--teal); margin-bottom: .35em; }
.serv-body p { color: #3c474c; font-size: .93rem; flex: 1; margin: 0 0 16px; line-height: 1.6; }

/* QUALITY */
.quality {
  padding: 88px 0;
  background: linear-gradient(148deg, var(--teal), var(--teal-d));
  color: #fff;
  position: relative;
  overflow: hidden;
}
.quality::before {
  content: "";
  position: absolute;
  width: 580px;
  height: 580px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  top: -240px;
  right: -130px;
  pointer-events: none;
}
.quality::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
  bottom: -100px;
  left: 7%;
  pointer-events: none;
}
.quality-inner { max-width: 780px; position: relative; z-index: 1; }
.quality-inner h2 { color: #fff; font-size: clamp(1.8rem, 3.4vw, 2.6rem); font-weight: 800; margin-bottom: .45em; }
.quality-inner p { color: rgba(255,255,255,.85); font-size: 1.06rem; margin: 0 0 1.1em; line-height: 1.7; }
.quality-inner .btn-amber { margin-top: 10px; }

/* CONTACT */
.contact { padding: 88px 0; background: var(--bg); }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 52px; align-items: start; }
.contact-info h2 { font-size: clamp(1.65rem, 3.2vw, 2.3rem); font-weight: 800; }
.contact-lead { color: var(--muted); margin: 0 0 18px; }
.contact-phones { list-style: none; margin: 0 0 22px; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 16px; }
.contact-phones li { font-size: .91rem; }
.contact-phones span { display: block; color: var(--muted); font-size: .78rem; font-family: "Manrope", sans-serif; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 1px; }
.contact-phones a { font-weight: 700; color: var(--blue); }

.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px;
  box-shadow: var(--shadow-s);
}
.field { margin-bottom: 16px; }
.field label { display: block; font-family: "Manrope", sans-serif; font-weight: 600; font-size: .85rem; margin-bottom: 6px; }
.field input, .field textarea { width: 100%; border: 1px solid var(--line); border-radius: 10px; padding: 12px 14px; font: inherit; background: var(--bg); color: var(--char); transition: border-color .18s ease; }
.field input:focus, .field textarea:focus { border-color: var(--teal); outline: 2px solid rgba(31,138,140,.22); outline-offset: 0; background: var(--white); }
.field textarea { resize: vertical; }
.err { display: block; color: #c0392b; font-size: .8rem; margin-top: 4px; min-height: 1.1em; }
.field.invalid input, .field.invalid textarea { border-color: #c0392b; }
.form-ok { color: var(--teal); font-weight: 700; margin: 10px 0 0; }

/* BLOG */
.blog { padding: 88px 0; background: linear-gradient(180deg, #eef5f5, var(--bg)); }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 26px; }
.blog-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-s);
  display: flex;
  flex-direction: column;
  transition: transform .22s ease, box-shadow .22s ease;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-m); }
.blog-img { display: block; overflow: hidden; aspect-ratio: 16/9; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.blog-card:hover .blog-img img { transform: scale(1.06); }
.blog-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.blog-body h3 { font-size: 1.08rem; line-height: 1.28; margin-bottom: .35em; }
.blog-body h3 a { color: var(--char); }
.blog-body h3 a:hover { color: var(--teal); text-decoration: none; }
.blog-body p { color: #3c474c; font-size: .91rem; flex: 1; margin: 0 0 16px; line-height: 1.6; }

/* FOOTER */
.site-footer { background: var(--char); color: #cdd6d8; padding: 60px 0 0; font-size: .91rem; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1.4fr 1fr 1fr; gap: 36px; }
.foot-logo { background: #fff; padding: 10px 14px; border-radius: 10px; width: 185px; height: auto; }
.foot-name { font-family: "Manrope", sans-serif; font-weight: 700; color: #fff; margin: 14px 0 2px; }
.foot-tag { color: var(--teal-l); font-style: italic; margin: 0 0 14px; font-size: .9rem; }
.foot-hours { color: #aebabd; font-size: .88rem; line-height: 1.6; }
.foot-hours strong { color: #fff; }
.foot-col h3 { color: #fff; font-size: .98rem; margin-bottom: 14px; }
.foot-loc { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.foot-loc li { line-height: 1.5; font-size: .88rem; }
.foot-loc strong { color: #fff; }
.foot-loc a { color: #8fd8d9; }
.foot-links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.foot-links a { color: #cdd6d8; font-size: .9rem; }
.foot-links a:hover { color: #8fd8d9; text-decoration: none; }
.foot-form input { width: 100%; margin-bottom: 10px; border: 1px solid #3a474c; border-radius: 9px; padding: 11px 13px; background: #27343a; color: #fff; font: inherit; font-size: .92rem; }
.foot-form input::placeholder { color: #8a979c; }
.foot-form input:focus { border-color: var(--teal); outline: none; }
.footer-bottom { border-top: 1px solid #2c393f; margin-top: 48px; padding: 18px 0; }
.footer-bottom-inner { display: flex; flex-wrap: wrap; gap: 8px; justify-content: space-between; color: #8a979c; font-size: .82rem; }

/* SCROLL REVEAL */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.reveal.in { opacity: 1; transform: none; }

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1040px) {
  .primary-nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .drop-wide { min-width: 0; }
}

@media (max-width: 860px) {
  .hero { padding: 48px 0 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-media { max-width: 380px; margin: 0 auto; }
  .hero-badge { left: 0; }

  /* Services: collapse featured to column */
  .serv-grid { grid-template-columns: 1fr; }
  .serv-featured { flex-direction: column; }
  .serv-featured .serv-img { flex: none; max-width: 100%; min-height: 0; aspect-ratio: 16/9; }
  .serv-featured .serv-body { padding: 24px; }
  .serv-featured .serv-body h3 { font-size: 1.3rem; }

  .band { padding: 64px 0; }
  .band-grid { grid-template-columns: 1fr; gap: 32px; }
  .band-grid-reverse .band-media { order: 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .serv-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .container { padding: 0 16px; }
  .hero { padding: 40px 0 52px; }
  .hero-stats { gap: 16px; }
  .hero-stats strong { font-size: 1.05rem; }
  .hero-stats span { font-size: .72rem; }
  .hero-cta { gap: 14px; }
  .locations, .band, .conditions, .services, .quality, .contact, .blog { padding: 60px 0; }
  .contact-phones { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cond-grid { grid-template-columns: 1fr; }
  .cond-grid-2 { grid-template-columns: 1fr; }
}

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