:root {
  --ink-950: #050505;
  --ink-900: #111111;
  --ink-800: #1c1c20;
  --ink-700: #45454d;
  --ink-600: #6f7078;
  --surface-0: #f4f1f2;
  --surface-50: #fbf8f8;
  --surface-100: #ffffff;
  --line: #e3d6d8;
  --line-strong: #b49398;
  --brand-700: #b4121d;
  --brand-600: #cf1a26;
  --brand-500: #ed3640;
  --brand-200: #f5ced1;
  --accent-700: #2a2a30;
  --accent-600: #3b3c43;
  --accent-500: #55565f;
  --accent-200: #d8d8dc;
  --ok-600: #7f1118;
  --warning-600: #8f2f16;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --shadow-soft: 0 18px 36px rgba(8, 8, 9, 0.06);
  --shadow-strong: 0 28px 56px rgba(8, 8, 9, 0.14);
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", "Segoe UI", "Helvetica Neue", sans-serif;
  color: var(--ink-900);
  background:
    radial-gradient(circle at top right, rgba(180, 18, 29, 0.08), transparent 30%),
    radial-gradient(circle at bottom left, rgba(17, 17, 17, 0.06), transparent 28%),
    var(--surface-0);
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.wrap {
  width: min(var(--max-width), 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(8, 8, 8, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(180deg, #1b1b1f, #090909);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
}

.brand-text {
  line-height: 1.08;
}

.brand-text strong {
  display: block;
  font-family: "Sora", "Avenir Next", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.1px;
  color: #ffffff;
}

.brand-text span {
  display: block;
  margin-top: 3px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.62);
  letter-spacing: 0.2px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
  margin-right: 8px;
}

.main-nav a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 700;
  font-size: 0.93rem;
  padding: 10px 11px;
  border-radius: 10px;
  border: 1px solid transparent;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease,
    transform 0.15s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  padding: 9px 12px;
  font-weight: 700;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  white-space: nowrap;
  border-radius: 12px;
  padding: 11px 16px;
  font-weight: 800;
  font-size: 0.9rem;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(135deg, var(--brand-600), #76070f);
  box-shadow: 0 12px 26px rgba(109, 8, 14, 0.34);
  transition: transform 0.15s ease, filter 0.15s ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  transform: translateY(-1px);
  filter: saturate(1.06);
}

.hero {
  position: relative;
  padding: 64px 0 52px;
  background:
    radial-gradient(circle at top left, rgba(237, 54, 64, 0.16), transparent 26%),
    radial-gradient(circle at right center, rgba(180, 18, 29, 0.18), transparent 22%),
    linear-gradient(180deg, #0b0b0c 0%, #120609 46%, #0a0a0a 100%);
  overflow: clip;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px) 0 0 / 100% 42px,
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px) 0 0 / 42px 100%;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.95), transparent 92%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.22fr 0.78fr;
  gap: 24px;
}

.hero-main {
  position: relative;
  padding: clamp(26px, 3vw, 38px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(8, 8, 8, 0.76);
  box-shadow: 0 26px 54px rgba(0, 0, 0, 0.34);
  animation: fade-rise 0.7s ease forwards;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 13px;
  border-radius: 999px;
  font-size: 0.77rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: #ffd8da;
  background: rgba(180, 18, 29, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 14px;
}

.hero h1 {
  margin: 0;
  font-family: "Sora", "Avenir Next", sans-serif;
  letter-spacing: -0.3px;
  line-height: 1.04;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #ffffff;
}

.hero p {
  margin: 16px 0 0;
  max-width: 66ch;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.09rem;
  line-height: 1.62;
}

.hero-actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 800;
  border: 1px solid transparent;
  padding: 13px 17px;
  transition: background 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: none;
}

.btn-primary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.06);
  background: linear-gradient(135deg, var(--brand-600), #76070f);
  box-shadow: 0 14px 28px rgba(122, 10, 17, 0.28);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  filter: saturate(1.08);
}

.btn-secondary {
  color: var(--ink-900);
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.92);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: rgba(180, 18, 29, 0.22);
  box-shadow: 0 8px 18px rgba(16, 16, 16, 0.08);
}

.hero-badges {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-badges span {
  font-size: 0.84rem;
  font-weight: 750;
  padding: 6px 11px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
}

.qualification-mark {
  display: flex;
  align-items: center;
  gap: 14px;
  width: min(100%, 430px);
  margin-top: 18px;
  padding: 12px 14px 12px 12px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background:
    radial-gradient(circle at 18% 18%, rgba(237, 54, 64, 0.35), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(180, 18, 29, 0.14)),
    rgba(8, 8, 8, 0.66);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 18px 34px rgba(0, 0, 0, 0.18);
}

.qualification-mark img {
  width: 72px;
  height: 72px;
  flex: 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.28));
}

.qualification-copy strong,
.credential-panel strong {
  display: block;
  font-family: "Sora", "Avenir Next", sans-serif;
  color: #ffffff;
  font-size: 0.98rem;
  letter-spacing: -0.1px;
}

.qualification-copy span,
.credential-panel span {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
  line-height: 1.45;
}

.hero-aside {
  display: grid;
  align-content: start;
  gap: 12px;
  animation: fade-rise 0.84s ease forwards;
}

.mini-card,
.quote-card {
  background: rgba(14, 14, 15, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.22);
}

.mini-card {
  padding: 16px;
}

.mini-card strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-family: "Sora", "Avenir Next", sans-serif;
  font-size: 1.03rem;
}

.mini-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.6;
}

.mini-links {
  margin: 10px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 7px;
}

.mini-links a {
  color: #ffd7da;
  font-weight: 700;
  text-decoration: none;
}

.mini-links a:hover,
.mini-links a:focus-visible {
  text-decoration: underline;
}

.quote-card {
  background: linear-gradient(145deg, rgba(180, 18, 29, 0.96), rgba(13, 13, 14, 0.96));
  color: #f9f3f4;
  padding: 20px;
}

.quote-card h2 {
  margin: 0 0 10px;
  font-family: "Sora", "Avenir Next", sans-serif;
  font-size: 1.2rem;
}

.quote-card p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
}

.quote-card .btn-primary {
  background: linear-gradient(140deg, #f05057, #9a0f18);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 20px rgba(11, 20, 30, 0.4);
}

.section {
  padding: 62px 0;
}

.section.alt {
  border-top: 1px solid rgba(180, 18, 29, 0.08);
  border-bottom: 1px solid rgba(180, 18, 29, 0.08);
  background: linear-gradient(180deg, #f9f5f6 0%, #fff 100%);
}

.availability {
  padding-top: 14px;
}

.brand-strip {
  position: relative;
  padding: 42px 0;
  color: var(--ink-900);
  background:
    radial-gradient(circle at 10% 0%, rgba(180, 18, 29, 0.08), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f7eff0 100%);
  border-bottom: 1px solid rgba(180, 18, 29, 0.08);
}

.brand-strip-inner {
  display: grid;
  grid-template-columns: 0.74fr 1.26fr;
  align-items: center;
  gap: clamp(22px, 4vw, 52px);
}

.brand-strip-copy {
  max-width: 42ch;
}

.brand-strip .kicker {
  color: var(--brand-700);
}

.brand-strip h2 {
  margin: 0;
  font-family: "Sora", "Avenir Next", sans-serif;
  line-height: 1.15;
  letter-spacing: -0.2px;
  color: var(--ink-950);
  font-size: clamp(1.55rem, 2.5vw, 2.2rem);
}

.brand-strip p {
  margin: 12px 0 0;
  color: var(--ink-700);
  line-height: 1.62;
}

.brand-logo-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.brand-logo-card {
  --logo-bg: #f8f5f5;
  margin: 0;
}

.brand-logo-frame {
  display: grid;
  place-items: center;
  min-height: 86px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(180, 18, 29, 0.1);
  background: var(--logo-bg);
  box-shadow: 0 12px 24px rgba(8, 8, 9, 0.07);
}

.brand-logo-card:hover .brand-logo-frame {
  border-color: rgba(180, 18, 29, 0.2);
}

.brand-logo-card img {
  width: 100%;
  max-height: 48px;
  object-fit: contain;
}

.brand-logo-card figcaption {
  margin-top: 8px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-align: center;
  color: var(--ink-600);
}

.brand-dark {
  --logo-bg: #050505;
}

.brand-black {
  --logo-bg: #1b1b1d;
}

.brand-blue {
  --logo-bg: #0d3446;
}

.availability-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.section h2 {
  margin: 0;
  font-family: "Sora", "Avenir Next", sans-serif;
  line-height: 1.16;
  letter-spacing: -0.2px;
  font-size: clamp(1.5rem, 3.1vw, 2.3rem);
  color: var(--ink-950);
}

.section-head {
  max-width: 74ch;
  margin-bottom: 24px;
}

.section-head p {
  margin: 10px 0 0;
  color: var(--ink-700);
  font-size: 1.05rem;
  line-height: 1.62;
}

.kicker {
  display: inline-block;
  margin-bottom: 8px;
  padding: 4px 0;
  font-size: 0.79rem;
  letter-spacing: 0.45px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--brand-700);
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 14px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.panel {
  position: relative;
  border-radius: var(--radius-md);
  border: 1px solid rgba(180, 18, 29, 0.09);
  background: linear-gradient(180deg, #ffffff 0%, #fbf7f7 100%);
  box-shadow: var(--shadow-soft);
  padding: 20px;
  height: 100%;
  transition: box-shadow 0.17s ease, border-color 0.17s ease;
}

.panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(180, 18, 29, 0.85), rgba(180, 18, 29, 0));
}

.panel:hover,
.panel:focus-within {
  box-shadow: 0 20px 38px rgba(10, 10, 12, 0.1);
  border-color: rgba(180, 18, 29, 0.18);
}

.area-panel-link {
  display: block;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.area-panel-link h3 {
  color: var(--ink-950);
}

.area-meta {
  display: block;
  margin-top: 10px;
  color: var(--ink-600);
  font-size: 0.92rem;
  font-weight: 700;
}

.panel h3 {
  margin: 0 0 8px;
  font-family: "Sora", "Avenir Next", sans-serif;
  font-size: 1.08rem;
  color: var(--ink-950);
}

.panel p {
  margin: 0;
  color: var(--ink-700);
  line-height: 1.6;
}

.panel ul {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--ink-700);
  line-height: 1.58;
}

.answer-strip {
  background:
    radial-gradient(circle at 18% 10%, rgba(180, 18, 29, 0.08), transparent 32%),
    linear-gradient(180deg, #fff, #f8f1f2);
}

.answer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.answer-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(180, 18, 29, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(249, 242, 243, 0.96)),
    #ffffff;
  box-shadow: var(--shadow-soft);
}

.answer-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--brand-600), rgba(180, 18, 29, 0));
}

.answer-card h3 {
  margin: 0 0 8px;
  font-family: "Sora", "Avenir Next", sans-serif;
  font-size: 1rem;
  color: var(--ink-950);
}

.answer-card p {
  margin: 0;
  color: var(--ink-700);
  font-size: 0.96rem;
  line-height: 1.6;
}

.credential-panel {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding: 13px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background:
    radial-gradient(circle at 16% 20%, rgba(237, 54, 64, 0.36), transparent 36%),
    linear-gradient(140deg, #17171a, #070707 64%, #33060a);
  box-shadow: 0 16px 30px rgba(8, 8, 9, 0.14);
}

.credential-panel-compact {
  margin-top: 10px;
  margin-bottom: 12px;
}

.credential-panel img {
  width: 62px;
  height: 62px;
  flex: 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 9px 16px rgba(0, 0, 0, 0.28));
}

.steps {
  counter-reset: flow;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.step {
  border-radius: var(--radius-md);
  border: 1px solid rgba(180, 18, 29, 0.09);
  background: linear-gradient(180deg, #ffffff, #fbf7f7);
  box-shadow: var(--shadow-soft);
  padding: 18px;
}

.step::before {
  counter-increment: flow;
  content: counter(flow);
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  margin-bottom: 10px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(140deg, var(--brand-700), var(--brand-500));
}

.step h3 {
  margin: 0 0 8px;
  font-family: "Sora", "Avenir Next", sans-serif;
  font-size: 1.02rem;
}

.step p {
  margin: 0;
  color: var(--ink-700);
}

.locations {
  display: grid;
  gap: 11px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.location-link {
  display: block;
  text-decoration: none;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(180, 18, 29, 0.1);
  background: linear-gradient(180deg, #ffffff, #f9f3f4);
  color: var(--ink-900);
  font-weight: 800;
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.location-link small {
  display: block;
  margin-top: 4px;
  color: var(--ink-700);
  font-weight: 650;
}

.location-link:hover,
.location-link:focus-visible {
  border-color: rgba(180, 18, 29, 0.26);
  transform: none;
  box-shadow: 0 12px 24px rgba(10, 10, 12, 0.08);
}

.review {
  border-left: 4px solid var(--brand-500);
  border-radius: 12px;
  border: 1px solid rgba(180, 18, 29, 0.1);
  background: linear-gradient(180deg, #ffffff, #fbf7f7);
  box-shadow: var(--shadow-soft);
  padding: 16px;
}

.review p {
  margin: 0;
  color: var(--ink-800);
  line-height: 1.62;
}

.review cite {
  display: block;
  margin-top: 10px;
  color: var(--ink-600);
  font-style: normal;
  font-weight: 700;
}

.project-gallery-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.project-gallery-card {
  display: grid;
  gap: 8px;
  text-decoration: none;
  border: 1px solid rgba(180, 18, 29, 0.16);
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff, #faf1f2);
  box-shadow: var(--shadow-soft);
  padding: 10px;
  color: var(--ink-900);
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.project-gallery-card img {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(39, 52, 69, 0.15);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.project-gallery-card span {
  font-weight: 800;
  font-size: 0.95rem;
}

.project-gallery-card:hover,
.project-gallery-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(180, 18, 29, 0.3);
  box-shadow: 0 12px 24px rgba(10, 23, 38, 0.18);
}

.media-feature-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.85fr);
  gap: 24px;
  align-items: center;
  margin-bottom: 22px;
}

.media-feature-copy h2 {
  margin: 10px 0 12px;
}

.media-feature-copy p {
  margin: 0;
  max-width: 56ch;
  color: var(--ink-700);
}

.media-feature-video-wrap {
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid #dbe8ee;
  background: #091219;
  box-shadow: 0 18px 34px rgba(24, 61, 76, 0.12);
}

.media-feature-video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: #000;
}

.faq details {
  border: 1px solid rgba(180, 18, 29, 0.12);
  border-radius: 12px;
  background: #fff;
  padding: 12px 14px;
}

.faq details + details {
  margin-top: 9px;
}

.faq summary {
  cursor: pointer;
  color: var(--ink-900);
  font-weight: 800;
}

.faq p {
  margin: 8px 0 0;
  color: var(--ink-700);
}

.callout {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top left, rgba(237, 54, 64, 0.16), transparent 26%),
    linear-gradient(180deg, #131315, #090909);
  box-shadow: var(--shadow-soft);
  color: #f3ecee;
  padding: 26px;
}

.callout h2 {
  margin-top: 0;
  color: #ffffff;
}

.callout p {
  color: rgba(255, 255, 255, 0.76);
}

.callout label {
  color: #f4edef;
}

.callout .form-note {
  color: rgba(255, 255, 255, 0.68);
}

.callout .btn-primary {
  background: var(--brand-700);
  box-shadow: 0 8px 18px rgba(11, 20, 30, 0.18);
}

.booking-request-form {
  display: grid;
  gap: 12px;
}

.booking-group {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.06);
  padding: 12px;
}

.booking-group h3 {
  margin: 0 0 10px;
  font-size: 0.95rem;
  font-family: "Sora", "Avenir Next", sans-serif;
  color: #f3f9fe;
}

.booking-grid {
  display: grid;
  gap: 10px;
}

.booking-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.booking-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.booking-span-2 {
  grid-column: span 2;
}

.booking-span-3 {
  grid-column: span 3;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

label {
  display: block;
  margin-bottom: 6px;
  font-weight: 700;
  color: var(--ink-900);
}

.input {
  width: 100%;
  padding: 11px 12px;
  border-radius: 10px;
  border: 1px solid #cfb7bb;
  background: #fff;
  color: var(--ink-900);
  font: inherit;
}

.iti {
  width: 100%;
}

.iti .iti__tel-input {
  width: 100%;
}

.input:focus {
  outline: 2px solid rgba(180, 18, 29, 0.22);
  outline-offset: 1px;
  border-color: rgba(180, 18, 29, 0.38);
}

textarea.input {
  min-height: 124px;
  resize: vertical;
}

.file-field {
  margin-top: 10px;
}

.file-input {
  padding: 8px;
  background: linear-gradient(180deg, #ffffff, #faf4f5);
}

.file-input::file-selector-button {
  margin-right: 12px;
  border: 0;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--brand-600), #7b0810);
  color: #ffffff;
  font: inherit;
  font-weight: 800;
  padding: 9px 12px;
  cursor: pointer;
}

.file-input:hover::file-selector-button,
.file-input:focus::file-selector-button {
  filter: saturate(1.08);
}

.field-note {
  margin: 7px 0 0;
  color: var(--ink-600);
  font-size: 0.88rem;
  line-height: 1.45;
}

.check-grid {
  display: grid;
  gap: 8px 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 10px;
}

.check-grid label {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.form-note {
  margin: 10px 0 0;
  font-size: 0.94rem;
  color: var(--ink-600);
}

.flatpickr-calendar {
  border-radius: 12px;
  border: 1px solid rgba(34, 52, 73, 0.2);
  box-shadow: var(--shadow-soft);
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
  background: var(--brand-700);
  border-color: var(--brand-700);
}

.contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.contact-list li {
  color: var(--ink-800);
}

.contact-list strong {
  color: var(--ink-900);
}

.breadcrumb {
  padding: 18px 0 0;
}

.breadcrumb a,
.breadcrumb span {
  font-size: 0.9rem;
  color: var(--ink-600);
}

.breadcrumb a {
  text-decoration: none;
}

.breadcrumb a:hover,
.breadcrumb a:focus-visible {
  text-decoration: underline;
}

.page-hero {
  padding: 36px 0 34px;
}

.page-hero .panel {
  padding: clamp(24px, 3vw, 36px);
  border-left: 4px solid rgba(180, 18, 29, 0.82);
  background:
    radial-gradient(circle at top right, rgba(237, 54, 64, 0.14), transparent 24%),
    linear-gradient(180deg, #111112, #090909);
  color: #f5eeef;
}

.page-hero h1 {
  margin: 0;
  font-family: "Sora", "Avenir Next", sans-serif;
  font-size: clamp(1.75rem, 3.6vw, 2.85rem);
  line-height: 1.12;
  color: #fff;
}

.page-hero p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.78);
  max-width: 67ch;
}

.page-hero .kicker,
.page-hero .form-note {
  color: rgba(255, 222, 224, 0.84);
}

.service-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1.16fr 0.84fr;
  align-items: start;
}

.table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(180, 18, 29, 0.14);
  background: #fff;
}

.table th,
.table td {
  text-align: left;
  padding: 11px 12px;
  border-bottom: 1px solid #ecdfe0;
}

.table th {
  background: #f5e7e8;
  color: var(--ink-900);
  font-family: "Sora", "Avenir Next", sans-serif;
  font-size: 0.9rem;
}

.table tr:last-child td {
  border-bottom: 0;
}

.site-footer {
  margin-top: 62px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(circle at top left, rgba(180, 18, 29, 0.14), transparent 22%),
    #070707;
  color: #f1eaeb;
  padding: 34px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
}

.site-footer a {
  color: #ffdadd;
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  text-decoration: underline;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
}

.legal {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.88rem;
}

.sticky-mobile {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 80;
  display: none;
  gap: 8px;
}

.sticky-mobile a {
  flex: 1;
  text-align: center;
  text-decoration: none;
  padding: 12px 8px;
  border-radius: 12px;
  font-weight: 800;
  box-shadow: var(--shadow-soft);
}

.sticky-mobile .call {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #131316;
}

.sticky-mobile .quote {
  color: #fff;
  background: linear-gradient(135deg, var(--brand-600), #76070f);
}

.sticky-mobile .text {
  color: #fff;
  background: linear-gradient(180deg, #202126, #101114);
}

.admin-section {
  padding-top: 20px;
  padding-bottom: 20px;
}

.admin-kpi p {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 800;
}

.admin-ok {
  color: #0f7a54;
  font-weight: 700;
}

.admin-bad {
  color: #b92e3f;
  font-weight: 700;
}

.admin-template-list {
  display: grid;
  gap: 12px;
}

.admin-template-item h4 {
  margin: 0 0 8px;
  font-size: 0.95rem;
  font-family: "Sora", "Avenir Next", sans-serif;
  color: var(--ink-950);
}

.admin-template-text {
  min-height: 90px;
  margin-bottom: 8px;
  resize: vertical;
  font-size: 0.9rem;
  line-height: 1.45;
}

.admin-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 9px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.76rem;
  font-weight: 800;
}

.admin-chip-new {
  color: #7b0d15;
  background: #f6d8db;
  border-color: #ebbbc0;
}

.admin-chip-contacted {
  color: #69400c;
  background: #f8e0c5;
  border-color: #ecbe94;
}

.admin-chip-quoted {
  color: #4c2330;
  background: #f6d9e7;
  border-color: #e5b6cd;
}

.admin-chip-measure-booked {
  color: #30353d;
  background: #e4e5ea;
  border-color: #c8cad3;
}

.admin-chip-awaiting-photos,
.admin-chip-ready-to-quote,
.admin-chip-quote-sent,
.admin-chip-awaiting-approval,
.admin-chip-approved-to-schedule,
.admin-chip-invoice-sent {
  color: #7b0d15;
  background: #f6d8db;
  border-color: #ebbbc0;
}

.admin-chip-won {
  color: #0f6133;
  background: #c9f0d7;
  border-color: #9ddfb6;
}

.admin-chip-lost {
  color: #7a2430;
  background: #f8d3d8;
  border-color: #e8aab3;
}

.admin-chip-default {
  color: var(--ink-700);
  background: #e7f1f9;
  border-color: #bfd4e5;
}

.admin-row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.admin-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d6c0c3;
  background: linear-gradient(180deg, #ffffff, #f7eff0);
  color: var(--ink-900);
  border-radius: 10px;
  padding: 7px 9px;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
}

.admin-action-btn:hover,
.admin-action-btn:focus-visible {
  border-color: rgba(180, 18, 29, 0.28);
}

.admin-action-danger {
  border-color: #d5949d;
  color: #8e2e3a;
  background: linear-gradient(180deg, #fff, #f9e7ea);
}

.admin-followup-overdue {
  color: #8c1f2f;
  font-weight: 700;
}

@keyframes fade-rise {
  from {
    opacity: 0;
    transform: translateY(11px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .hero-grid,
  .service-grid,
  .answer-grid,
  .grid-4,
  .grid-3,
  .grid-2,
  .steps,
  .locations,
  .project-gallery-grid,
  .footer-grid,
  .availability-grid {
    grid-template-columns: 1fr 1fr;
  }

  .brand-strip-inner {
    grid-template-columns: 1fr;
  }

  .brand-strip-copy {
    max-width: 64ch;
  }

  .brand-logo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .service-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .main-nav {
    display: none;
  }

  .main-nav.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    left: 4vw;
    right: 4vw;
    top: 62px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(18, 18, 20, 0.98), rgba(8, 8, 8, 0.98));
    padding: 10px;
    box-shadow: var(--shadow-strong);
  }

  .main-nav.open a {
    border-radius: 10px;
    padding: 12px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding-top: 26px;
  }

  .hero-grid,
  .answer-grid,
  .grid-4,
  .grid-3,
  .grid-2,
  .steps,
  .locations,
  .project-gallery-grid,
  .footer-grid,
  .form-grid,
  .check-grid,
  .availability-grid {
    grid-template-columns: 1fr;
  }

  .booking-grid-2,
  .booking-grid-3 {
    grid-template-columns: 1fr;
  }

  .booking-span-2,
  .booking-span-3 {
    grid-column: auto;
  }

  .section {
    padding: 50px 0;
  }

  .brand-strip {
    padding: 38px 0;
  }

  .brand-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand-logo-frame {
    min-height: 86px;
    padding: 16px;
  }

  .qualification-mark,
  .credential-panel {
    align-items: flex-start;
  }

  .qualification-mark img,
  .credential-panel img {
    width: 58px;
    height: 58px;
  }

  .sticky-mobile {
    display: flex;
  }

  body {
    padding-bottom: 78px;
  }
}

:root {
  --ink-950: #091319;
  --ink-900: #102027;
  --ink-800: #19313b;
  --ink-700: #4a656d;
  --ink-600: #68828a;
  --surface-0: #eef4f3;
  --surface-50: #f8fbfb;
  --line: #d5e2e1;
  --line-strong: #93afb4;
  --brand-700: #0b7e9e;
  --brand-600: #129bc2;
  --brand-500: #27b8d6;
  --brand-200: #d4eef5;
  --accent-700: #20353d;
  --accent-600: #314850;
  --accent-500: #556b73;
  --accent-200: #d4dfe1;
}

body {
  background:
    radial-gradient(circle at top right, rgba(18, 155, 194, 0.08), transparent 30%),
    radial-gradient(circle at bottom left, rgba(16, 32, 39, 0.06), transparent 28%),
    var(--surface-0);
}

.header-cta,
.sticky-mobile .quote,
.file-input::file-selector-button {
  background: linear-gradient(135deg, var(--brand-600), #0a6077);
}

.header-cta {
  box-shadow: 0 12px 26px rgba(11, 74, 92, 0.3);
}

.hero {
  background:
    radial-gradient(circle at top left, rgba(39, 184, 214, 0.16), transparent 26%),
    radial-gradient(circle at right center, rgba(18, 155, 194, 0.18), transparent 22%),
    linear-gradient(180deg, #091219 0%, #0d2330 46%, #091117 100%);
}

.hero-kicker,
.page-hero .kicker,
.page-hero .form-note {
  color: #d7f5fb;
}

.hero-kicker {
  background: rgba(18, 155, 194, 0.16);
}

.header-cta,
.quote-card,
.callout,
.page-hero .panel,
.site-footer,
.sticky-mobile .call,
.sticky-mobile .text {
  color: #edf8fb;
}

.qualification-mark,
.credential-panel {
  background:
    radial-gradient(circle at 16% 20%, rgba(39, 184, 214, 0.34), transparent 36%),
    linear-gradient(140deg, #14313c, #071016 64%, #0a2431);
}

.quote-card {
  background: linear-gradient(145deg, rgba(18, 155, 194, 0.94), rgba(10, 29, 36, 0.98));
}

.quote-card .btn-primary {
  background: linear-gradient(140deg, #5cd0e8, #0b7e9e);
}

.section.alt,
.brand-strip,
.answer-strip {
  border-top-color: rgba(18, 155, 194, 0.08);
  border-bottom-color: rgba(18, 155, 194, 0.08);
}

.section.alt {
  background: linear-gradient(180deg, #f5fbfc 0%, #fff 100%);
}

.brand-strip {
  background:
    radial-gradient(circle at 10% 0%, rgba(18, 155, 194, 0.08), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f2fafc 100%);
}

.answer-strip {
  background:
    radial-gradient(circle at 18% 10%, rgba(18, 155, 194, 0.08), transparent 32%),
    linear-gradient(180deg, #fff, #f3fbfc);
}

.panel,
.answer-card,
.step,
.location-link,
.review,
.project-gallery-card,
.faq details,
.trade-banner,
.phone-card,
.media-card {
  border-color: rgba(18, 155, 194, 0.12);
  background: linear-gradient(180deg, #ffffff 0%, #f7fbfc 100%);
}

.panel::before,
.answer-card::before,
.phone-card::after {
  background: linear-gradient(90deg, rgba(18, 155, 194, 0.85), rgba(18, 155, 194, 0));
}

.panel:hover,
.panel:focus-within,
.location-link:hover,
.location-link:focus-visible,
.project-gallery-card:hover,
.project-gallery-card:focus-visible {
  border-color: rgba(18, 155, 194, 0.26);
}

.callout {
  background:
    radial-gradient(circle at top left, rgba(39, 184, 214, 0.16), transparent 26%),
    linear-gradient(180deg, #102027, #091117);
}

.input:focus {
  outline: 2px solid rgba(18, 155, 194, 0.22);
  border-color: rgba(18, 155, 194, 0.38);
}

.page-hero .panel {
  border-left-color: rgba(18, 155, 194, 0.82);
  background:
    radial-gradient(circle at top right, rgba(39, 184, 214, 0.14), transparent 24%),
    linear-gradient(180deg, #102027, #091117);
}

.table,
.table th {
  border-color: rgba(18, 155, 194, 0.14);
}

.table th {
  background: #e2f1f5;
}

.site-footer {
  background:
    radial-gradient(circle at top left, rgba(18, 155, 194, 0.14), transparent 22%),
    #091117;
}

.site-footer a,
.mini-links a {
  color: #d7f5fb;
}

.dual-contact-grid,
.comparison-grid,
.trade-proof-grid {
  display: grid;
  gap: 14px;
}

.dual-contact-grid,
.comparison-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.phone-card {
  position: relative;
  overflow: hidden;
  padding: 18px;
  box-shadow: var(--shadow-soft);
}

.phone-card h3 {
  margin: 0 0 6px;
  font-family: "Sora", "Avenir Next", sans-serif;
  font-size: 1.08rem;
}

.phone-card p {
  margin: 0;
  line-height: 1.58;
}

.phone-card .phone-link {
  display: inline-flex;
  margin-top: 12px;
  text-decoration: none;
  font-weight: 800;
  color: var(--brand-700);
}

.phone-card .phone-link:hover,
.phone-card .phone-link:focus-visible {
  text-decoration: underline;
}

.media-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.media-card .media-copy {
  padding: 16px;
}

.service-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.service-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(18, 155, 194, 0.15);
  background: rgba(18, 155, 194, 0.08);
  color: var(--ink-900);
  font-weight: 700;
  font-size: 0.92rem;
}

.trade-banner {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.trade-banner strong {
  font-family: "Sora", "Avenir Next", sans-serif;
  font-size: 1.05rem;
}

.helper-list {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--ink-700);
  line-height: 1.58;
}

@media (max-width: 900px) {
  .dual-contact-grid,
  .comparison-grid {
    grid-template-columns: 1fr;
  }
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: 16px;
  top: 12px;
  width: auto;
  height: auto;
  padding: 10px 12px;
  border-radius: 10px;
  background: #ffffff;
  color: var(--ink-950);
  z-index: 120;
  box-shadow: var(--shadow-soft);
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-600), #0a6077);
  box-shadow: 0 12px 24px rgba(11, 74, 92, 0.28);
}

.media-card .media-copy strong {
  color: var(--ink-950);
  font-family: "Sora", "Avenir Next", sans-serif;
}

.media-card .media-copy p {
  margin: 8px 0 0;
  color: var(--ink-700);
  line-height: 1.58;
}

body {
  background:
    radial-gradient(circle at top right, rgba(15, 141, 178, 0.06), transparent 26%),
    linear-gradient(180deg, #f9fcfe 0%, #f3f8fb 100%);
  color: #223844;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #d7e5ec;
  box-shadow: 0 10px 30px rgba(24, 61, 76, 0.08);
  backdrop-filter: none;
}

.brand img {
  box-shadow: none;
}

.brand-text strong,
.main-nav a {
  color: #28424e;
}

.brand-text span {
  color: #6a8592;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: #0f8db2;
}

.header-cta {
  background: linear-gradient(135deg, #0f8db2, #0a6f8d);
  box-shadow: 0 16px 30px rgba(15, 141, 178, 0.22);
}

.site-footer {
  background:
    radial-gradient(circle at top left, rgba(15, 141, 178, 0.15), transparent 24%),
    #252e38;
  color: #f3f7fa;
}

.site-footer a {
  color: #f3f7fa;
}

.home-refresh .brand-full {
  max-width: 246px;
}

.brand-logo-full {
  display: block;
  width: 100%;
  height: auto;
}

.brand-full .brand-logo-full {
  width: 100%;
  height: auto;
  max-width: none;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.home-header-row {
  min-height: 88px;
}

.header-call {
  white-space: nowrap;
}

.menu-toggle {
  color: #28424e;
  background: #ffffff;
  border-color: #d7e5ec;
}

.home-hero {
  padding: 56px 0 28px;
}

.home-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(300px, 0.98fr);
  gap: 36px;
  align-items: center;
}

.hero-kicker-light {
  color: #0f8db2;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.home-hero-copy h1 {
  margin: 14px 0 18px;
  font-family: "Sora", "Avenir Next", sans-serif;
  font-size: clamp(2.5rem, 5.4vw, 4.35rem);
  line-height: 1.08;
  color: #243844;
}

.home-hero-copy h1 span {
  color: #0f8db2;
}

.home-hero-copy p {
  max-width: 640px;
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.75;
  color: #4e6571;
}

.hero-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.hero-benefits li {
  position: relative;
  padding-left: 18px;
  color: #38525f;
  font-weight: 700;
}

.hero-benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #0f8db2;
}

.home-hero-visual {
  position: relative;
}

.hero-image-stage {
  position: relative;
  min-height: 520px;
  border-radius: 34px;
  background:
    radial-gradient(circle at center, rgba(15, 141, 178, 0.12), transparent 46%),
    linear-gradient(180deg, #ffffff, #f4f8fb);
  border: 1px solid #dfebf1;
  overflow: hidden;
}

.hero-main-image {
  position: absolute;
  inset: 36px 54px 104px 54px;
  width: calc(100% - 108px);
  height: calc(100% - 140px);
  object-fit: contain;
  filter: drop-shadow(0 28px 40px rgba(33, 58, 70, 0.14));
}

.hero-floating-image {
  position: absolute;
  right: 48px;
  bottom: 24px;
  width: min(52%, 320px);
  border-radius: 24px;
  background: #fff;
  padding: 10px;
  border: 1px solid #dbe8ee;
  box-shadow: 0 24px 40px rgba(34, 56, 68, 0.14);
}

.compact-section {
  padding-top: 0;
}

.contact-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-showcase-grid-single {
  grid-template-columns: 1fr;
}

.contact-spotlight-card {
  display: flex;
  gap: 18px;
  padding: 26px;
  border-radius: 24px;
  border: 1px solid #dbe8ee;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
  box-shadow: 0 18px 38px rgba(24, 61, 76, 0.06);
}

.profile-badge {
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #0f8db2, #0b6f8e);
  color: #fff;
  font-family: "Sora", "Avenir Next", sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
}

.profile-badge-dark {
  background: linear-gradient(135deg, #404a56, #212a34);
}

.contact-spotlight-copy h2 {
  margin: 0;
  font-size: 2rem;
  color: #0f8db2;
}

.contact-role {
  margin: 6px 0 12px;
  color: #2c4450;
  font-weight: 700;
}

.contact-spotlight-card-single {
  align-items: center;
}

.mini-contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
  color: #4a616d;
}

.mini-contact-list a {
  color: inherit;
  text-decoration: none;
}

.mini-contact-list a:hover,
.mini-contact-list a:focus-visible {
  color: #0f8db2;
}

.contact-spotlight-copy .btn {
  margin-top: 16px;
}

.contact-spotlight-copy .hero-actions .btn {
  margin-top: 0;
}

.btn-dark {
  background: #252e38;
  border-color: #252e38;
  color: #fff;
}

.btn-dark:hover,
.btn-dark:focus-visible {
  background: #111922;
  border-color: #111922;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 20px;
  border-radius: 24px;
  border: 1px solid #dbe8ee;
  background: #fff;
  box-shadow: 0 18px 38px rgba(24, 61, 76, 0.05);
}

.trust-item {
  display: grid;
  gap: 6px;
}

.trust-item strong {
  color: #243844;
  font-size: 1rem;
}

.trust-item span {
  color: #58717d;
}

.section-head-centered {
  text-align: center;
}

.service-card-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.service-card-clean {
  padding: 24px 20px;
  border-radius: 22px;
  border: 1px solid #dbe8ee;
  background: linear-gradient(180deg, #ffffff 0%, #f9fcfd 100%);
  box-shadow: 0 18px 34px rgba(24, 61, 76, 0.05);
}

.service-card-chip {
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(15, 141, 178, 0.1);
  color: #0f8db2;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.service-card-clean h3 {
  margin: 16px 0 10px;
  font-size: 1.32rem;
  line-height: 1.25;
  color: #243844;
}

.service-card-clean p {
  margin: 0;
  color: #5d7480;
  line-height: 1.72;
}

.service-card-clean a {
  display: inline-flex;
  margin-top: 16px;
  color: #0f8db2;
  font-weight: 800;
  text-decoration: none;
}

.service-card-clean a:hover,
.service-card-clean a:focus-visible {
  text-decoration: underline;
}

.section-soft {
  background:
    radial-gradient(circle at top left, rgba(15, 141, 178, 0.06), transparent 26%),
    linear-gradient(180deg, #f8fbfd 0%, #ffffff 100%);
}

.gallery-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.gallery-preview-card {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid #dbe8ee;
  background: #fff;
  box-shadow: 0 18px 34px rgba(24, 61, 76, 0.06);
}

.gallery-preview-card img {
  width: 100%;
  height: 230px;
  object-fit: contain;
  background: linear-gradient(180deg, #ffffff, #f6fafc);
}

.gallery-preview-badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(15, 141, 178, 0.92);
  color: #fff;
  padding: 8px 12px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 20px rgba(15, 141, 178, 0.18);
}

.gallery-preview-card-video::after {
  content: "Play";
  position: absolute;
  right: 14px;
  top: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(10, 18, 25, 0.82);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.gallery-preview-actions {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.trade-feature-card {
  padding: 34px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(15, 141, 178, 0.14), transparent 30%),
    linear-gradient(135deg, #2b323b 0%, #1a222d 100%);
  color: #f4f8fb;
  box-shadow: 0 24px 44px rgba(21, 34, 44, 0.18);
}

.trade-feature-copy h2 {
  margin: 10px 0 14px;
  font-size: clamp(2rem, 3.8vw, 3rem);
  line-height: 1.08;
}

.trade-feature-copy p {
  margin: 0;
  max-width: 720px;
  color: rgba(243, 247, 250, 0.88);
  line-height: 1.8;
}

.trade-feature-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.trade-feature-list li {
  position: relative;
  padding-left: 18px;
}

.trade-feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #29b2d5;
}

.kicker-light {
  color: #61d4ef;
}

.btn-light-outline {
  border-color: rgba(255, 255, 255, 0.34);
  color: #fff;
  background: transparent;
}

.btn-light-outline:hover,
.btn-light-outline:focus-visible {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.compact-quote-section {
  padding-top: 30px;
}

.compact-quote-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.4fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.compact-quote-copy h2 {
  margin: 12px 0;
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: #243844;
}

.compact-quote-copy p {
  color: #5d7480;
  line-height: 1.75;
}

.quote-points {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.quote-points li {
  position: relative;
  padding-left: 18px;
  color: #38525f;
  font-weight: 700;
}

.quote-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #0f8db2;
}

.compact-form-panel {
  padding: 26px;
}

.compact-form-panel .form-grid {
  margin-bottom: 12px;
}

.order-status {
  min-height: 1.4em;
}

.home-footer {
  margin-top: 32px;
}

.home-footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(0, 0.8fr));
  gap: 30px;
}

.home-footer-grid h2 {
  margin: 0 0 14px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #14afd9;
}

.footer-logo {
  width: min(100%, 260px);
  height: auto;
}

.home-footer,
.home-footer p,
.home-footer .footer-links a,
.home-footer .contact-list,
.home-footer .contact-list strong {
  color: #14afd9;
}

.home-footer a {
  color: #22c2e6;
}

.home-footer a:hover,
.home-footer a:focus-visible {
  color: #cfeff7;
}

.home-footer .legal {
  color: rgba(34, 194, 230, 0.78);
}

@media (max-width: 1180px) {
  .service-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gallery-preview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .home-hero-grid,
  .media-feature-panel,
  .compact-quote-layout,
  .contact-showcase-grid,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .service-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-image-stage {
    min-height: 420px;
  }
}

@media (max-width: 720px) {
  .home-header-row {
    min-height: 80px;
  }

  .home-refresh .brand-full {
    max-width: 190px;
  }

  .main-nav.open {
    top: 84px;
    border-color: #d7e5ec;
    background: #ffffff;
    box-shadow: 0 18px 32px rgba(24, 61, 76, 0.12);
  }

  .main-nav.open a {
    color: #28424e;
  }

  .home-hero {
    padding-top: 32px;
  }

  .home-hero-copy h1 {
    font-size: clamp(2.1rem, 11vw, 3.3rem);
  }

  .hero-image-stage {
    min-height: 320px;
  }

  .hero-main-image {
    inset: 24px 18px 80px 18px;
    width: calc(100% - 36px);
    height: calc(100% - 104px);
  }

  .hero-floating-image {
    right: 18px;
    bottom: 16px;
    width: min(58%, 240px);
  }

  .contact-spotlight-card {
    flex-direction: column;
  }

  .service-card-grid,
  .gallery-preview-grid,
  .home-footer-grid {
    grid-template-columns: 1fr;
  }
}

.quote-calculator {
  display: grid;
  gap: 18px;
  margin-bottom: 22px;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid #d8e6ed;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
}

.quote-calculator-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.quote-calculator-head h3 {
  margin: 0;
  font-family: "Sora", "Avenir Next", sans-serif;
  font-size: 1.2rem;
  color: #243844;
}

.quote-calculator-head p {
  margin: 8px 0 0;
  color: #5d7480;
  line-height: 1.65;
}

.quote-rate-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.quote-rate-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(15, 141, 178, 0.1);
  color: #0f8db2;
  font-weight: 800;
  font-size: 0.84rem;
}

.quote-rate-tag-muted {
  background: rgba(37, 46, 56, 0.08);
  color: #384e5c;
}

.quote-line-list {
  display: grid;
  gap: 12px;
}

.quote-line {
  padding: 16px;
  border-radius: 18px;
  border: 1px solid #dbe8ee;
  background: #ffffff;
}

.quote-line-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.quote-line-head strong {
  font-family: "Sora", "Avenir Next", sans-serif;
  color: #243844;
}

.quote-line-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  align-items: end;
}

.quote-check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d7e5ec;
  background: #f7fbfd;
  font-weight: 700;
  color: #36505d;
}

.quote-check input {
  margin: 0;
}

.quote-line-running,
.quote-line-total {
  margin: 12px 0 0;
  color: #5d7480;
}

.quote-line-running strong,
.quote-line-total strong {
  color: #0f8db2;
  font-family: "Sora", "Avenir Next", sans-serif;
}

.quote-remove-btn {
  border: 1px solid #d7e5ec;
  border-radius: 999px;
  padding: 7px 12px;
  background: #ffffff;
  color: #4c6470;
  font-weight: 800;
  cursor: pointer;
}

.quote-remove-btn:hover,
.quote-remove-btn:focus-visible {
  border-color: #0f8db2;
  color: #0f8db2;
}

.quote-actions-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.quote-helper-copy {
  margin: 0;
  color: #607783;
  font-size: 0.92rem;
  line-height: 1.55;
}

.quote-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.quote-summary-card {
  display: grid;
  gap: 8px;
  padding: 15px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #dbe8ee;
}

.quote-summary-card span {
  color: #607783;
  font-size: 0.88rem;
}

.quote-summary-card strong {
  color: #243844;
  font-family: "Sora", "Avenir Next", sans-serif;
  font-size: 1.08rem;
}

.quote-summary-card-total {
  background: linear-gradient(135deg, #0f8db2, #0a6f8d);
  border-color: transparent;
}

.quote-summary-card-total span,
.quote-summary-card-total strong {
  color: #ffffff;
}

.faq {
  max-width: 840px;
  margin: 0 auto;
}

.footer-admin-link {
  margin-left: 12px;
  color: #7fdcf2 !important;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  opacity: 0.76;
}

.footer-admin-link:hover,
.footer-admin-link:focus-visible {
  opacity: 1;
  color: #c8f1fa !important;
  text-decoration: none;
}

.contact-spotlight-card,
.service-card-clean,
.gallery-preview-card,
.quote-calculator,
.quote-line,
.quote-summary-card,
.phone-card,
.panel,
.page-hero .panel {
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.contact-spotlight-card:hover,
.service-card-clean:hover,
.gallery-preview-card:hover,
.quote-line:hover,
.phone-card:hover {
  transform: translateY(-2px);
}

.panel,
.contact-spotlight-card,
.service-card-clean,
.gallery-preview-card,
.quote-calculator,
.quote-line,
.quote-summary-card,
.trust-strip,
.page-hero .panel {
  box-shadow: 0 20px 48px rgba(18, 54, 67, 0.08);
}

.panel:hover,
.panel:focus-within,
.contact-spotlight-card:hover,
.service-card-clean:hover,
.gallery-preview-card:hover,
.quote-line:hover,
.phone-card:hover {
  box-shadow: 0 24px 56px rgba(18, 54, 67, 0.12);
}

.page-hero .panel {
  border-left-width: 5px;
  box-shadow: 0 24px 56px rgba(10, 35, 49, 0.18);
}

.btn-secondary {
  border-color: #cfe0e7;
  background: linear-gradient(180deg, #ffffff 0%, #f4fafc 100%);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: rgba(15, 141, 178, 0.26);
  box-shadow: 0 10px 22px rgba(15, 141, 178, 0.08);
}

.section-head p,
.compact-quote-copy p,
.quote-helper-copy,
.quote-calculator-head p,
.home-hero-copy p {
  color: #526b77;
}

.service-card-clean,
.quote-line,
.quote-summary-card,
.gallery-preview-card {
  border-color: #d9e7ee;
}

.site-footer {
  border-top: 1px solid rgba(127, 220, 242, 0.12);
  background:
    radial-gradient(circle at top left, rgba(15, 141, 178, 0.18), transparent 24%),
    linear-gradient(180deg, #26313a 0%, #1d2730 100%);
}

.site-footer a {
  color: #9fe4f5;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #d9f6fc;
}

.admin-page .site-header {
  border-bottom-color: #d8e6ed;
}

.admin-page .main-nav {
  margin-right: 0;
}

.admin-page .header-cta {
  display: inline-flex;
}

.admin-kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.admin-kpi {
  gap: 8px;
}

.admin-kpi small,
.admin-muted,
.admin-note {
  color: #617884;
  line-height: 1.58;
}

.admin-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0f8db2;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-kpi p {
  margin: 0;
  font-family: "Sora", "Avenir Next", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2rem);
  color: #223844;
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.admin-card {
  display: grid;
  gap: 14px;
}

.admin-card h2,
.admin-card h3 {
  margin: 0;
}

.admin-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.admin-link-grid .btn {
  min-height: 52px;
}

.admin-list,
.admin-code-list {
  margin: 0;
  padding-left: 18px;
  color: #405762;
  line-height: 1.7;
}

.admin-code-list code {
  font-size: 0.9rem;
}

.admin-owner-notes {
  min-height: 170px;
  resize: vertical;
}

.admin-owner-status {
  min-height: 1.4em;
}

.admin-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(15, 141, 178, 0.09);
  border: 1px solid rgba(15, 141, 178, 0.14);
  color: #1e5467;
  font-weight: 700;
}

@media (max-width: 900px) {
  .admin-grid,
  .admin-link-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .quote-calculator-head,
  .quote-actions-row,
  .quote-summary-grid {
    grid-template-columns: 1fr;
  }

  .quote-calculator-head,
  .quote-actions-row {
    display: grid;
  }

  .quote-summary-grid {
    display: grid;
  }

  .quote-line-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .quote-line-grid,
  .quote-summary-grid {
    grid-template-columns: 1fr;
  }

  .quote-calculator {
    padding: 16px;
  }
}
