:root {
  --ink: #09090a;
  --ink-soft: #121214;
  --ink-lift: #1a1a1d;
  --paper: #f6f3ed;
  --paper-2: #ece7df;
  --white: #ffffff;
  --muted: #aaa9a6;
  --muted-dark: #646466;
  --red: #d30a19;
  --red-deep: #9f0712;
  --gold: #d4ad45;
  --gold-light: #f0d780;
  --line: rgba(255, 255, 255, 0.12);
  --line-dark: rgba(9, 9, 10, 0.12);
  --shadow-sm: 0 10px 30px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 28px 80px rgba(0, 0, 0, 0.28);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 32px;
  --container: 1180px;
  --header-height: 82px;
  --ease: cubic-bezier(0.2, 0.75, 0.25, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.nav-open {
  overflow: hidden;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button {
  cursor: pointer;
}
::selection {
  color: var(--white);
  background: var(--red);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--gold-light);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}
.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}
.narrow {
  width: min(calc(100% - 40px), 820px);
  margin-inline: auto;
}
.section {
  position: relative;
  padding: 104px 0;
}
.section-sm {
  padding: 72px 0;
}
.section-dark {
  color: var(--white);
  background: var(--ink);
}
.section-ink-soft {
  color: var(--white);
  background: var(--ink-soft);
}
.section-paper {
  background: var(--paper);
}
.section-white {
  background: var(--white);
}
.section-border {
  border-top: 1px solid var(--line-dark);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}
.eyebrow::before {
  width: 28px;
  height: 2px;
  content: "";
  background: currentColor;
}
.section-dark .eyebrow,
.section-ink-soft .eyebrow {
  color: var(--gold-light);
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.55em;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
}
h1 {
  font-size: clamp(3rem, 7vw, 6.25rem);
}
h2 {
  font-size: clamp(2.25rem, 4.4vw, 4.15rem);
}
h3 {
  font-size: clamp(1.28rem, 2.1vw, 1.8rem);
  letter-spacing: -0.02em;
}
h4 {
  font-size: 1.05rem;
  letter-spacing: -0.015em;
}
p {
  margin: 0 0 1.2em;
}
.lead {
  max-width: 760px;
  color: var(--muted-dark);
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
  line-height: 1.75;
}
.section-dark .lead,
.section-ink-soft .lead {
  color: #c5c4c0;
}
.text-muted {
  color: var(--muted-dark);
}
.text-light-muted {
  color: #b9b8b4;
}
.text-red {
  color: var(--red);
}
.text-gold {
  color: var(--gold);
}
.kicker {
  font-size: 1.1rem;
  font-weight: 700;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.7fr);
  align-items: end;
  gap: 54px;
  margin-bottom: 52px;
}
.section-head p {
  margin-bottom: 0;
}
.section-head.center {
  display: block;
  max-width: 790px;
  margin-inline: auto;
  text-align: center;
}
.section-head.center .eyebrow {
  justify-content: center;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition:
    transform 0.22s var(--ease),
    box-shadow 0.22s var(--ease),
    background 0.22s ease,
    color 0.22s ease,
    border-color 0.22s ease;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn:focus-visible {
  outline: 3px solid rgba(212, 173, 69, 0.45);
  outline-offset: 3px;
}
.btn-primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 14px 30px rgba(211, 10, 25, 0.22);
}
.btn-primary:hover {
  background: #e70d1d;
  box-shadow: 0 17px 34px rgba(211, 10, 25, 0.3);
}
.btn-gold {
  color: var(--ink);
  background: var(--gold-light);
  box-shadow: 0 14px 30px rgba(212, 173, 69, 0.18);
}
.btn-gold:hover {
  background: #f7df8d;
}
.btn-outline {
  color: inherit;
  border-color: currentColor;
  background: transparent;
}
.btn-outline:hover {
  color: var(--white);
  border-color: var(--red);
  background: var(--red);
}
.btn-dark {
  color: var(--white);
  background: var(--ink);
}
.btn-dark:hover {
  background: var(--ink-lift);
}
.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  color: var(--red);
  font-size: 0.9rem;
  font-weight: 800;
}
.btn-link::after {
  content: "→";
  transition: transform 0.2s ease;
}
.btn-link:hover::after {
  transform: translateX(4px);
}

.utility-bar {
  color: #d7d6d2;
  background: #050506;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.utility-inner {
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.utility-items {
  display: flex;
  align-items: center;
  gap: 20px;
}
.utility-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
}
.utility-link {
  transition: color 0.2s ease;
}
.utility-link:hover {
  color: var(--gold-light);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  color: var(--white);
  background: rgba(9, 9, 10, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(14px);
  transition:
    box-shadow 0.25s ease,
    background 0.25s ease;
}
.site-header.scrolled {
  background: rgba(6, 6, 7, 0.97);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}
.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  min-width: 235px;
  align-items: center;
  gap: 12px;
}
.brand-logo {
  width: 56px;
  height: 54px;
  object-fit: contain;
}
.brand-copy {
  display: grid;
  line-height: 1.02;
}
.brand-copy strong {
  font-size: 0.94rem;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}
.brand-copy span {
  margin-top: 5px;
  color: var(--gold-light);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.nav-wrap {
  display: flex;
  align-items: center;
  gap: 28px;
}
.primary-nav {
  display: flex;
  align-items: center;
  gap: 27px;
}
.primary-nav a {
  position: relative;
  padding: 28px 0 25px;
  color: #d9d8d5;
  font-size: 0.85rem;
  font-weight: 750;
}
.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.23s var(--ease);
}
.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
  color: var(--white);
}
.primary-nav a:hover::after,
.primary-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}
.header-cta {
  min-height: 44px;
  padding: 10px 18px;
}
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: var(--white);
  background: transparent;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}
.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}
.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(
      circle at 78% 20%,
      rgba(211, 10, 25, 0.16),
      transparent 35%
    ),
    radial-gradient(
      circle at 64% 78%,
      rgba(212, 173, 69, 0.12),
      transparent 31%
    ),
    var(--ink);
}
.hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.38;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to right, transparent 0%, #000 34%, #000 100%);
}
.hero::after {
  position: absolute;
  top: -150px;
  right: -170px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(212, 173, 69, 0.18);
  border-radius: 50%;
  content: "";
  box-shadow:
    0 0 0 80px rgba(212, 173, 69, 0.025),
    0 0 0 160px rgba(212, 173, 69, 0.018);
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 760px;
  grid-template-columns: minmax(0, 1.03fr) minmax(420px, 0.82fr);
  align-items: center;
  gap: 70px;
  padding: 82px 0 90px;
}
.hero-copy {
  max-width: 720px;
}
.hero h1 {
  max-width: 760px;
  font-size: clamp(3.25rem, 6.7vw, 6.6rem);
}
.hero h1 span {
  color: var(--gold-light);
}
.hero .lead {
  max-width: 680px;
  color: #cbc9c4;
}
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 34px;
}
.hero-pill {
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: #e4e2dc;
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.76rem;
  font-weight: 750;
}
.hero-visual {
  position: relative;
  min-height: 620px;
}
.hero-photo-card {
  position: absolute;
  right: 0;
  bottom: 24px;
  width: min(100%, 520px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background: var(--ink-soft);
  box-shadow: var(--shadow-lg);
}
.hero-photo-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(to top, rgba(0, 0, 0, 0.62), transparent 48%);
  pointer-events: none;
}
.hero-photo-card img {
  width: 100%;
  aspect-ratio: 1.11 / 1;
  object-fit: cover;
  object-position: center;
}
.hero-photo-caption {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 22px;
  left: 24px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}
.hero-photo-caption strong {
  max-width: 260px;
  font-size: 1.05rem;
  line-height: 1.3;
}
.hero-photo-caption span {
  color: var(--gold-light);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-logo-card {
  position: absolute;
  z-index: 3;
  top: 0;
  right: -12px;
  width: 245px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: #050506;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.42);
}
.hero-logo-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 50%;
}
.hero-stat {
  position: absolute;
  z-index: 4;
  left: -28px;
  bottom: 66px;
  width: 192px;
  padding: 22px;
  border-left: 4px solid var(--red);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--ink);
  background: var(--gold-light);
  box-shadow: var(--shadow-lg);
}
.hero-stat strong {
  display: block;
  font-size: 2.25rem;
  line-height: 1;
}
.hero-stat span {
  display: block;
  margin-top: 7px;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.trust-strip {
  position: relative;
  z-index: 5;
  margin-top: -1px;
  color: var(--white);
  background: #050506;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-item {
  min-height: 128px;
  padding: 25px 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
}
.trust-item:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.09);
}
.trust-item strong {
  display: block;
  margin-bottom: 5px;
  color: var(--gold-light);
  font-size: 1rem;
}
.trust-item span {
  color: #aaa9a5;
  font-size: 0.84rem;
  line-height: 1.55;
}

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

.about-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 76px;
}
.media-stack {
  position: relative;
  min-height: 590px;
}
.media-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 88%;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.media-main img {
  width: 100%;
  aspect-ratio: 1.07 / 1;
  object-fit: cover;
}
.media-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 58%;
  padding: 10px;
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: var(--shadow-lg);
}
.media-accent img {
  width: 100%;
  aspect-ratio: 1.15 / 1;
  object-fit: contain;
}
.media-badge {
  position: absolute;
  top: 43%;
  left: -18px;
  display: grid;
  width: 132px;
  height: 132px;
  place-content: center;
  padding: 16px;
  border: 8px solid var(--paper);
  border-radius: 50%;
  color: var(--white);
  background: var(--red);
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.media-badge strong {
  font-size: 1.85rem;
  line-height: 1;
}
.media-badge span {
  margin-top: 6px;
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.check-list {
  display: grid;
  gap: 13px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}
.check-list li {
  position: relative;
  padding-left: 34px;
}
.check-list li::before {
  position: absolute;
  top: 0.15em;
  left: 0;
  display: grid;
  width: 22px;
  height: 22px;
  place-content: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--red);
  content: "✓";
  font-size: 0.75rem;
  font-weight: 900;
}

.service-card {
  position: relative;
  display: flex;
  min-height: 330px;
  flex-direction: column;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02);
  transition:
    transform 0.28s var(--ease),
    box-shadow 0.28s var(--ease),
    border-color 0.28s ease;
}
.service-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--red), var(--gold));
  transform: scaleX(0.32);
  transform-origin: left;
  transition: transform 0.28s var(--ease);
}
.service-card:hover {
  transform: translateY(-7px);
  border-color: rgba(211, 10, 25, 0.22);
  box-shadow: 0 20px 50px rgba(20, 20, 22, 0.1);
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-number {
  margin-bottom: 52px;
  color: #b5b0a7;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.13em;
}
.service-card h3 {
  max-width: 260px;
}
.service-card p {
  color: var(--muted-dark);
  font-size: 0.92rem;
}
.service-card .btn-link {
  margin-top: auto;
  align-self: flex-start;
}
.service-card.dark {
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  background: var(--ink-soft);
}
.service-card.dark p {
  color: #b7b6b2;
}
.service-card.dark .service-number {
  color: var(--gold-light);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  counter-reset: process;
}
.process-step {
  position: relative;
  min-height: 260px;
  padding: 34px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  counter-increment: process;
}
.process-step:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}
.process-step::before {
  display: block;
  margin-bottom: 52px;
  color: var(--gold-light);
  content: "0" counter(process);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}
.process-step h3 {
  font-size: 1.35rem;
}
.process-step p {
  margin-bottom: 0;
  color: #aaa9a5;
  font-size: 0.9rem;
}

.feature-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--ink);
  box-shadow: var(--shadow-lg);
}
.feature-panel-media {
  position: relative;
  min-height: 580px;
}
.feature-panel-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feature-panel-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, transparent 65%, rgba(9, 9, 10, 0.85));
}
.feature-panel-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px;
  color: var(--white);
}
.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.1);
}
.feature-list div {
  min-height: 105px;
  padding: 20px;
  background: var(--ink);
}
.feature-list strong {
  display: block;
  margin-bottom: 6px;
  color: var(--gold-light);
  font-size: 0.9rem;
}
.feature-list span {
  color: #aaa9a5;
  font-size: 0.8rem;
  line-height: 1.5;
}

.credential-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.credential {
  min-height: 150px;
  padding: 23px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.55);
}
.credential-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-content: center;
  margin-bottom: 20px;
  border: 1px solid rgba(211, 10, 25, 0.25);
  border-radius: 50%;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
}
.credential strong {
  display: block;
  font-size: 0.92rem;
  line-height: 1.35;
}

.team-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.team-photo {
  overflow: hidden;
  background: #e3dfd7;
}
.team-photo img {
  width: 100%;
  aspect-ratio: 0.88 / 1;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.team-card:hover .team-photo img {
  transform: scale(1.035);
}
.team-card:nth-child(1) .team-photo img {
  object-position: center 32%;
}
.team-card:nth-child(2) .team-photo img {
  object-position: center 30%;
}
.team-card:nth-child(3) .team-photo img {
  object-position: center 25%;
}
.team-card:nth-child(4) .team-photo img {
  object-position: center 26%;
}
.team-copy {
  padding: 23px;
}
.team-role {
  display: block;
  margin-bottom: 7px;
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.team-copy h3 {
  margin-bottom: 8px;
  font-size: 1.22rem;
}
.team-copy p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 0.82rem;
}

.quote-band {
  position: relative;
  overflow: hidden;
  padding: 72px 0;
  color: var(--white);
  background: var(--red-deep);
}
.quote-band::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.18;
  background: linear-gradient(
    115deg,
    transparent 0 35%,
    var(--gold-light) 35% 37%,
    transparent 37% 100%
  );
}
.quote-band-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
}
.quote-band h2 {
  max-width: 800px;
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.65rem);
}
.quote-band p {
  max-width: 580px;
  margin: 14px 0 0;
  color: #f1cccc;
}
.quote-band .btn {
  flex-shrink: 0;
}

.faq-list {
  border-top: 1px solid var(--line-dark);
}
.faq-item {
  border-bottom: 1px solid var(--line-dark);
}
.faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 24px 0;
  border: 0;
  color: var(--ink);
  background: transparent;
  text-align: left;
  font-weight: 800;
}
.faq-question::after {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  place-content: center;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  content: "+";
  font-size: 1.2rem;
  font-weight: 400;
  transition:
    transform 0.22s ease,
    color 0.22s ease,
    background 0.22s ease;
}
.faq-question[aria-expanded="true"]::after {
  color: var(--white);
  background: var(--red);
  transform: rotate(45deg);
}
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s var(--ease);
}
.faq-answer > div {
  overflow: hidden;
}
.faq-answer p {
  max-width: 830px;
  margin: 0;
  padding: 0 0 25px;
  color: var(--muted-dark);
}
.faq-question[aria-expanded="true"] + .faq-answer {
  grid-template-rows: 1fr;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 112px 0 92px;
  color: var(--white);
  background: var(--ink);
}
.page-hero::before {
  position: absolute;
  top: -60%;
  right: -12%;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(212, 173, 69, 0.14);
  border-radius: 50%;
  content: "";
  box-shadow:
    0 0 0 85px rgba(212, 173, 69, 0.025),
    0 0 0 170px rgba(212, 173, 69, 0.018);
}
.page-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.25;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
}
.page-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 64px;
}
.page-hero h1 {
  max-width: 850px;
  font-size: clamp(3rem, 6vw, 5.8rem);
}
.page-hero .lead {
  margin-bottom: 0;
}
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 28px;
  color: #aaa9a5;
  font-size: 0.78rem;
  font-weight: 700;
}
.breadcrumbs a:hover {
  color: var(--gold-light);
}
.breadcrumbs span[aria-hidden] {
  color: #676764;
}
.page-hero-aside {
  padding: 28px;
  border-left: 3px solid var(--red);
  background: rgba(255, 255, 255, 0.04);
}
.page-hero-aside strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-light);
  font-size: 0.78rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.page-hero-aside p {
  margin: 0;
  color: #c8c7c3;
  font-size: 0.92rem;
}

.prose {
  font-size: 1.04rem;
}
.prose h2 {
  margin-top: 1.35em;
  font-size: clamp(2rem, 3.5vw, 3rem);
}
.prose h3 {
  margin-top: 1.6em;
}
.prose p,
.prose li {
  color: #4c4c4e;
}
.prose ul,
.prose ol {
  padding-left: 1.25rem;
}
.prose li {
  margin-bottom: 0.55rem;
}
.prose .callout {
  margin: 42px 0;
  padding: 30px;
  border-left: 4px solid var(--red);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.prose .callout p:last-child {
  margin-bottom: 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.value-card {
  min-height: 310px;
  padding: 30px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.value-card span {
  display: block;
  margin-bottom: 56px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}
.value-card p {
  margin-bottom: 0;
  color: var(--muted-dark);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  align-items: start;
  gap: 70px;
}
.sticky-card {
  position: sticky;
  top: calc(var(--header-height) + 30px);
  padding: 30px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--ink);
  box-shadow: var(--shadow-lg);
}
.sticky-card h3 {
  font-size: 1.55rem;
}
.sticky-card p {
  color: #b6b5b1;
  font-size: 0.9rem;
}
.sticky-card .btn {
  width: 100%;
}
.sticky-list {
  display: grid;
  gap: 0;
  margin: 24px 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  list-style: none;
}
.sticky-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #d3d2ce;
  font-size: 0.84rem;
}

.detail-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 32px 0;
}
.detail-card {
  min-height: 180px;
  padding: 24px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-sm);
  background: var(--white);
}
.detail-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.05rem;
}
.detail-card p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 0.88rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 70px;
}
.contact-cards {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}
.contact-card {
  padding: 22px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-sm);
  background: var(--white);
}
.contact-card span {
  display: block;
  margin-bottom: 6px;
  color: var(--red);
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.contact-card strong,
.contact-card a {
  font-size: 0.95rem;
  font-weight: 780;
}
.contact-card a:hover {
  color: var(--red);
}
.form-panel {
  padding: 42px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background: var(--ink);
  box-shadow: var(--shadow-lg);
}
.form-panel h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}
.form-note {
  color: #aaa9a5;
  font-size: 0.78rem;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 17px;
}
.field {
  display: grid;
  gap: 8px;
}
.field.full {
  grid-column: 1 / -1;
}
.field label {
  color: #d5d4d0;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.055);
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}
.field textarea {
  min-height: 130px;
  resize: vertical;
}
.field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #aaa 50%),
    linear-gradient(135deg, #aaa 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 22px,
    calc(100% - 13px) 22px;
  background-size:
    5px 5px,
    5px 5px;
  background-repeat: no-repeat;
}
.field select option {
  color: var(--ink);
  background: var(--white);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(212, 173, 69, 0.12);
}
.field input::placeholder,
.field textarea::placeholder {
  color: #777;
}
.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
}
.form-status {
  min-height: 24px;
  margin-top: 12px;
  color: var(--gold-light);
  font-size: 0.8rem;
}

.map-card {
  min-height: 360px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: var(--white);
  background: var(--ink-soft);
  box-shadow: var(--shadow-lg);
}
.map-card-inner {
  position: relative;
  display: grid;
  min-height: 360px;
  place-content: center;
  padding: 48px;
  text-align: center;
}
.map-card-inner::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.35;
  background-image:
    radial-gradient(
      circle at center,
      rgba(212, 173, 69, 0.3) 0 3px,
      transparent 4px
    ),
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size:
    auto,
    34px 34px,
    34px 34px;
}
.map-card-inner > * {
  position: relative;
  z-index: 2;
}
.map-pin {
  display: grid;
  width: 62px;
  height: 62px;
  place-content: center;
  margin: 0 auto 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  color: var(--white);
  background: var(--red);
  font-size: 1.45rem;
}
.map-card h3 {
  margin-bottom: 10px;
}
.map-card p {
  max-width: 430px;
  margin: 0 auto 20px;
  color: #b8b7b3;
}

.site-footer {
  color: #c6c5c1;
  background: #050506;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.35fr 0.7fr 0.7fr 1fr;
  gap: 54px;
  padding: 76px 0 56px;
}
.footer-brand {
  max-width: 390px;
}
.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.footer-logo-row img {
  width: 74px;
  height: 70px;
  object-fit: contain;
}
.footer-logo-row strong {
  display: block;
  color: var(--white);
  font-size: 1rem;
  line-height: 1.25;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.footer-logo-row span {
  display: block;
  margin-top: 5px;
  color: var(--gold-light);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.footer-brand p {
  color: #8f8e8a;
  font-size: 0.86rem;
}
.footer-title {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.footer-links {
  display: grid;
  gap: 10px;
}
.footer-links a {
  color: #9d9c98;
  font-size: 0.85rem;
  transition: color 0.2s ease;
}
.footer-links a:hover {
  color: var(--gold-light);
}
.footer-contact {
  display: grid;
  gap: 12px;
}
.footer-contact a,
.footer-contact address {
  color: #9d9c98;
  font-size: 0.84rem;
  font-style: normal;
}
.footer-contact a:hover {
  color: var(--gold-light);
}
.footer-bottom {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #73736f;
  font-size: 0.74rem;
}
.footer-bottom-links {
  display: flex;
  gap: 18px;
}
.footer-bottom a:hover {
  color: var(--white);
}

.whatsapp-float {
  position: fixed;
  z-index: 900;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 58px;
  height: 58px;
  place-content: center;
  border: 3px solid var(--paper);
  border-radius: 50%;
  color: var(--white);
  background: #1fae5b;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  transition:
    transform 0.22s var(--ease),
    box-shadow 0.22s ease;
}
.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.3);
}
.whatsapp-float svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 {
  transition-delay: 0.08s;
}
.reveal-delay-2 {
  transition-delay: 0.16s;
}
.reveal-delay-3 {
  transition-delay: 0.24s;
}

@media (max-width: 1080px) {
  :root {
    --header-height: 74px;
  }
  .utility-bar {
    display: none;
  }
  .header-cta {
    display: none;
  }
  .nav-toggle {
    display: block;
  }
  .nav-wrap {
    gap: 14px;
  }
  .primary-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 24px 20px 100px;
    overflow-y: auto;
    background: rgba(6, 6, 7, 0.99);
    transform: translateX(105%);
    transition: transform 0.32s var(--ease);
  }
  .nav-open .primary-nav {
    transform: translateX(0);
  }
  .primary-nav a {
    padding: 19px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    font-size: 1.15rem;
  }
  .primary-nav a::after {
    display: none;
  }
  .hero-inner {
    grid-template-columns: 1fr 420px;
    gap: 36px;
  }
  .hero-visual {
    min-height: 560px;
  }
  .hero-logo-card {
    width: 190px;
  }
  .hero-stat {
    left: -12px;
  }
  .section-head {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .credential-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-split {
    gap: 44px;
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-step:nth-child(3) {
    border-left: 1px solid rgba(255, 255, 255, 0.12);
  }
  .feature-panel {
    grid-template-columns: 1fr;
  }
  .feature-panel-media {
    min-height: 470px;
  }
  .feature-panel-media::after {
    background: linear-gradient(
      to bottom,
      transparent 65%,
      rgba(9, 9, 10, 0.9)
    );
  }
  .footer-main {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
  .footer-main > :last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  .section {
    padding: 82px 0;
  }
  .hero {
    min-height: auto;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 74px 0 70px;
  }
  .hero-copy {
    max-width: 760px;
  }
  .hero-visual {
    min-height: 600px;
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
  }
  .hero-photo-card {
    right: 4%;
    width: 84%;
  }
  .hero-logo-card {
    right: 0;
  }
  .hero-stat {
    left: 0;
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-item:nth-child(3) {
    border-left: 1px solid rgba(255, 255, 255, 0.09);
  }
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .about-split {
    grid-template-columns: 1fr;
  }
  .about-split .media-stack {
    order: 2;
  }
  .media-stack {
    max-width: 620px;
    width: 100%;
    margin-inline: auto;
  }
  .feature-panel-copy {
    padding: 44px 30px;
  }
  .quote-band-inner {
    align-items: flex-start;
    flex-direction: column;
  }
  .page-hero-inner {
    grid-template-columns: 1fr;
  }
  .page-hero-aside {
    max-width: 560px;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .service-detail-grid {
    grid-template-columns: 1fr;
  }
  .sticky-card {
    position: static;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
  .footer-main > :first-child,
  .footer-main > :last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .container,
  .narrow {
    width: min(calc(100% - 28px), var(--container));
  }
  .brand {
    min-width: auto;
  }
  .brand-logo {
    width: 48px;
    height: 46px;
  }
  .brand-copy strong {
    font-size: 0.78rem;
  }
  .brand-copy span {
    font-size: 0.58rem;
  }
  .hero-inner {
    padding-top: 58px;
  }
  .hero h1 {
    font-size: clamp(2.75rem, 14vw, 4.1rem);
  }
  .hero-visual {
    min-height: 470px;
  }
  .hero-photo-card {
    right: 0;
    width: 94%;
  }
  .hero-photo-caption {
    right: 16px;
    bottom: 15px;
    left: 16px;
  }
  .hero-photo-caption strong {
    font-size: 0.88rem;
  }
  .hero-logo-card {
    width: 132px;
    padding: 6px;
  }
  .hero-stat {
    bottom: 40px;
    width: 142px;
    padding: 16px;
  }
  .hero-stat strong {
    font-size: 1.65rem;
  }
  .hero-stat span {
    font-size: 0.58rem;
  }
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .trust-item,
  .trust-item:first-child,
  .trust-item:nth-child(3) {
    border-right: 1px solid rgba(255, 255, 255, 0.09);
    border-left: 1px solid rgba(255, 255, 255, 0.09);
  }
  .grid-4,
  .credential-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }
  .process-step,
  .process-step:nth-child(3) {
    border-left: 1px solid rgba(255, 255, 255, 0.12);
  }
  .media-stack {
    min-height: 470px;
  }
  .media-main {
    width: 94%;
  }
  .media-accent {
    width: 64%;
  }
  .media-badge {
    top: 50%;
    left: -8px;
    width: 104px;
    height: 104px;
    border-width: 5px;
  }
  .media-badge strong {
    font-size: 1.35rem;
  }
  .feature-list {
    grid-template-columns: 1fr;
  }
  .feature-panel-media {
    min-height: 360px;
  }
  .team-card {
    max-width: 420px;
    margin-inline: auto;
  }
  .quote-band {
    padding: 60px 0;
  }
  .page-hero {
    padding: 78px 0 68px;
  }
  .page-hero h1 {
    font-size: clamp(2.7rem, 13vw, 4.4rem);
  }
  .detail-cards {
    grid-template-columns: 1fr;
  }
  .form-panel {
    padding: 30px 20px;
    border-radius: var(--radius);
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .field.full {
    grid-column: auto;
  }
  .footer-main {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .footer-main > :first-child,
  .footer-main > :last-child {
    grid-column: auto;
  }
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding: 18px 0;
  }
  .whatsapp-float {
    right: 15px;
    bottom: 15px;
    width: 54px;
    height: 54px;
  }
}

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

/* ===== 2026 visual refresh: lighter, cleaner and photo-led ===== */
:root {
  --ink: #171719;
  --ink-soft: #252529;
  --ink-lift: #333338;
  --paper: #f7f3ec;
  --paper-2: #ece5da;
  --muted: #8c8983;
  --muted-dark: #5d5b58;
  --red: #c60b1a;
  --red-deep: #970914;
  --gold: #cda43b;
  --gold-light: #efd576;
  --line-dark: rgba(23, 23, 25, 0.13);
  --shadow-sm: 0 12px 34px rgba(45, 37, 29, 0.09);
  --shadow-lg: 0 28px 70px rgba(45, 37, 29, 0.18);
}
body {
  background: var(--paper);
}
.section-paper {
  background: var(--paper);
}
.section-white {
  background: #fffdfa;
}
.section-dark {
  background: #242428;
}
.section-ink-soft {
  background: #303035;
}
.utility-bar {
  color: #f6efe7;
  background: #252529;
  border-bottom-color: rgba(255, 255, 255, 0.08);
}
.site-header {
  color: var(--ink);
  background: rgba(255, 253, 250, 0.94);
  border-bottom: 1px solid rgba(23, 23, 25, 0.1);
  box-shadow: 0 6px 24px rgba(41, 34, 28, 0.06);
}
.site-header.scrolled {
  background: rgba(255, 253, 250, 0.985);
  box-shadow: 0 12px 32px rgba(41, 34, 28, 0.1);
}
.brand-logo {
  filter: drop-shadow(0 4px 7px rgba(0, 0, 0, 0.12));
}
.brand-copy strong {
  color: var(--ink);
}
.brand-copy span {
  color: var(--red);
}
.primary-nav a {
  color: #4b4946;
}
.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
  color: var(--ink);
}
.nav-toggle {
  color: var(--ink);
  border-color: rgba(23, 23, 25, 0.18);
}
.hero {
  min-height: 720px;
  color: var(--ink);
  background:
    radial-gradient(
      circle at 14% 18%,
      rgba(239, 213, 118, 0.32),
      transparent 30%
    ),
    linear-gradient(130deg, #fffdfa 0%, #f7f2ea 55%, #e9e0d4 100%);
}
.hero::before {
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(23, 23, 25, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 23, 25, 0.045) 1px, transparent 1px);
  mask-image: linear-gradient(to right, #000 0%, #000 62%, transparent 100%);
}
.hero::after {
  border-color: rgba(198, 11, 26, 0.12);
  box-shadow:
    0 0 0 80px rgba(198, 11, 26, 0.018),
    0 0 0 160px rgba(205, 164, 59, 0.025);
}
.hero-inner {
  min-height: 720px;
}
.hero h1 span {
  color: var(--red);
}
.hero .lead {
  color: #5b5854;
}
.hero-pill {
  color: #45423f;
  background: rgba(255, 255, 255, 0.66);
  border-color: rgba(23, 23, 25, 0.12);
  box-shadow: 0 5px 18px rgba(44, 36, 29, 0.05);
}
.hero-photo-card {
  border: 8px solid rgba(255, 255, 255, 0.82);
  background: #fff;
  box-shadow: 0 30px 70px rgba(45, 37, 29, 0.22);
}
.hero-photo-card img {
  aspect-ratio: 1.18 / 1;
  object-position: center 40%;
}
.hero-photo-caption {
  padding: 15px 17px;
  border-radius: 12px;
  background: rgba(23, 23, 25, 0.82);
  backdrop-filter: blur(8px);
}
.hero-photo-caption strong {
  color: #fff;
}
.hero-photo-caption span {
  color: var(--gold-light);
}
.hero-logo-card {
  padding: 9px;
  border: 1px solid rgba(198, 11, 26, 0.15);

  box-shadow: 0 20px 45px rgba(45, 37, 29, 0.18);
}
.hero-logo-card img {
  border-radius: 0;
}
.hero-stat {
  border-left-color: var(--red);
  background: #fffdfa;
  box-shadow: 0 20px 50px rgba(45, 37, 29, 0.16);
}
.hero-stat strong {
  color: var(--red);
}
.trust-strip {
  color: var(--ink);
  background: #fffdfa;
  border-top-color: rgba(23, 23, 25, 0.08);
  border-bottom-color: rgba(23, 23, 25, 0.09);
  box-shadow: 0 12px 35px rgba(45, 37, 29, 0.05);
}
.trust-item,
.trust-item:first-child {
  border-color: rgba(23, 23, 25, 0.09);
}
.trust-item strong {
  color: var(--red);
}
.trust-item span {
  color: #67635f;
}
.media-main {
  border: 8px solid #fff;
}
.media-main img {
  aspect-ratio: 1.12 / 1;
  object-position: center;
}
.media-accent {
  width: 52%;
  padding: 12px;
  border: 1px solid rgba(23, 23, 25, 0.08);
  background: #000;
}
.media-accent img {
  aspect-ratio: 1 / 1;
}
.service-card {
  min-height: 318px;
  padding: 28px;
  border-color: rgba(23, 23, 25, 0.1);
  background: #fffdfa;
  box-shadow: 0 10px 30px rgba(45, 37, 29, 0.055);
}
.service-card:hover {
  box-shadow: 0 22px 55px rgba(45, 37, 29, 0.12);
}
.service-number {
  margin-bottom: 38px;
  color: var(--red);
}
.credential {
  background: rgba(255, 253, 250, 0.82);
}
.page-hero {
  color: var(--ink);
  background:
    radial-gradient(circle at 84% 14%, rgba(198, 11, 26, 0.1), transparent 29%),
    linear-gradient(130deg, #fffdfa 0%, #f2ece3 100%);
}
.page-hero::before {
  border-color: rgba(198, 11, 26, 0.1);
  box-shadow:
    0 0 0 85px rgba(198, 11, 26, 0.018),
    0 0 0 170px rgba(205, 164, 59, 0.02);
}
.page-hero::after {
  opacity: 0.26;
  background-image:
    linear-gradient(rgba(23, 23, 25, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 23, 25, 0.04) 1px, transparent 1px);
}
.page-hero .lead {
  color: #5d5955;
}
.breadcrumbs {
  color: #746f69;
}
.breadcrumbs a:hover {
  color: var(--red);
}
.page-hero-aside {
  border-left-color: var(--red);
  background: rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow-sm);
}
.page-hero-aside strong {
  color: var(--red);
}
.page-hero-aside p {
  color: #5d5955;
}
.quote-band {
  background: linear-gradient(120deg, #a60715, #cb1020);
}
.site-footer {
  background: #202024;
}
.form-panel,
.sticky-card,
.map-card {
  background: #29292e;
}

.operations-showcase {
  display: grid;
  grid-template-columns: minmax(340px, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: 70px;
}
.operations-photo {
  position: relative;
  min-height: 620px;
}
.operations-photo picture {
  position: absolute;
  inset: 0 52px 0 0;
  overflow: hidden;
  border: 9px solid #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.operations-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.operations-photo::after {
  position: absolute;
  right: 0;
  bottom: 38px;
  width: 172px;
  height: 172px;
  border: 11px solid var(--paper);
  border-radius: 50%;
  content: "";
  background:
    url("../img/bravo-delta-logo.png") center/92% no-repeat,
    #fffdfa;
  box-shadow: var(--shadow-lg);
}
.offering-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
  margin-top: 30px;
}
.offering-link {
  display: grid;
  min-height: 132px;
  align-content: space-between;
  padding: 21px;
  border: 1px solid rgba(23, 23, 25, 0.11);
  border-radius: var(--radius-sm);
  background: #fffdfa;
  transition:
    transform 0.22s var(--ease),
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}
.offering-link:hover {
  transform: translateY(-4px);
  border-color: rgba(198, 11, 26, 0.25);
  box-shadow: var(--shadow-sm);
}
.offering-link span {
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.offering-link strong {
  font-size: 1.05rem;
  line-height: 1.25;
}
.offering-link strong::after {
  margin-left: 8px;
  color: var(--red);
  content: "→";
}

.photo-ribbon {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
}
.photo-ribbon figure {
  position: relative;
  min-height: 370px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.photo-ribbon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-ribbon figure:first-child img {
  object-position: center 38%;
}
.photo-ribbon figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 14px 16px;
  border-radius: 10px;
  color: #fff;
  background: rgba(23, 23, 25, 0.78);
  font-size: 0.82rem;
  font-weight: 750;
  backdrop-filter: blur(7px);
}

.service-card.featured-service {
  border-color: rgba(198, 11, 26, 0.2);
  background: linear-gradient(145deg, #fffdfa, #f5ece5);
}
.service-card.featured-service::after {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 5px 8px;
  border-radius: 999px;
  color: #fff;
  content: "NEW";
  background: var(--red);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

@media (max-width: 1080px) {
  .primary-nav {
    background: rgba(255, 253, 250, 0.995);
  }
  .primary-nav a {
    color: var(--ink);
    border-bottom-color: rgba(23, 23, 25, 0.1);
  }
  .operations-showcase {
    gap: 42px;
  }
}
@media (max-width: 820px) {
  .operations-showcase {
    grid-template-columns: 1fr;
  }
  .operations-photo {
    min-height: 590px;
    max-width: 580px;
    width: 100%;
    margin-inline: auto;
  }
  .photo-ribbon {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .hero-photo-card {
    border-width: 5px;
  }
  .hero-photo-caption {
    display: block;
  }
  .hero-photo-caption span {
    display: block;
    margin-top: 6px;
  }
  .operations-photo {
    min-height: 500px;
  }
  .operations-photo picture {
    right: 24px;
  }
  .operations-photo::after {
    width: 124px;
    height: 124px;
    border-width: 8px;
  }
  .offering-list {
    grid-template-columns: 1fr;
  }
}

/* Content remains readable even when JavaScript or observers are unavailable. */
.reveal,
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

html,
body {
  overflow-x: clip;
}
@media (max-width: 1080px) {
  .site-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .primary-nav {
    position: fixed;
    z-index: 9999;
    top: var(--header-height);
    right: 0;
    bottom: auto;
    left: 0;

    display: flex;
    width: 100%;
    height: calc(100dvh - var(--header-height));
    max-height: calc(100dvh - var(--header-height));

    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 24px 20px 100px;

    overflow-x: hidden;
    overflow-y: auto;
    visibility: hidden;
    pointer-events: none;

    background: rgba(255, 253, 250, 0.995);
    transform: translateX(105%);
    transition:
      transform 0.32s var(--ease),
      visibility 0.32s;
  }

  .nav-open .primary-nav {
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
  }
}
@media (max-width: 1080px) {
  body {
    padding-top: var(--header-height);
  }

  .site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    z-index: 10000;

    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .primary-nav {
    position: fixed;
    z-index: 9999;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;

    width: 100%;
    height: calc(100dvh - var(--header-height));
    max-height: calc(100dvh - var(--header-height));

    overflow-y: auto;
  }

  .nav-toggle {
    position: relative;
    z-index: 10001;
    flex: 0 0 46px;
  }
}
