﻿:root {
  --bg: #f6f1ea;
  --panel: rgba(255, 255, 255, 0.82);
  --text: #1b1f1e;
  --muted: #5e645f;
  --line: rgba(30, 36, 34, 0.1);
  --accent: #a7743f;
  --accent-deep: #85592e;
  --brand-blue: #1f3f56;
  --brand-blue-soft: rgba(31, 63, 86, 0.08);
  --accent-soft: rgba(167, 116, 63, 0.12);
  --shadow: 0 18px 50px rgba(44, 38, 30, 0.08);
  --shadow-soft: 0 10px 30px rgba(44, 38, 30, 0.06);
  --radius: 26px;
  --container: 1360px;
  --section-pad: clamp(84px, 9vw, 110px);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(167, 116, 63, 0.08), transparent 28%),
    linear-gradient(180deg, #f8f4ee 0%, #f6f1ea 34%, #fcfaf6 100%);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
iframe { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid rgba(167, 116, 63, 0.35); outline-offset: 3px; }

.hero-copy,
.hero-media,
.proof-card,
.feature-card,
.coverage-card,
.split-card,
.service-card,
.contact-copy,
.final-cta-inner {
  min-width: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  z-index: 100;
  background: #fff;
  padding: 10px 14px;
  border-radius: 12px;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  width: 1px;
  height: 1px;
  margin: -1px;
  white-space: nowrap;
  overflow: hidden;
}

.skip-link:focus {
  left: 16px;
  clip: auto;
  clip-path: none;
  width: auto;
  height: auto;
  overflow: visible;
}

.container { width: min(calc(100% - 56px), var(--container)); margin: 0 auto; }
.section { padding: var(--section-pad) 0; }
.section-soft { background: linear-gradient(180deg, rgba(255,255,255,0.52), rgba(255,255,255,0.16)); }
.section,
.trust-strip {
  scroll-margin-top: 108px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 12px 0;
  background: rgba(248, 244, 238, 0.94);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(26, 30, 29, 0.06);
  transition: background 0.25s ease, box-shadow 0.25s ease, backdrop-filter 0.25s ease, padding 0.25s ease;
}

.site-header.scrolled {
  padding: 10px 0;
}

.header-inner, .footer-base {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 68px;
}

.brand { display: inline-flex; align-items: center; gap: 14px; min-width: 0; flex-shrink: 0; }

.brand-logo {
  display: block;
  width: clamp(220px, 20vw, 272px);
  height: auto;
  max-width: 100%;
}

.brand-logo-large {
  width: 312px;
}

.brand-logo-footer {
  width: 278px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: nowrap;
  margin-left: auto;
  justify-self: end;
  flex-shrink: 0;
}

.site-nav a:not(.button) {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.site-nav a:not(.button):hover { color: var(--text); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 16px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.button:hover { transform: translateY(-1px); }
.button-primary,
.button-primary:visited {
  background: var(--text);
  color: #fff !important;
  box-shadow: var(--shadow-soft);
}
.button-primary:hover,
.button-primary:focus-visible {
  background: #2b302e;
  color: #fff !important;
}
.button-secondary { background: rgba(255,255,255,0.7); border-color: var(--line); color: var(--text); }
.button-secondary:hover { background: #fff; border-color: rgba(27,31,30,0.2); }

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,0.75);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--text);
}

.nav-toggle span + span { margin-top: 5px; }
.hero { padding-top: clamp(24px, 3.5vw, 48px); }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(420px, 0.82fr);
  gap: 56px;
  align-items: center;
}

.eyebrow, .mini-label {
  display: inline-flex;
  align-items: center;
  margin: 0 0 18px;
  color: var(--accent-deep);
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1, h2, h3 {
  margin: 0;
  color: #181c1b;
  line-height: 1.02;
}

h1, h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(3.35rem, 4.7vw, 4.9rem); max-width: 12.6ch; }
h2 { font-size: clamp(2.3rem, 3.25vw, 3.2rem); max-width: 24ch; }
h3 { font-size: 1.28rem; font-weight: 700; line-height: 1.2; }
p { margin: 0; font-size: 1.08rem; color: var(--muted); }

.sw1-mark {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.hero-text, .section-heading p { max-width: 68ch; }
.hero-copy { max-width: 820px; }
.hero-line { display: block; }
.hero-line-location { white-space: nowrap; }
.section-heading h2 {
  max-width: 20ch;
  text-wrap: balance;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
  padding: 26px 0 0;
  margin: 0;
  list-style: none;
}

.hero-points li, .compact-list li {
  position: relative;
  padding-left: 18px;
  color: var(--text);
  font-weight: 600;
}

.hero-points li::before, .compact-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; padding-top: 28px; }
.hero-note { padding-top: 18px; font-size: 0.98rem; }
.hero-media { position: relative; }

.hero-frame {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.3), rgba(255,255,255,0)),
    linear-gradient(145deg, rgba(31,63,86,0.06), rgba(167,116,63,0.08)),
    #e9e1d7;
  box-shadow: var(--shadow);
  height: clamp(440px, 41vw, 600px);
}

.hero-frame::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 35%;
  background: linear-gradient(180deg, transparent, rgba(18, 21, 20, 0.18));
}

.hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.trust-strip { padding: 22px 0 12px; }

.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 18px 26px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,0.64);
  box-shadow: var(--shadow-soft);
}

.trust-strip-grid div {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  text-align: center;
  color: var(--text);
  font-weight: 700;
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 46px;
  text-align: center;
  align-items: center;
  max-width: 1080px;
  margin-inline: auto;
}

.section-heading.align-left { text-align: left; align-items: flex-start; }
.coverage-heading h2 { max-width: 20ch; }
.coverage-heading p { max-width: 60ch; }
.card-grid, .service-grid, .proof-grid, .feature-grid, .coverage-grid { display: grid; gap: 24px; }
.four-up { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.card, .service-card, .proof-card, .feature-card, .coverage-card, .split-card, .map-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow-soft);
}

.problem-card, .service-card, .proof-card, .feature-card, .coverage-card { padding: 28px; }
.problem-card p, .service-card p, .proof-card p, .feature-card p, .coverage-card p { padding-top: 14px; }

.problem-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.84), rgba(255,255,255,0.62)),
    radial-gradient(circle at top right, rgba(167,116,63,0.08), transparent 40%);
}

.service-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.service-card { display: flex; flex-direction: column; min-height: 100%; }

.service-showcase {
  display: grid;
  grid-template-columns: minmax(320px, 420px) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  margin-bottom: 28px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.86), rgba(255,255,255,0.58));
  box-shadow: var(--shadow-soft);
}

.service-showcase-media {
  min-height: 320px;
  overflow: hidden;
  border-radius: 24px;
}

.service-showcase-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-showcase-copy {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 8px;
}

.service-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-size: 0.92rem;
  font-weight: 800;
}

.why-grid, .faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 32px;
  align-items: start;
}

#services .section-heading h2 {
  max-width: 19ch;
}

.security-layout > .section-heading h2 {
  max-width: 19ch;
}

.section-soft .section-heading h2 {
  max-width: 19ch;
}

.proof-grid, .feature-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.hero-grid > .proof-grid { grid-column: 1 / -1; }

.image-panel {
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  margin-top: 8px;
}

.image-panel.compact img { min-height: 360px; }
.image-panel img, .split-image img, .technical-image img { width: 100%; height: 100%; object-fit: cover; }
.image-panel img, .service-showcase-media img, .split-image img, .technical-image img, .hero-frame img {
  background: linear-gradient(180deg, #f0e8dd, #e9dfd1);
}

img.is-missing {
  opacity: 0;
}

.split-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
.split-card { overflow: hidden; }
.split-image {
  min-height: 280px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(240,232,221,0.95), rgba(233,223,209,0.95));
}
.split-image img {
  object-position: center 42%;
}
.split-content { padding: 30px; }
.split-content p { padding-top: 14px; }

.compact-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.security-layout { display: grid; gap: 28px; }

.technical-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  gap: 24px;
  align-items: stretch;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,253,250,0.88), rgba(255,255,255,0.6));
}

.technical-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  padding: 14px 8px 14px 6px;
}

.technical-image { overflow: hidden; border-radius: 24px; min-height: 260px; }
.technical-image img { object-position: center 38%; }
.coverage-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: stretch; }

#coverage .section-heading h2 {
  max-width: 19ch;
}

#coverage .section-heading p {
  max-width: 66ch;
}

.coverage-card-featured {
  background: linear-gradient(180deg, rgba(167,116,63,0.12), rgba(255,255,255,0.86)), rgba(255,255,255,0.9);
}

.coverage-card-link {
  color: inherit;
  transition: color 0.2s ease;
}

.coverage-card-link:hover {
  color: var(--accent-deep);
}

.coverage-link {
  margin-top: 18px;
}

.faq-list { display: grid; gap: 16px; }

.faq-item {
  padding: 0 26px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,0.72);
  box-shadow: var(--shadow-soft);
}

.faq-item summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 24px 38px 24px 0;
  color: var(--text);
  font-size: 1.08rem;
  font-weight: 700;
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--accent-deep);
}

.faq-item[open] summary::after { content: "\2212"; }
.faq-item p { padding: 0 0 22px; }

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: 42px 46px;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(25,29,28,0.96), rgba(54,59,56,0.94)), #1d201f;
  box-shadow: var(--shadow);
}

.final-cta .eyebrow, .final-cta h2, .final-cta p { color: #f7f2eb; }
.final-cta h2 { max-width: 18ch; }

.contact-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: stretch;
}

.contact-copy {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    radial-gradient(circle at top left, rgba(31,63,86,0.05), transparent 36%),
    linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,255,255,0.64));
  box-shadow: var(--shadow-soft);
  height: 100%;
}

.brand-contact {
  margin: 4px 0 26px;
}

.contact-stack { display: grid; gap: 22px; }

.contact-actions .button-primary,
.contact-actions .button-primary:visited {
  min-width: 178px;
  color: #fff !important;
  box-shadow: 0 16px 30px rgba(27, 31, 30, 0.14);
}

.contact-note {
  padding-top: 18px;
  color: var(--text);
  font-weight: 600;
}

.contact-label {
  display: inline-block;
  margin-bottom: 6px;
  color: var(--accent-deep);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.map-card {
  display: flex;
  padding: 14px;
  overflow: hidden;
  min-height: 560px;
  background: rgba(255, 255, 255, 0.88);
}

.map-frame {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 560px;
  border: 0;
  border-radius: 24px;
  background: #e7e1d8;
  flex: 1 1 auto;
}

.text-link { display: inline-flex; width: fit-content; color: var(--text); font-weight: 700; border-bottom: 1px solid currentColor; }

.site-footer {
  padding: 32px 0 40px;
  border-top: 1px solid rgba(162, 126, 77, 0.18);
  background:
    linear-gradient(180deg, rgba(31,63,86,0.03), rgba(31,63,86,0)),
    #f6efe4;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1.2fr) minmax(260px, 0.9fr) minmax(160px, auto);
  gap: 22px 30px;
  align-items: start;
  padding-bottom: 14px;
}

.footer-grid > div:nth-child(2) {
  max-width: 30ch;
}
.footer-brand-block { display: grid; gap: 14px; }
.brand-footer { margin-bottom: 6px; }
.footer-links {
  display: grid;
  gap: 16px;
  justify-items: start;
}
.footer-links a, .site-footer a { color: var(--text); font-weight: 700; }

.mobile-call {
  position: fixed;
  left: 50%;
  bottom: max(14px, calc(env(safe-area-inset-bottom) + 10px));
  z-index: 55;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: min(calc(100% - 20px), 420px);
  transform: translateX(-50%);
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,0.42);
  border-radius: 20px;
  background: rgba(24,28,27,0.92);
  color: #fff;
  box-shadow: 0 18px 40px rgba(21,23,23,0.22);
  backdrop-filter: blur(14px);
}

.mobile-call span { font-size: 0.88rem; color: rgba(255,255,255,0.78); }
.mobile-call strong { font-size: 1rem; }

@media (min-width: 1280px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.28fr) minmax(380px, 0.72fr);
    gap: 64px;
  }

  .hero-copy {
    max-width: 900px;
  }
}

@media (max-width: 1080px) {
  .four-up, .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-grid, .why-grid, .faq-layout, .contact-grid, .technical-panel, .split-grid, .coverage-grid, .service-showcase { grid-template-columns: 1fr; }
  .final-cta-inner, .footer-base { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-frame { height: clamp(340px, 56vw, 430px); }
  .map-card, .map-frame { min-height: 500px; }
}

@media (max-width: 820px) {
  :root { --section-pad: clamp(56px, 11vw, 76px); }

  .header-inner {
    grid-template-columns: auto auto;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(251,247,241,0.96);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open { display: flex; }
  .nav-toggle { display: grid; place-content: center; }
  .header-cta { width: 100%; }
  h1 { font-size: clamp(2.55rem, 9vw, 3.25rem); max-width: 12ch; }
  h2 { font-size: clamp(2rem, 7.5vw, 2.7rem); max-width: 18ch; }
  .hero-line-location { white-space: normal; }
  .hero-points, .proof-grid, .feature-grid, .trust-strip-grid { grid-template-columns: 1fr; }
  .hero-frame { height: clamp(300px, 72vw, 370px); }
  .section-heading { margin-bottom: 30px; }
  .problem-card, .service-card, .proof-card, .feature-card, .coverage-card, .split-content, .final-cta-inner, .service-showcase { padding: 24px; }
  .mobile-call { display: inline-flex; }
  .site-footer { padding-bottom: calc(102px + env(safe-area-inset-bottom)); }
  .map-card, .map-frame { min-height: 420px; }
}

@media (max-width: 560px) {
  .container { width: min(calc(100% - 24px), var(--container)); }
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
    align-items: start;
  }
  .four-up, .service-grid { grid-template-columns: 1fr; }
  p { font-size: 1rem; }
  .button { width: 100%; }
  .hero-actions, .contact-actions, .final-actions { flex-direction: column; align-items: stretch; }
  .contact-copy { padding: 24px; }
  .brand-logo { width: 212px; }
  .brand-logo-large { width: 244px; }
  .brand-logo-footer { width: 232px; }
  h1 { max-width: 10.5ch; }
  h2 { max-width: 14ch; }
  .hero-copy,
  .hero-media,
  .proof-grid,
  .feature-grid,
  .coverage-grid,
  .split-grid,
  .contact-grid,
  .faq-layout,
  .technical-panel {
    width: 100%;
    max-width: 100%;
  }
  .hero-text,
  .hero-note,
  .section-heading p,
  .proof-card p,
  .feature-card p,
  .coverage-card p,
  .split-content p,
  .technical-copy p,
  .contact-copy p {
    overflow-wrap: break-word;
  }
  .section-heading h2,
  .coverage-heading h2,
  .security-layout > .section-heading h2,
  .section-soft .section-heading h2,
  #services .section-heading h2 {
    max-width: 14ch;
  }
  .site-header {
    padding: 10px 0;
  }
  .header-inner {
    min-height: 58px;
  }
  .hero-frame { height: 300px; }
  .map-card, .map-frame { min-height: 360px; }
}


