/* ==========================================================================
   Phoenix Boiler Solutions — public site
   ========================================================================== */

:root {
  --red:          #b5151f;
  --red-dark:     #750102;
  --red-bright:   #d8232f;
  --red-ink:      #5c0104;

  --grey:         #2c3138;
  --grey-2:       #3d434c;

  --ink:          #14161a;
  --ink-2:        #2c3138;
  --ink-soft:     #5a626c;
  --ink-faint:    #8b939d;

  --paper:        #ffffff;
  --paper-alt:    #f4f5f7;
  --line:         #e2e6ea;

  --wrap:         1180px;
  --gap:          clamp(1.25rem, 3vw, 2.5rem);
  --radius:       14px;
  --radius-sm:    9px;

  --shadow-sm:    0 1px 2px rgba(16, 20, 26, .06), 0 2px 8px rgba(16, 20, 26, .05);
  --shadow:       0 10px 30px rgba(16, 20, 26, .10), 0 2px 8px rgba(16, 20, 26, .06);
  --shadow-lg:    0 24px 60px rgba(16, 20, 26, .18);

  --font-head:    "Barlow Condensed", "Oswald", "Arial Narrow", system-ui, sans-serif;
  --font-body:    "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  --header-h:     84px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-2);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg, video { max-width: 100%; display: block; }
img { height: auto; }

a { color: var(--red); text-decoration: none; }
a:hover { color: var(--red-dark); }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: .005em;
  color: var(--ink);
  margin: 0 0 .5em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.5rem, 6vw, 4.25rem); }
h2 { font-size: clamp(1.95rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }
p  { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

:focus-visible {
  outline: 3px solid var(--red-bright);
  outline-offset: 2px;
  border-radius: 3px;
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: clamp(1.1rem, 4vw, 2rem);
}

.icon { width: 1.35em; height: 1.35em; flex: none; }
.icon--sm { width: 1.05em; height: 1.05em; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--ink); color: #fff; padding: .8rem 1.2rem; border-radius: 0 0 8px 0;
}
.skip:focus { left: 0; color: #fff; }

.eyebrow {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 .7rem;
}
.eyebrow--light { color: #ff9ba1; }

.pill {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red-dark);
  background: #fdeaeb;
  border: 1px solid #f6ced1;
  padding: .18rem .6rem;
  border-radius: 100px;
  margin: 0 0 .6rem;
}

/* ---------- buttons ---------- */
.btn {
  --btn-bg: var(--red);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--font-head);
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .85rem 1.5rem;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  background: var(--btn-bg);
  color: var(--btn-fg);
  cursor: pointer;
  transition: transform .15s ease, background .18s ease, box-shadow .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn:hover { color: var(--btn-fg); transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary {
  background: linear-gradient(180deg, var(--red-bright), var(--red));
  box-shadow: 0 6px 18px rgba(181, 21, 31, .34);
  color: #fff;
}
.btn--primary:hover,
.btn--primary:focus-visible {
  background: linear-gradient(180deg, var(--grey-2), var(--grey));
  box-shadow: 0 10px 26px rgba(20, 22, 26, .34);
  color: #fff;
}
.btn--ghost {
  background: transparent;
  border-color: currentColor;
  color: #fff;
}
.btn--ghost:hover { background: rgba(255, 255, 255, .12); color: #fff; }
.btn--sm { font-size: .95rem; padding: .6rem 1.05rem; }
.btn--block { width: 100%; }

/* ---------- top bar ---------- */
.topbar {
  background: var(--red-ink);
  color: #f3d9da;
  font-size: .875rem;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 40px;
  flex-wrap: wrap;
}
.topbar__contacts { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.topbar a {
  color: #f7e6e7;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
}
.topbar a:hover { color: #fff; }
.topbar i { font-style: normal; color: #d9a7aa; }
.topbar__hours {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-weight: 600;
  color: #fff;
}
@media (max-width: 720px) {
  /* Needs to out-rank `.topbar a` above, hence the element in the selector. */
  .topbar a.hide-sm, .hide-sm { display: none; }
  .topbar { font-size: .8rem; }
  .topbar__contacts { gap: .9rem; }
  .topbar i { display: none; }
}

/* ---------- header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: saturate(1.6) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}
.header__logo img { height: 58px; width: auto; }
@media (max-width: 600px) { .header__logo img { height: 46px; } }
.header__logo span {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink);
}

.nav { display: flex; align-items: center; gap: 1.75rem; }
.nav ul {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav a {
  font-family: var(--font-head);
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--ink-2);
  padding: .3rem 0;
  border-bottom: 2px solid transparent;
}
.nav a:hover { color: var(--red); border-bottom-color: var(--red); }
/* Must out-rank `.nav a` above, or the label inherits the dark nav colour. */
.nav a.nav__cta { color: #fff; }
.nav a.nav__cta:hover,
.nav a.nav__cta:focus-visible { color: #fff; border-bottom-color: transparent; }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px; height: 42px;
  padding: 0 10px;
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}
.burger span {
  display: block; height: 2px; width: 100%;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .22s ease, opacity .18s ease;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 960px) {
  .burger { display: flex; }
  .nav {
    position: fixed;
    inset: calc(var(--header-h) + 40px) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: .5rem clamp(1.1rem, 4vw, 2rem) 1.4rem;
    max-height: calc(100dvh - var(--header-h) - 40px);
    overflow-y: auto;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
  }
  .nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .nav li { border-bottom: 1px solid var(--line); }
  .nav a { display: block; padding: .95rem 0; font-size: 1.2rem; border-bottom: none; }
  .nav__cta { margin-top: 1.1rem; }
}

/* ---------- preview bar ---------- */
.preview-bar {
  background: #1d2129;
  color: #ffd9a1;
  font-size: .875rem;
  text-align: center;
  padding: .6rem 1rem;
}
.preview-bar strong { color: #fff; }
.preview-bar a { color: #ffb4b9; text-decoration: underline; margin-left: .5rem; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  isolation: isolate;
  background: var(--ink);
  padding: clamp(3.5rem, 9vw, 7rem) 0 0;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--hero-image, none);
  background-size: cover;
  background-position: center 40%;
  transform: scale(1.03);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(105deg, rgba(92, 1, 4, .93) 0%, rgba(117, 1, 2, .84) 38%, rgba(20, 22, 26, .78) 72%, rgba(20, 22, 26, .68) 100%),
    linear-gradient(0deg, rgba(12, 13, 16, .85) 0%, rgba(12, 13, 16, 0) 45%);
}
.hero__inner { max-width: 900px; padding-bottom: clamp(2.5rem, 6vw, 4.5rem); }
.hero__heading { color: #fff; margin-bottom: .45em; }
.hero__sub {
  color: #e7dadb;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  max-width: 62ch;
  margin-bottom: 2rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; }

.badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1px;
  list-style: none;
  margin: 0;
  padding: 0;
  background: rgba(255, 255, 255, .16);
  border-top: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
}
.badges li {
  background: rgba(14, 15, 18, .55);
  backdrop-filter: blur(6px);
  padding: 1.1rem 1.3rem;
}
.badges strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}
.badges span { font-size: .875rem; color: #cbbfc0; }

/* ---------- sections ---------- */
.section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.section--alt { background: var(--paper-alt); }
.section--tight { padding: clamp(2.5rem, 5vw, 3.5rem) 0; }

.section__head { max-width: 720px; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section__lede { font-size: 1.1rem; color: var(--ink-soft); margin: 0; }

.prose p { color: var(--ink-soft); }
.prose--light p { color: rgba(255, 255, 255, .88); }

/* ---------- service cards ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(295px, 1fr));
  gap: clamp(1rem, 2vw, 1.6rem);
  list-style: none;
  margin: 0;
  padding: 0;
}
.card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #d3d8de; }
.card__media { aspect-ratio: 16 / 9; background: var(--paper-alt); overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card:hover .card__media img { transform: scale(1.05); }
.card__body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; gap: .1rem; }
.card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  margin-bottom: .9rem;
  border-radius: 11px;
  color: var(--red);
  background: linear-gradient(160deg, #fdecec, #fbdcde);
  border: 1px solid #f5cfd2;
}
.card--media .card__icon { margin-top: -3.2rem; background: #fff; box-shadow: var(--shadow-sm); position: relative; }
.card__body h3 { margin-bottom: .35rem; }
.card__body p { color: var(--ink-soft); font-size: .95rem; margin: 0; }

/* ---------- split (about) ---------- */
.split {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(1.75rem, 5vw, 4rem);
  align-items: center;
}
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }
.split__media { position: relative; }
.split__media img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.split__stamp {
  position: absolute;
  right: -12px;
  bottom: -18px;
  margin: 0;
  padding: 1rem 1.35rem;
  background: linear-gradient(150deg, var(--red-bright), var(--red-dark));
  color: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  text-align: center;
}
.split__stamp strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.7rem;
  line-height: 1;
}
.split__stamp span { font-size: .8rem; color: rgba(255, 255, 255, .82); }
@media (max-width: 560px) { .split__stamp { right: 8px; bottom: -14px; padding: .7rem 1rem; } }

.ticks { list-style: none; margin: 1.75rem 0 0; padding: 0; display: grid; gap: .7rem; }
.ticks li { display: flex; align-items: flex-start; gap: .7rem; }
.ticks .icon {
  color: #fff;
  background: var(--red);
  border-radius: 50%;
  padding: 4px;
  margin-top: .28rem;
  width: 1.35rem; height: 1.35rem;
}
.ticks span { color: var(--ink-2); font-weight: 500; }

/* ---------- before & after ---------- */
.ba-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: clamp(1.25rem, 2.5vw, 2rem);
}
.ba {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.ba__compare {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #111;
  touch-action: pan-y;
  user-select: none;
  cursor: ew-resize;
}
.ba__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba__clip {
  position: absolute;
  inset: 0;
  clip-path: inset(0 calc(100% - var(--pos, 50%)) 0 0);
}
.ba__tag {
  position: absolute;
  top: .75rem;
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .25rem .65rem;
  border-radius: 100px;
  color: #fff;
  pointer-events: none;
  z-index: 3;
}
.ba__tag--before { left: .75rem; background: rgba(20, 22, 26, .78); }
.ba__tag--after  { right: .75rem; background: rgba(181, 21, 31, .88); }
.ba__handle {
  position: absolute;
  top: 0; bottom: 0;
  left: var(--pos, 50%);
  width: 3px;
  margin-left: -1.5px;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 4;
}
.ba__handle::after {
  content: "";
  position: absolute;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 3px 12px rgba(0, 0, 0, .35);
}
.ba__handle .icon {
  position: relative;
  z-index: 1;
  color: var(--red);
  width: 1.5rem; height: 1.5rem;
  stroke-width: 2.6;
  /* The handle is a 3px line, and the global `svg { max-width: 100% }` would
     otherwise shrink these to 3px wide. */
  max-width: none;
  flex: none;
}
/* The chevron ink is only the middle quarter of each 24-unit viewBox, so the
   icons overlap to bring the two arrowheads inside the 44px knob. */
.ba__handle .icon:first-child { margin-right: -6px; }
.ba__handle .icon:last-child { margin-left: -6px; }
.ba__srlabel {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}
.ba__range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  z-index: 5;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
}
.ba__range::-webkit-slider-thumb { -webkit-appearance: none; width: 48px; height: 100%; }
.ba__range::-moz-range-thumb { width: 48px; height: 100px; border: 0; }
.ba__range:focus-visible { opacity: 1; outline-offset: -4px; }
.ba__body { padding: 1.3rem 1.5rem 1.5rem; }
.ba__body h3 { margin-bottom: .4rem; }
.ba__body p { color: var(--ink-soft); font-size: .95rem; }
.ba__meta { margin-top: .6rem; font-size: .85rem; color: var(--ink-faint); }

/* ---------- work done ---------- */
.filters { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2rem; }
.filter {
  font-family: var(--font-head);
  font-size: .98rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .5rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: #fff;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all .16s ease;
}
.filter:hover { border-color: var(--red); color: var(--red); }
.filter.is-active { background: var(--red); border-color: var(--red); color: #fff; }

.work {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: clamp(1rem, 2vw, 1.6rem);
  list-style: none;
  margin: 0;
  padding: 0;
}
.work__item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.work__item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.work__item[hidden] { display: none; }
.work__thumb {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: var(--paper-alt);
  aspect-ratio: 4 / 3;
  cursor: zoom-in;
  overflow: hidden;
}
.work__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.work__thumb:hover img { transform: scale(1.06); }
.work__count {
  position: absolute;
  right: .7rem; bottom: .7rem;
  background: rgba(14, 15, 18, .78);
  color: #fff;
  font-size: .78rem;
  font-weight: 600;
  padding: .22rem .6rem;
  border-radius: 100px;
}
.work__body { padding: 1.25rem 1.4rem 1.5rem; }
.work__body h3 { margin-bottom: .4rem; }
.work__body p { color: var(--ink-soft); font-size: .95rem; margin: 0; }
.work__meta { margin-top: .7rem !important; font-size: .84rem; color: var(--ink-faint); }

/* ---------- videos ---------- */
.videos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: clamp(1rem, 2vw, 1.6rem);
  align-items: start;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 420px) { .videos { grid-template-columns: 1fr; } }
.video {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.video__frame { position: relative; aspect-ratio: 16 / 9; background: #111; }
.video__frame--square { aspect-ratio: 1 / 1; }
.video__frame--portrait { aspect-ratio: 9 / 16; }
.video__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video__body { padding: 1.25rem 1.4rem 1.5rem; }
.video__body h3 { margin-bottom: .4rem; }
.video__body p { color: var(--ink-soft); font-size: .95rem; margin: 0; }
.video__link { display: inline-flex; align-items: center; gap: .4rem; margin-top: .9rem; font-size: .88rem; font-weight: 600; }

/* ---------- compliance band ---------- */
.band {
  background:
    radial-gradient(1200px 400px at 10% 0%, rgba(216, 35, 47, .55), transparent 60%),
    linear-gradient(135deg, var(--red-dark) 0%, var(--red-ink) 55%, #3b0508 100%);
  color: #fff;
  padding: clamp(3rem, 7vw, 5.5rem) 0;
}
.band__inner {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (max-width: 900px) { .band__inner { grid-template-columns: 1fr; } }
.band h2 { color: #fff; }
.band__points { list-style: none; margin: 0; padding: 0; display: grid; gap: .8rem; }
.band__points li {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: .9rem;
  align-items: center;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius-sm);
  padding: .9rem 1.1rem;
}
.band__points .icon { grid-row: 1 / 3; color: #ffb9be; width: 1.9rem; height: 1.9rem; }
.band__points strong { font-family: var(--font-head); font-size: 1.2rem; letter-spacing: .03em; }
.band__points span { font-size: .875rem; color: rgba(255, 255, 255, .78); }

/* ---------- clients ---------- */
.clients__head {
  text-align: center;
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 1.75rem;
}
.clients {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: clamp(1.5rem, 5vw, 3.5rem);
}
.clients img { max-height: 52px; width: auto; filter: grayscale(1); opacity: .62; transition: all .2s ease; }
.clients li:hover img { filter: none; opacity: 1; }
.clients span { font-family: var(--font-head); font-size: 1.25rem; font-weight: 600; color: var(--ink-faint); letter-spacing: .06em; text-transform: uppercase; }

/* ---------- cta ---------- */
.cta { background: var(--ink); color: #fff; padding: clamp(2.5rem, 6vw, 4rem) 0; }
.cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta h2 { color: #fff; margin-bottom: .3em; }
.cta p { color: rgba(255, 255, 255, .74); margin: 0; max-width: 56ch; }
.cta__actions { display: flex; gap: .8rem; flex-wrap: wrap; }

/* ---------- contact ---------- */
.contact {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (max-width: 900px) { .contact { grid-template-columns: 1fr; } }

.contact__list { list-style: none; margin: 2rem 0 0; padding: 0; display: grid; gap: 1.1rem; }
.contact__list li { display: flex; gap: .9rem; align-items: flex-start; }
.contact__list .icon { color: var(--red); margin-top: .2rem; width: 1.5rem; height: 1.5rem; }
.contact__list a { font-weight: 600; font-size: 1.08rem; color: var(--ink); }
.contact__list a:hover { color: var(--red); }
.contact__list span { display: block; font-size: .92rem; color: var(--ink-soft); }
.contact__map { margin-top: 2rem; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.contact__map iframe { width: 100%; min-height: 280px; border: 0; display: block; }

.contact__form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: var(--shadow);
}
.section--alt .contact__form { background: #fff; }

.field { margin-bottom: 1.15rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 520px) { .field-row { grid-template-columns: 1fr; } }
.field label {
  display: block;
  font-weight: 600;
  font-size: .9rem;
  color: var(--ink);
  margin-bottom: .38rem;
}
.field label span { color: var(--red); }
.field input, .field textarea, .field select {
  width: 100%;
  font: inherit;
  color: var(--ink);
  padding: .78rem .9rem;
  border: 1px solid #d5dae0;
  border-radius: var(--radius-sm);
  background: #fbfcfd;
  transition: border-color .16s ease, box-shadow .16s ease, background .16s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  background: #fff;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(181, 21, 31, .13);
}
.field textarea { resize: vertical; min-height: 120px; }
.field.has-error input, .field.has-error textarea { border-color: var(--red-bright); background: #fff7f7; }
.field__error { margin: .35rem 0 0; font-size: .85rem; color: var(--red); font-weight: 500; }
.hp { position: absolute; left: -9999px; }

.notice {
  display: flex;
  gap: .8rem;
  align-items: flex-start;
  padding: 1rem 1.15rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.notice p { margin: 0; }
.notice--ok { background: #e9f7ee; border: 1px solid #b7e3c6; color: #1b6b38; }
.notice--ok .icon { color: #24904a; }

/* ---------- footer ---------- */
.footer { background: #0f1114; color: #a4acb6; padding: clamp(2.5rem, 6vw, 4rem) 0 0; font-size: .94rem; }
.footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.75rem, 4vw, 3.5rem);
  padding-bottom: 2.5rem;
}
@media (max-width: 760px) { .footer__inner { grid-template-columns: 1fr 1fr; } .footer__brand { grid-column: 1 / -1; } }
.footer__brand img { height: 62px; width: auto; margin-bottom: 1rem; }
.footer__brand strong { display: block; font-family: var(--font-head); font-size: 1.5rem; color: #fff; margin-bottom: .6rem; }
.footer__brand p { max-width: 44ch; }
.footer__col h3 { color: #fff; font-size: 1.15rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: .9rem; }
.footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.footer a { color: #a4acb6; }
.footer a:hover { color: #fff; }
.socials { display: flex; gap: .6rem; list-style: none; margin: 1.25rem 0 0; padding: 0; }
.socials a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border: 1px solid #2a2e35;
  border-radius: 9px;
  color: #cfd5dc;
}
.socials a:hover { background: var(--red); border-color: var(--red); color: #fff; }
.footer__base {
  border-top: 1px solid #1d2127;
  padding-top: 1.35rem;
  padding-bottom: 1.6rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .85rem;
  color: #767e88;
}
.footer__base p { margin: 0; }

/* ---------- lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(8, 9, 11, .94);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: clamp(1rem, 4vw, 3rem);
}
.lightbox[hidden] { display: none; }
.lightbox__figure { margin: 0; display: grid; justify-items: center; gap: 1rem; min-width: 0; }
.lightbox__figure img {
  max-width: 100%;
  max-height: 78dvh;
  width: auto;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
}
.lightbox__figure figcaption { color: #d6dae0; text-align: center; max-width: 70ch; font-size: .95rem; }
.lightbox__figure figcaption strong { display: block; font-family: var(--font-head); font-size: 1.35rem; color: #fff; }
.lightbox__close {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
}
.lightbox__close:hover { background: var(--red); border-color: var(--red); }
.lightbox__nav {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
}
.lightbox__nav:hover { background: var(--red); border-color: var(--red); }
.lightbox__nav[hidden] { visibility: hidden; display: grid; }
@media (max-width: 640px) {
  .lightbox { grid-template-columns: 1fr; grid-template-areas: "fig"; }
  .lightbox__figure { grid-area: fig; }
  .lightbox__nav { position: absolute; bottom: 1.5rem; }
  .lightbox__nav--prev { left: 25%; }
  .lightbox__nav--next { right: 25%; }
}

/* ==========================================================================
   Coming soon
   ========================================================================== */
body.is-soon { background: #0d0e11; }
.soon {
  position: relative;
  isolation: isolate;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}
.soon::before {
  content: "";
  position: absolute; inset: 0; z-index: -2;
  background-image: var(--soon-image, none);
  background-size: cover;
  background-position: center;
}
.soon::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(900px 600px at 50% 15%, rgba(181, 21, 31, .5), transparent 70%),
    linear-gradient(180deg, rgba(11, 12, 15, .88), rgba(11, 12, 15, .95));
}
.soon__inner {
  width: 100%;
  max-width: 760px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2rem);
  text-align: center;
  color: #fff;
}
.soon__logo { width: min(360px, 78vw); margin: 0 auto clamp(1.75rem, 5vw, 2.75rem); }
.soon__wordmark {
  font-family: var(--font-head);
  font-size: clamp(2rem, 7vw, 3rem);
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 2rem;
}
.soon__heading { color: #fff; font-size: clamp(2rem, 5.5vw, 3.4rem); margin-bottom: .6em; }
.soon__message { color: rgba(255, 255, 255, .8); font-size: 1.08rem; max-width: 56ch; margin-inline: auto; }
.soon__contacts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .8rem;
  margin: clamp(2rem, 5vw, 3rem) 0 2rem;
}
.soon__contact {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  padding: .85rem 1.35rem;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, .07);
  color: #fff;
  text-align: left;
  transition: all .18s ease;
}
.soon__contact:hover { background: var(--red); border-color: var(--red); color: #fff; transform: translateY(-2px); }
.soon__contact .icon { color: #ff9ba1; }
.soon__contact:hover .icon { color: #fff; }
.soon__contact strong { display: block; font-size: 1.05rem; }
.soon__contact em { font-style: normal; font-size: .82rem; color: rgba(255, 255, 255, .68); }
.soon__contact:hover em { color: rgba(255, 255, 255, .85); }
.soon__foot { font-size: .82rem; color: rgba(255, 255, 255, .45); margin: 0; }

@media print {
  .topbar, .header, .cta, .lightbox, .filters, .preview-bar { display: none !important; }
  body { color: #000; }
}
