:root {
  --ink: #102a43;
  --ink-soft: #243b53;
  --muted: #52677a;
  --blue: #1677b8;
  --blue-deep: #0d5f95;
  --blue-dark: #0b3658;
  --sky: #eaf6fc;
  --sky-strong: #d7edf8;
  --gold: #d89a2b;
  --gold-deep: #a96d13;
  --cream: #fcfaf5;
  --sand: #f5efe2;
  --white: #ffffff;
  --line: rgba(16, 42, 67, 0.13);
  --line-strong: rgba(16, 42, 67, 0.22);
  --shadow-sm: 0 10px 30px rgba(16, 42, 67, 0.08);
  --shadow-md: 0 24px 60px rgba(16, 42, 67, 0.12);
  --shadow-lg: 0 38px 90px rgba(16, 42, 67, 0.16);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --radius-xl: 44px;
  --shell: min(1220px, calc(100vw - 40px));
  --header-height: 86px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 140px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

::selection {
  background: var(--sky-strong);
  color: var(--ink);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.screen-reader-text,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 12px 18px;
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow-md);
  font-weight: 800;
}

.site-main,
.site-page {
  min-height: 60vh;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  color: var(--ink);
  font-family: "Newsreader", Georgia, serif;
  font-weight: 650;
  line-height: 1.04;
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(3.4rem, 7.4vw, 6.8rem);
}

h2 {
  font-size: clamp(2.45rem, 5vw, 4.65rem);
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

p {
  margin: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--blue-deep);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  background: var(--gold);
  content: "";
}

.eyebrow-light {
  color: #d9effb;
}

.eyebrow-light::before {
  background: #f0b957;
}

.large-copy {
  color: var(--muted);
  font-size: clamp(1.03rem, 1.5vw, 1.18rem);
  line-height: 1.8;
}

.reveal {
  animation: sshi-fade-up 680ms cubic-bezier(0.2, 0.65, 0.25, 1) both;
}

.reveal-delay {
  animation-delay: 120ms;
}

@keyframes sshi-fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 24px rgba(16, 42, 67, 0.04);
  backdrop-filter: blur(18px);
}

.utility-bar {
  border-bottom: 1px solid rgba(22, 119, 184, 0.11);
  background: var(--sky);
}

.utility-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 36px;
  color: var(--ink-soft);
  font-size: 0.75rem;
  font-weight: 700;
}

.utility-inner p {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.utility-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-shrink: 0;
}

.utility-actions a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: color 160ms ease;
}

.utility-actions a:hover,
.utility-actions a:focus-visible {
  color: var(--blue-deep);
}

.utility-actions svg {
  width: 15px;
  height: 15px;
}

.utility-schedule {
  color: var(--blue-deep);
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: var(--header-height);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  flex-shrink: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(22, 119, 184, 0.22);
  border-radius: 16px;
  background: linear-gradient(145deg, var(--white), var(--sky));
  color: var(--blue-deep);
  box-shadow: 0 10px 22px rgba(22, 119, 184, 0.11);
}

.brand-mark svg {
  width: 31px;
  height: 31px;
  stroke-width: 2.1;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1.1;
}

.brand-copy strong {
  color: var(--ink);
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.34rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-navigation {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  flex: 1;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(12px, 1.6vw, 24px);
}

.primary-nav a {
  position: relative;
  color: var(--ink-soft);
  font-size: 0.83rem;
  font-weight: 750;
  white-space: nowrap;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 13px;
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 12px 26px rgba(22, 119, 184, 0.22);
  font-size: 0.84rem;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--blue-deep);
  box-shadow: 0 16px 32px rgba(22, 119, 184, 0.28);
  transform: translateY(-2px);
}

.header-cta svg {
  width: 18px;
  height: 18px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--white);
  cursor: pointer;
}

.menu-toggle i {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 99px;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle i + i {
  margin-top: 5px;
}

.menu-toggle[aria-expanded="true"] i:nth-of-type(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] i:nth-of-type(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] i:nth-of-type(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Buttons and links */

.button-row,
.section-actions,
.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 15px;
  font-size: 0.88rem;
  font-weight: 850;
  line-height: 1.1;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button svg {
  width: 19px;
  height: 19px;
}

.button-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(22, 119, 184, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--blue-deep);
  box-shadow: 0 18px 36px rgba(22, 119, 184, 0.3);
}

.button-secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  box-shadow: 0 9px 22px rgba(16, 42, 67, 0.06);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(22, 119, 184, 0.44);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.button-light {
  border-color: rgba(255, 255, 255, 0.35);
  background: var(--white);
  color: var(--blue-dark);
  box-shadow: 0 14px 34px rgba(3, 25, 42, 0.18);
}

.button-accent {
  background: var(--gold);
  color: #312005;
  box-shadow: 0 14px 34px rgba(216, 154, 43, 0.23);
}

.button-accent:hover,
.button-accent:focus-visible {
  background: #e8ab3b;
}

.button-ghost-light {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.button-ghost-light:hover,
.button-ghost-light:focus-visible {
  border-color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.14);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-deep);
  font-size: 0.88rem;
  font-weight: 850;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translateX(4px);
}

.centered-actions {
  justify-content: center;
  margin-top: 34px;
}

/* Hero */

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(70px, 8vw, 118px) 0 84px;
  background:
    radial-gradient(circle at 5% 0%, rgba(22, 119, 184, 0.12), transparent 32%),
    radial-gradient(circle at 94% 18%, rgba(216, 154, 43, 0.13), transparent 25%),
    linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
}

.hero::after {
  position: absolute;
  right: -120px;
  bottom: -210px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(22, 119, 184, 0.13);
  border-radius: 50%;
  box-shadow: 0 0 0 50px rgba(22, 119, 184, 0.025), 0 0 0 110px rgba(22, 119, 184, 0.018);
  content: "";
  pointer-events: none;
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(400px, 0.98fr);
  gap: clamp(46px, 7vw, 92px);
  align-items: center;
}

.hero-copy h1 {
  max-width: 13ch;
}

.hero-lede {
  max-width: 680px;
  margin-top: 25px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.8;
}

.hero-copy .button-row {
  margin-top: 32px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px 18px;
  margin-top: 33px;
}

.hero-proof span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--ink-soft);
  font-size: 0.77rem;
  font-weight: 750;
  line-height: 1.35;
}

.hero-proof i {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  border-radius: 50%;
  background: var(--sky);
  color: var(--blue-deep);
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 900;
}

.hero-visual {
  position: relative;
  padding: 0 22px 43px 0;
}

.hero-image-frame {
  position: relative;
  overflow: hidden;
  min-height: 610px;
  border: 9px solid var(--white);
  border-radius: 34px 34px 110px 34px;
  background: var(--sky-strong);
  box-shadow: var(--shadow-lg);
}

.hero-image {
  width: 100%;
  height: 610px;
  object-fit: cover;
  object-position: center;
}

.hero-image-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(8, 37, 59, 0.46) 100%);
  pointer-events: none;
}

.hero-image-label {
  position: absolute;
  right: 24px;
  bottom: 38px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--white);
}

.hero-image-label small,
.hero-image-label strong {
  display: block;
}

.hero-image-label small {
  margin-bottom: 2px;
  font-size: 0.69rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-image-label strong {
  font-size: 0.94rem;
}

.pulse-dot {
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
  border: 3px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  background: #76dc9c;
  box-shadow: 0 0 0 6px rgba(118, 220, 156, 0.16);
}

.photo-credit {
  position: absolute;
  right: 18px;
  bottom: 11px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.61rem;
}

.photo-credit a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.hero-float-card {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(340px, 76%);
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(14px);
}

.hero-float-card .float-label {
  display: block;
  margin-bottom: 8px;
  color: var(--blue-deep);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero-float-card strong {
  display: block;
  color: var(--ink);
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.27rem;
  line-height: 1.18;
}

.hero-float-card a {
  display: inline-flex;
  gap: 7px;
  margin-top: 13px;
  color: var(--blue-deep);
  font-size: 0.77rem;
  font-weight: 850;
}

.signal-bar {
  border-top: 1px solid rgba(16, 42, 67, 0.08);
  border-bottom: 1px solid rgba(16, 42, 67, 0.08);
  background: var(--white);
}

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

.signal-grid span {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 68px;
  padding: 15px;
  color: var(--ink-soft);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-align: center;
  text-transform: uppercase;
}

.signal-grid span + span::before {
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 0;
  width: 1px;
  background: var(--line);
  content: "";
}

/* Sections and shared headings */

.section {
  padding: clamp(84px, 9vw, 132px) 0;
}

.section-tint {
  border-top: 1px solid rgba(22, 119, 184, 0.08);
  border-bottom: 1px solid rgba(22, 119, 184, 0.08);
  background: linear-gradient(180deg, #f4fafe 0%, #eaf5fb 100%);
}

.section-heading {
  margin-bottom: 42px;
}

.section-heading h2 {
  max-width: 900px;
}

.section-heading > p:not(.eyebrow),
.split-heading > div > p,
.pricing-heading > p,
.faq-intro > p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.centered {
  max-width: 880px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.centered .eyebrow {
  justify-content: center;
}

.centered h2 {
  margin-inline: auto;
}

.centered > p:not(.eyebrow) {
  max-width: 760px;
  margin: 22px auto 0;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.72fr);
  gap: clamp(42px, 8vw, 110px);
  align-items: end;
}

.split-heading > div:last-child .text-link {
  margin-top: 18px;
}

/* Pillars */

.section-intro {
  background: var(--cream);
}

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

.pillar-card {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.pillar-card::after {
  position: absolute;
  right: -55px;
  bottom: -55px;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(22, 119, 184, 0.15);
  border-radius: 50%;
  box-shadow: 0 0 0 28px rgba(22, 119, 184, 0.025);
  content: "";
}

.pillar-card:nth-child(2)::after {
  border-color: rgba(216, 154, 43, 0.2);
  box-shadow: 0 0 0 28px rgba(216, 154, 43, 0.035);
}

.pillar-card:hover {
  border-color: rgba(22, 119, 184, 0.3);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.pillar-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 62px;
}

.pillar-number {
  color: var(--blue-deep);
  font-family: "Newsreader", Georgia, serif;
  font-size: 2.1rem;
  font-weight: 650;
}

.pillar-kicker {
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--sky);
  color: var(--blue-deep);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.pillar-card h3 {
  max-width: 13ch;
  font-size: 2rem;
}

.pillar-card p {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.75;
}

.pillar-card .text-link {
  position: absolute;
  z-index: 2;
  bottom: 34px;
  left: 34px;
}

/* Owner */

.owner-section {
  background: var(--white);
}

.owner-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.78fr);
  gap: 28px;
  align-items: stretch;
}

.owner-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(42px, 6vw, 76px);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.13), transparent 30%),
    linear-gradient(145deg, var(--blue-dark), #0d5987);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.owner-panel::after {
  position: absolute;
  right: -85px;
  bottom: -120px;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  box-shadow: 0 0 0 48px rgba(255, 255, 255, 0.025), 0 0 0 98px rgba(255, 255, 255, 0.018);
  content: "";
}

.owner-panel h2,
.owner-panel .large-copy {
  position: relative;
  z-index: 1;
  color: var(--white);
}

.owner-panel h2 {
  max-width: 12ch;
}

.owner-panel .large-copy {
  max-width: 680px;
  margin: 26px 0 32px;
  color: rgba(255, 255, 255, 0.78);
}

.owner-panel .button {
  position: relative;
  z-index: 1;
}

.owner-points {
  display: grid;
  gap: 13px;
}

.owner-points article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  align-items: start;
  padding: 25px 27px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--cream);
  transition: border-color 180ms ease, transform 180ms ease;
}

.owner-points article:hover {
  border-color: rgba(22, 119, 184, 0.32);
  transform: translateX(4px);
}

.owner-points article > span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 17px;
  background: var(--sky);
  color: var(--blue-deep);
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.owner-points h3 {
  font-size: 1.42rem;
}

.owner-points p {
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

/* Service cards */

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

.service-tile {
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(16, 42, 67, 0.055);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.service-tile:hover {
  border-color: rgba(22, 119, 184, 0.33);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.service-tile-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 43px;
}

.service-index {
  color: var(--blue-deep);
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.75rem;
  font-weight: 650;
}

.price-chip {
  display: inline-flex;
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--sky);
  color: var(--blue-deep);
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.service-tile h3 {
  font-size: 1.75rem;
}

.service-tile p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.75;
}

.service-tile > a {
  display: inline-flex;
  gap: 7px;
  margin-top: auto;
  padding-top: 24px;
  color: var(--blue-deep);
  font-size: 0.77rem;
  font-weight: 850;
}

/* Documentation */

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

.documentation-card {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 22px;
  padding: 28px;
  border: 1px solid rgba(22, 119, 184, 0.14);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.79);
  box-shadow: 0 9px 25px rgba(16, 42, 67, 0.045);
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.documentation-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.document-mark {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: var(--white);
  color: var(--blue-deep);
  box-shadow: 0 8px 20px rgba(22, 119, 184, 0.09);
}

.document-mark svg {
  width: 30px;
  height: 30px;
}

.documentation-card h3 {
  margin-top: 12px;
  font-size: 1.55rem;
}

.documentation-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.72;
}

.scope-note,
.notice-box {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 24px;
  padding: 18px 20px;
  border: 1px solid rgba(216, 154, 43, 0.3);
  border-radius: 16px;
  background: rgba(255, 250, 236, 0.92);
  color: #6d4a10;
  font-size: 0.83rem;
  line-height: 1.65;
}

.scope-note strong,
.notice-box strong {
  flex-shrink: 0;
}

/* Watch */

.watch-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(400px, 1.12fr);
  gap: clamp(50px, 8vw, 110px);
  align-items: start;
}

.watch-copy {
  position: sticky;
  top: 150px;
}

.watch-copy h2 {
  max-width: 12ch;
}

.watch-copy .large-copy {
  margin: 25px 0 0;
}

.watch-copy .notice-box {
  margin: 24px 0 28px;
}

.watch-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.watch-list article {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 24px;
  padding: 30px 10px;
  border-bottom: 1px solid var(--line);
}

.watch-list article > span {
  color: var(--blue-deep);
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.8rem;
  font-weight: 650;
}

.watch-list h3 {
  font-size: 1.65rem;
}

.watch-list p {
  margin-top: 9px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.75;
}

/* Flagship */

.flagship-section {
  padding-top: 28px;
  background: var(--white);
}

.flagship-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(310px, 0.55fr);
  gap: clamp(42px, 7vw, 90px);
  align-items: center;
  overflow: hidden;
  padding: clamp(44px, 7vw, 84px);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 90% 0%, rgba(22, 119, 184, 0.34), transparent 34%),
    linear-gradient(145deg, #092f4d, #0d4e74 64%, #0f5e88);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.flagship-card::after {
  position: absolute;
  top: -170px;
  right: -170px;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(255, 255, 255, 0.025), 0 0 0 115px rgba(255, 255, 255, 0.016);
  content: "";
}

.flagship-copy,
.flagship-offer {
  position: relative;
  z-index: 1;
}

.flagship-copy h2 {
  max-width: 12ch;
  color: var(--white);
}

.flagship-copy > p:not(.eyebrow) {
  max-width: 740px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.8;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 29px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  top: 0.24em;
  left: 0;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--sky);
  color: var(--blue-deep);
  content: "✓";
  font-size: 0.68rem;
  font-weight: 900;
}

.check-list-light li {
  color: rgba(255, 255, 255, 0.86);
}

.check-list-light li::before {
  background: rgba(255, 255, 255, 0.14);
  color: #aee5ff;
}

.flagship-offer {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.flagship-offer > span {
  display: block;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.flagship-offer > strong {
  display: block;
  margin: 8px 0;
  color: var(--white);
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(4rem, 7vw, 6rem);
  font-weight: 650;
  line-height: 0.95;
}

.flagship-offer > p {
  margin-bottom: 23px;
  color: rgba(255, 255, 255, 0.69);
  font-size: 0.8rem;
  line-height: 1.6;
}

.flagship-offer .button {
  width: 100%;
}

.flagship-offer .button + .button {
  margin-top: 10px;
}

/* Audiences */

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

.audience-card {
  position: relative;
  overflow: hidden;
  min-height: 285px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 9px 26px rgba(16, 42, 67, 0.045);
  transition: border-color 180ms ease, transform 180ms ease;
}

.audience-card:hover {
  border-color: rgba(22, 119, 184, 0.34);
  transform: translateY(-4px);
}

.audience-line {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--gold));
  transform: scaleX(0.3);
  transform-origin: left;
  transition: transform 220ms ease;
}

.audience-card:hover .audience-line {
  transform: scaleX(1);
}

.audience-card small {
  color: var(--blue-deep);
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 650;
}

.audience-card h3 {
  margin-top: 42px;
  font-size: 1.72rem;
}

.audience-card p {
  margin-top: 13px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.72;
}

/* Pricing */

.pricing-preview {
  background: var(--sand);
}

.pricing-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  gap: clamp(44px, 8vw, 110px);
  align-items: end;
  margin-bottom: 40px;
}

.pricing-heading h2 {
  max-width: 13ch;
}

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

.price-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
  padding: 28px;
  border: 1px solid rgba(169, 109, 19, 0.15);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 8px 24px rgba(86, 58, 16, 0.045);
}

.price-card strong {
  color: var(--ink);
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 650;
  line-height: 1;
}

.price-card span {
  max-width: 16ch;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 750;
  line-height: 1.5;
}

/* Area */

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

.area-card {
  display: grid;
  grid-template-columns: 55px 1fr;
  column-gap: 18px;
  padding: 28px;
  border: 1px solid rgba(22, 119, 184, 0.14);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.78);
}

.area-pin {
  grid-row: 1 / span 3;
  display: grid;
  place-items: center;
  width: 55px;
  height: 55px;
  border-radius: 18px;
  background: var(--white);
  color: var(--blue-deep);
  box-shadow: 0 8px 20px rgba(22, 119, 184, 0.08);
}

.area-pin svg {
  width: 27px;
  height: 27px;
}

.area-card h3 {
  font-size: 1.55rem;
}

.area-card p {
  margin-top: 9px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.65;
}

.area-card small {
  display: block;
  margin-top: 13px;
  color: var(--blue-deep);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.55;
}

/* Credentials */

.credentials-preview {
  background: var(--white);
}

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

.credential-mini {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 285px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--cream);
  text-align: center;
}

.credential-mini img {
  width: 100%;
  height: 170px;
  object-fit: contain;
}

.credential-mini h3 {
  margin-top: auto;
  padding-top: 18px;
  font-size: 1.35rem;
}

/* Process */

.process-section {
  background: var(--cream);
}

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

.process-card {
  min-height: 290px;
  padding: 30px;
  border-top: 3px solid var(--blue);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
  border-radius: 4px 4px var(--radius-md) var(--radius-md);
  background: var(--white);
}

.process-card > span {
  color: var(--blue-deep);
  font-family: "Newsreader", Georgia, serif;
  font-size: 2rem;
  font-weight: 650;
}

.process-card h3 {
  margin-top: 42px;
  font-size: 1.55rem;
}

.process-card p {
  margin-top: 13px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.72;
}

/* FAQ */

.faq-section {
  border-top: 1px solid var(--line);
  background: var(--white);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1.18fr);
  gap: clamp(50px, 9vw, 130px);
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 150px;
}

.faq-intro h2 {
  max-width: 10ch;
}

.faq-intro > p {
  margin: 22px 0;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 27px 4px;
  color: var(--ink);
  cursor: pointer;
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.4rem;
  font-weight: 650;
  line-height: 1.25;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary i {
  position: relative;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  border-radius: 50%;
  background: var(--sky);
}

.faq-item summary i::before,
.faq-item summary i::after {
  position: absolute;
  top: 10px;
  right: 6px;
  left: 6px;
  height: 2px;
  background: var(--blue-deep);
  content: "";
  transition: transform 180ms ease;
}

.faq-item summary i::after {
  transform: rotate(90deg);
}

.faq-item[open] summary i::after {
  transform: rotate(0);
}

.faq-item > p {
  max-width: 760px;
  padding: 0 46px 28px 4px;
  color: var(--muted);
  line-height: 1.78;
}

/* Final CTA */

.final-cta {
  padding-top: 30px;
  background: var(--white);
}

.final-cta-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.48fr);
  gap: clamp(42px, 7vw, 90px);
  align-items: center;
  overflow: hidden;
  padding: clamp(42px, 7vw, 78px);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, #0c385a, #0f6a9f);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.final-cta-card::after {
  position: absolute;
  right: -90px;
  bottom: -180px;
  width: 410px;
  height: 410px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  box-shadow: 0 0 0 48px rgba(255, 255, 255, 0.025);
  content: "";
}

.final-cta-card > div {
  position: relative;
  z-index: 1;
}

.final-cta-card h2 {
  max-width: 13ch;
  color: var(--white);
}

.final-cta-card > div:first-child > p:not(.eyebrow) {
  max-width: 730px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.8;
}

.final-cta-actions {
  flex-direction: column;
  align-items: stretch;
}

.final-cta-actions .button {
  width: 100%;
}

.call-link,
.email-link {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 800;
  text-align: center;
}

.email-link {
  font-size: 0.75rem;
  font-weight: 650;
  word-break: break-word;
}

/* Interior pages */

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(74px, 9vw, 126px) 0 78px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 94% 20%, rgba(216, 154, 43, 0.14), transparent 24%),
    radial-gradient(circle at 8% 0%, rgba(22, 119, 184, 0.11), transparent 30%),
    linear-gradient(180deg, var(--white), var(--cream));
}

.page-hero::after {
  position: absolute;
  right: -110px;
  bottom: -220px;
  width: 450px;
  height: 450px;
  border: 1px solid rgba(22, 119, 184, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 42px rgba(22, 119, 184, 0.022), 0 0 0 95px rgba(22, 119, 184, 0.014);
  content: "";
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 990px;
}

.page-hero h1 {
  max-width: 14ch;
  font-size: clamp(3.2rem, 7vw, 6rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 800px;
  margin-top: 25px;
  color: var(--muted);
  font-size: clamp(1.03rem, 1.5vw, 1.18rem);
  line-height: 1.82;
}

.page-hero-actions {
  margin-top: 30px;
}

.page-section {
  padding: clamp(72px, 8vw, 112px) 0;
}

.page-section-tint {
  background: var(--sky);
}

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

.page-card {
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(16, 42, 67, 0.055);
}

.page-card .price-chip {
  margin-bottom: 36px;
}

.page-card h2,
.page-card h3 {
  font-size: 1.7rem;
}

.page-card p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.75;
}

.page-card .text-link {
  margin-top: auto;
  padding-top: 22px;
}

.page-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(48px, 8vw, 110px);
  align-items: start;
}

.page-split-copy h2 {
  max-width: 12ch;
}

.page-split-copy > p:not(.eyebrow) {
  margin-top: 22px;
  color: var(--muted);
  line-height: 1.8;
}

.detail-list {
  display: grid;
  gap: 14px;
}

.detail-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.detail-card h3 {
  font-size: 1.45rem;
}

.detail-card p {
  margin-top: 9px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

.policy-card {
  padding: 32px;
  border: 1px solid rgba(22, 119, 184, 0.18);
  border-radius: var(--radius-md);
  background: var(--sky);
}

.policy-card h2,
.policy-card h3 {
  font-size: 1.75rem;
}

.policy-card p,
.policy-card li {
  color: var(--muted);
  line-height: 1.75;
}

.policy-card p {
  margin-top: 14px;
}

.policy-card ul {
  margin: 18px 0 0;
  padding-left: 20px;
}

.travel-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.travel-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 650px;
}

.travel-table th,
.travel-table td {
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.travel-table th {
  background: var(--sky);
  color: var(--ink-soft);
  font-size: 0.71rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.travel-table td {
  color: var(--muted);
  font-size: 0.88rem;
}

.travel-table td:last-child {
  color: var(--blue-deep);
  font-weight: 850;
}

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

.content-prose {
  max-width: 850px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
}

.content-prose > * + * {
  margin-top: 1.25em;
}

.content-prose h2,
.content-prose h3 {
  color: var(--ink);
}

.content-prose h2 {
  margin-top: 1.6em;
  font-size: 2.4rem;
}

.content-prose h3 {
  font-size: 1.55rem;
}

.content-prose a {
  color: var(--blue-deep);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.content-prose ul,
.content-prose ol {
  padding-left: 22px;
}

.report-placeholder {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  padding: 34px;
  border: 1px dashed rgba(22, 119, 184, 0.35);
  border-radius: var(--radius-md);
  background: var(--sky);
}

.report-placeholder h2 {
  font-size: 2rem;
}

.report-placeholder p {
  margin-top: 10px;
  color: var(--muted);
}

/* Forms */

.request-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) minmax(0, 1fr);
  gap: clamp(40px, 7vw, 90px);
  align-items: start;
}

.contact-panel {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--sky);
}

.contact-panel h2 {
  font-size: 2rem;
}

.contact-panel > p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.75;
}

.contact-list {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.contact-list a,
.contact-list span {
  display: block;
}

.contact-list small {
  display: block;
  margin-bottom: 4px;
  color: var(--blue-deep);
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-list a,
.contact-list span {
  color: var(--ink-soft);
  font-weight: 750;
}

.inspection-form {
  display: grid;
  gap: 17px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

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

.inspection-form label {
  display: grid;
  gap: 7px;
}

.inspection-form label > span {
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 800;
}

.inspection-form input,
.inspection-form select,
.inspection-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  outline: none;
  background: #fff;
  color: var(--ink);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.inspection-form textarea {
  min-height: 130px;
  resize: vertical;
}

.inspection-form input:focus,
.inspection-form select:focus,
.inspection-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(22, 119, 184, 0.1);
}

.consent-label {
  grid-template-columns: 20px 1fr !important;
  align-items: start;
  gap: 10px !important;
}

.consent-label input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
}

.consent-label span {
  color: var(--muted) !important;
  font-size: 0.72rem !important;
  font-weight: 600 !important;
  line-height: 1.55;
}

.form-honeypot {
  position: absolute !important;
  left: -9999px !important;
}

.form-alert {
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 0.82rem;
  font-weight: 750;
}

.form-alert-success {
  border: 1px solid rgba(35, 139, 86, 0.24);
  background: #e9f8ef;
  color: #17633d;
}

.form-alert-error {
  border: 1px solid rgba(183, 67, 67, 0.24);
  background: #fff0f0;
  color: #8f2f2f;
}

/* Search, archive, 404 */

.archive-header {
  padding: 72px 0 44px;
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-bottom: 100px;
}

.post-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.post-card h2 {
  font-size: 1.7rem;
}

.post-card p {
  margin-top: 14px;
  color: var(--muted);
}

.post-card .text-link {
  margin-top: 20px;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 100px;
}

.pagination .page-numbers {
  display: grid;
  place-items: center;
  min-width: 42px;
  min-height: 42px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  font-weight: 750;
}

.pagination .current {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--white);
}

.not-found {
  display: grid;
  place-items: center;
  min-height: 65vh;
  padding: 80px 20px;
  text-align: center;
}

.not-found-inner {
  max-width: 720px;
}

.not-found-code {
  color: var(--blue);
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(6rem, 18vw, 13rem);
  font-weight: 650;
  line-height: 0.8;
  opacity: 0.17;
}

.not-found h1 {
  margin-top: -18px;
  font-size: clamp(2.8rem, 6vw, 5rem);
}

.not-found p {
  margin: 22px auto 30px;
  color: var(--muted);
}

.search-form {
  display: flex;
  gap: 10px;
  margin-top: 26px;
}

.search-form label {
  flex: 1;
}

.search-field {
  width: 100%;
  min-height: 52px;
  padding: 12px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 13px;
  background: var(--white);
}

.search-submit {
  min-height: 52px;
  padding: 0 20px;
  border: 0;
  border-radius: 13px;
  background: var(--blue);
  color: var(--white);
  cursor: pointer;
  font-weight: 800;
}

/* Footer */

.site-footer {
  margin-top: 90px;
  border-top: 1px solid var(--line);
  background: #f4f8fa;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(270px, 1.45fr) repeat(3, minmax(160px, 0.65fr));
  gap: clamp(30px, 5vw, 70px);
  padding: 72px 0 58px;
}

.brand-footer .brand-mark {
  background: var(--white);
}

.footer-brand > p {
  max-width: 440px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.75;
}

.footer-contact {
  display: grid;
  gap: 5px;
  margin-top: 20px;
}

.footer-contact a {
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 750;
}

.footer-button {
  margin-top: 22px;
}

.footer-column h2 {
  margin-bottom: 22px;
  font-family: "Manrope", sans-serif;
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-column nav {
  display: grid;
  gap: 11px;
}

.footer-column nav a,
.footer-column p {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.65;
}

.footer-column nav a:hover,
.footer-column nav a:focus-visible {
  color: var(--blue-deep);
}

.footer-area p + p {
  margin-top: 10px;
}

.footer-credential {
  color: var(--blue-deep) !important;
  font-weight: 750;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.69rem;
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* WordPress */

.alignwide {
  width: min(1320px, calc(100vw - 40px));
  max-width: none;
  margin-right: auto;
  margin-left: auto;
}

.alignfull {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
}

.wp-caption,
.wp-caption-text,
.gallery-caption {
  max-width: 100%;
}

.sticky,
.bypostauthor {
  display: initial;
}

/* Responsive */

@media (max-width: 1160px) {
  :root {
    --shell: min(1120px, calc(100vw - 32px));
  }

  .brand-copy span {
    display: none;
  }

  .primary-nav {
    gap: 13px;
  }

  .primary-nav a {
    font-size: 0.77rem;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.82fr);
    gap: 44px;
  }

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

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

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

  .footer-top {
    grid-template-columns: 1.3fr repeat(2, 0.7fr);
  }

  .footer-area {
    grid-column: 2 / -1;
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 72px;
  }

  .utility-inner p {
    max-width: 58vw;
  }

  .utility-actions .utility-schedule {
    display: none;
  }

  .header-main {
    min-height: var(--header-height);
  }

  .menu-toggle {
    display: block;
    z-index: 102;
  }

  .header-navigation {
    position: fixed;
    top: calc(36px + var(--header-height));
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 101;
    display: none;
    align-items: stretch;
    justify-content: flex-start;
    flex-direction: column;
    gap: 26px;
    padding: 30px 24px 40px;
    overflow-y: auto;
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.98);
  }

  .header-navigation.is-open {
    display: flex;
  }

  .primary-nav {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .primary-nav a {
    padding: 17px 4px;
    border-bottom: 1px solid var(--line);
    font-family: "Newsreader", Georgia, serif;
    font-size: 1.48rem;
    font-weight: 650;
  }

  .primary-nav a::after {
    display: none;
  }

  .header-cta {
    min-height: 54px;
    margin-top: auto;
  }

  .hero-layout,
  .owner-layout,
  .watch-layout,
  .flagship-card,
  .final-cta-card,
  .page-split,
  .request-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy h1,
  .owner-panel h2,
  .watch-copy h2,
  .flagship-copy h2,
  .final-cta-card h2,
  .pricing-heading h2,
  .faq-intro h2,
  .page-split-copy h2 {
    max-width: none;
  }

  .hero-visual {
    width: min(700px, 100%);
    margin-inline: auto;
  }

  .hero-image-frame,
  .hero-image {
    min-height: 560px;
    height: 560px;
  }

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

  .signal-grid span:nth-child(3)::before {
    display: none;
  }

  .signal-grid span:nth-child(n+3) {
    border-top: 1px solid var(--line);
  }

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

  .pillar-card {
    min-height: 330px;
  }

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

  .watch-copy,
  .faq-intro {
    position: static;
  }

  .documentation-grid,
  .area-grid {
    grid-template-columns: 1fr;
  }

  .split-heading,
  .pricing-heading,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .faq-intro h2 {
    max-width: 14ch;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-area {
    grid-column: auto;
  }
}

@media (max-width: 720px) {
  :root {
    --shell: min(100% - 24px, 680px);
    --radius-xl: 30px;
  }

  html {
    scroll-padding-top: 105px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.6rem);
  }

  h2 {
    font-size: clamp(2.35rem, 11vw, 3.5rem);
  }

  .utility-inner {
    min-height: 32px;
    font-size: 0.68rem;
  }

  .utility-inner p {
    max-width: 63vw;
  }

  .utility-actions {
    gap: 0;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .brand-mark svg {
    width: 27px;
    height: 27px;
  }

  .brand-copy strong {
    font-size: 1.18rem;
  }

  .header-navigation {
    top: calc(32px + var(--header-height));
  }

  .hero {
    padding-top: 58px;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    padding: 0 0 64px;
  }

  .hero-image-frame {
    border-width: 6px;
    border-radius: 26px 26px 78px 26px;
  }

  .hero-image-frame,
  .hero-image {
    min-height: 440px;
    height: 440px;
  }

  .hero-float-card {
    right: 12px;
    bottom: 0;
    left: 12px;
    width: auto;
  }

  .photo-credit {
    display: none;
  }

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

  .signal-grid span + span::before {
    display: none;
  }

  .signal-grid span:nth-child(n+2) {
    border-top: 1px solid var(--line);
  }

  .section {
    padding: 80px 0;
  }

  .pillar-card {
    min-height: 355px;
    padding: 28px;
  }

  .pillar-card .text-link {
    bottom: 28px;
    left: 28px;
  }

  .owner-panel,
  .flagship-card,
  .final-cta-card {
    padding: 34px 25px;
  }

  .owner-points {
    grid-template-columns: 1fr;
  }

  .owner-points article {
    grid-template-columns: 46px 1fr;
    padding: 21px;
  }

  .owner-points article > span {
    width: 46px;
    height: 46px;
  }

  .service-card-grid,
  .page-card-grid,
  .audience-grid,
  .price-grid,
  .process-grid,
  .credential-row {
    grid-template-columns: 1fr;
  }

  .service-tile {
    min-height: 330px;
    padding: 26px;
  }

  .documentation-card {
    grid-template-columns: 52px 1fr;
    gap: 16px;
    padding: 22px;
  }

  .document-mark {
    width: 52px;
    height: 52px;
  }

  .scope-note,
  .notice-box {
    flex-direction: column;
  }

  .watch-list article {
    grid-template-columns: 50px 1fr;
    gap: 16px;
    padding: 25px 0;
  }

  .flagship-offer {
    padding: 24px;
  }

  .price-card {
    min-height: 180px;
  }

  .area-card {
    grid-template-columns: 48px 1fr;
    padding: 22px;
  }

  .area-pin {
    width: 48px;
    height: 48px;
  }

  .faq-item summary {
    font-size: 1.22rem;
  }

  .button-row,
  .section-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button-row .button,
  .section-actions .button {
    width: 100%;
  }

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

  .inspection-form,
  .contact-panel {
    padding: 24px;
  }

  .report-placeholder {
    grid-template-columns: 1fr;
  }

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

  .footer-top {
    grid-template-columns: 1fr;
    padding-top: 58px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .brand-copy strong {
    font-size: 1.02rem;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .hero-float-card strong {
    font-size: 1.12rem;
  }

  .utility-inner p {
    max-width: 54vw;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
