@font-face {
  font-display: swap;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  src: url("fonts/Montserrat-Regular.ttf") format("truetype");
}

@font-face {
  font-display: swap;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  src: url("fonts/Montserrat-Medium.ttf") format("truetype");
}

@font-face {
  font-display: swap;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  src: url("fonts/Montserrat-SemiBold.ttf") format("truetype");
}

@font-face {
  font-display: swap;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  src: url("fonts/Montserrat-Bold.ttf") format("truetype");
}

:root {
  color-scheme: light;
  --ink: #22231f;
  --muted: #686b5f;
  --deep: #1b1d17;
  --deep-2: #2f3427;
  --sage: #7c8867;
  --sage-2: #b4b99b;
  --gold: #c0a16b;
  --gold-2: #e7dcc6;
  --ivory: #fbfaf6;
  --cream: #f0ebdf;
  --mist: #eef0e9;
  --white: #ffffff;
  --line: rgba(34, 35, 31, 0.14);
  --line-dark: rgba(255, 255, 255, 0.16);
  --shadow: 0 22px 52px rgba(34, 35, 31, 0.14);
  --content: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background: var(--ivory);
  color: var(--ink);
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  line-height: 1.65;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(251, 250, 246, 0.92)),
    url("img/brand-texture.jpg") center / cover;
  opacity: 0.28;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  width: 100%;
  height: 3px;
  pointer-events: none;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 120ms linear;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--gold);
  color: var(--deep);
  font-weight: 800;
  transform: translateY(-140%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

img {
  height: auto;
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(192, 161, 107, 0.82);
  outline-offset: 4px;
}

p,
h1,
h2,
h3,
h4 {
  margin-top: 0;
}

p {
  margin-bottom: 1rem;
}

ul,
ol {
  margin-top: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(27, 29, 23, 0.96);
  border-bottom: 1px solid var(--line-dark);
  backdrop-filter: blur(14px);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(17, 19, 15, 0.98);
  border-bottom-color: rgba(192, 161, 107, 0.24);
  box-shadow: 0 16px 34px rgba(17, 19, 15, 0.18);
}

.nav-shell {
  width: min(100% - 32px, var(--content));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  transition: min-height 180ms ease;
}

.site-header.is-scrolled .nav-shell {
  min-height: 66px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand img {
  width: 230px;
  height: auto;
  transition: width 180ms ease, opacity 180ms ease;
}

.site-header.is-scrolled .brand img {
  width: 208px;
}

.nav-toggle {
  width: 42px;
  height: 42px;
  display: none;
  place-items: center;
  border: 1px solid var(--line-dark);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  width: 18px;
  height: 2px;
  display: block;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle span::before {
  transform: translateY(-7px);
}

.nav-toggle span::after {
  transform: translateY(5px);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
  font-weight: 600;
}

.nav-links a {
  position: relative;
  padding: 24px 0;
}

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

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-cta {
  flex: 0 0 auto;
  padding: 11px 16px;
  border: 1px solid rgba(192, 161, 107, 0.7);
  border-radius: 6px;
  color: var(--gold-2);
  font-size: 0.88rem;
  font-weight: 700;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--deep);
  transform: translateY(-1px);
}

.section {
  padding: 72px 0;
  scroll-margin-top: 88px;
}

.section.compact {
  padding: 46px 0;
}

.section.dark {
  background:
    linear-gradient(135deg, rgba(27, 29, 23, 0.96), rgba(47, 52, 39, 0.96)),
    var(--deep);
  color: var(--white);
}

.section.sage {
  background: var(--mist);
}

.container {
  width: min(100% - 32px, var(--content));
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--sage);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.dark .eyebrow {
  color: var(--gold-2);
}

.section-title {
  max-width: 820px;
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.25rem;
  font-weight: 500;
  line-height: 1.16;
  text-wrap: balance;
}

.section-lead {
  max-width: 760px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 1.04rem;
}

.dark .section-lead,
.dark .muted {
  color: rgba(255, 255, 255, 0.74);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(27, 29, 23, 0.98) 0%, rgba(37, 42, 31, 0.95) 48%, rgba(124, 136, 103, 0.34) 100%),
    var(--deep);
  color: var(--white);
}

.hero .container {
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.78fr);
  align-items: center;
  gap: 46px;
  padding: 42px 0 44px;
}

.hero .eyebrow {
  color: var(--sage-2);
}

.hero-copy {
  position: relative;
  z-index: 1;
  animation: hero-copy-in 620ms ease both;
}

.hero-mark {
  width: 76px;
  margin-bottom: 14px;
  opacity: 0.86;
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.75rem;
  font-weight: 500;
  line-height: 1.04;
  text-wrap: balance;
}

.hero-subtitle {
  margin-bottom: 14px;
  color: var(--gold-2);
  font-size: 1rem;
  font-weight: 700;
}

.hero-text {
  max-width: 670px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.15;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

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

.button.primary {
  background: var(--gold);
  color: var(--deep);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
}

.button.primary:hover,
.button.primary:focus-visible {
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.28);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  border-color: rgba(192, 161, 107, 0.78);
  background: rgba(255, 255, 255, 0.08);
}

.button.secondary.dark-text {
  border-color: var(--line);
  color: var(--ink);
}

.hero-photo {
  position: relative;
  align-self: stretch;
  min-height: 500px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  animation: hero-photo-in 760ms ease 120ms both;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.01);
  transition: transform 700ms ease;
}

.hero-photo:hover img {
  transform: scale(1.045);
}

.hero-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 48%, rgba(27, 29, 23, 0.58));
}

.hero-badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  max-width: 250px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(27, 29, 23, 0.78);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
}

.hero-badge strong {
  display: block;
  color: var(--white);
  font-size: 1rem;
}

.grid {
  display: grid;
  gap: 16px;
}

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

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

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

.service-card {
  position: relative;
  min-width: 0;
  min-height: 220px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(240, 235, 223, 0.72)),
    var(--white);
  box-shadow: 0 12px 30px rgba(34, 35, 31, 0.07);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

.service-card::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(135deg, rgba(192, 161, 107, 0.14), transparent 46%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.service-card::after {
  position: absolute;
  right: 18px;
  bottom: 16px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(192, 161, 107, 0.46);
  border-radius: 50%;
  color: var(--sage);
  content: "\2192";
  font-weight: 800;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 220ms ease, transform 220ms ease, border-color 220ms ease, color 220ms ease;
}

.service-card:hover,
.service-card:focus-visible {
  border-color: rgba(192, 161, 107, 0.72);
  box-shadow: 0 18px 42px rgba(34, 35, 31, 0.13);
  transform: translateY(-5px);
}

.service-card:hover::before,
.service-card:focus-visible::before,
.service-card:hover::after,
.service-card:focus-visible::after {
  opacity: 1;
}

.service-card:hover::after,
.service-card:focus-visible::after {
  border-color: rgba(192, 161, 107, 0.82);
  color: var(--deep);
  transform: translateX(0);
}

.service-card span {
  margin-bottom: 16px;
  color: var(--sage);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 1.13rem;
  line-height: 1.28;
}

.service-card p {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.93rem;
}

.service-card strong {
  color: var(--deep);
  font-size: 0.92rem;
}

.card {
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 30px rgba(34, 35, 31, 0.07);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.card:hover {
  border-color: rgba(192, 161, 107, 0.42);
  box-shadow: 0 16px 34px rgba(34, 35, 31, 0.1);
  transform: translateY(-2px);
}

.dark .card {
  border-color: var(--line-dark);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.dark .card:hover {
  border-color: rgba(231, 220, 198, 0.34);
  box-shadow: none;
}

.card h3 {
  margin-bottom: 10px;
  font-size: 1.03rem;
  line-height: 1.32;
}

.card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.dark .card p {
  color: rgba(255, 255, 255, 0.72);
}

.numbered-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
}

.numbered-card .number {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--sage);
  color: var(--white);
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: 46px;
}

.split.reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.media-frame {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.media-frame::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, transparent 58%, rgba(27, 29, 23, 0.14));
}

.media-frame img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.01);
  transition: transform 700ms ease;
}

.media-frame:hover img {
  transform: scale(1.04);
}

.quote-panel {
  padding: 26px;
  border-left: 4px solid var(--gold);
  background: var(--cream);
  color: var(--deep);
}

.credential-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.credential-item {
  padding: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.credential-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--deep);
  font-size: 0.95rem;
}

.credential-item span {
  color: var(--muted);
  font-size: 0.86rem;
}

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

.faq-item {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
}

.faq-item h3 {
  margin-bottom: 8px;
  font-size: 1rem;
  line-height: 1.35;
}

.faq-item p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.service-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.service-row {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) minmax(0, 1fr);
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.service-row h3 {
  margin-bottom: 0;
  color: var(--deep);
  font-size: 1rem;
}

.service-row p {
  margin-bottom: 0;
  color: var(--muted);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.pill-list li {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.66);
  color: var(--deep);
  font-size: 0.9rem;
  font-weight: 700;
}

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

.post-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(34, 35, 31, 0.1);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.post-card:hover {
  border-color: rgba(192, 161, 107, 0.45);
  box-shadow: 0 20px 46px rgba(34, 35, 31, 0.14);
  transform: translateY(-4px);
}

.post-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center top;
  transition: transform 700ms ease;
}

.post-card:hover img {
  transform: scale(1.035);
}

.post-card-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.post-meta {
  margin-bottom: 10px;
  color: var(--sage);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.post-card h3 {
  margin-bottom: 12px;
  font-size: 1.12rem;
  line-height: 1.35;
}

.post-card h2 {
  margin-bottom: 12px;
  font-size: 1.12rem;
  line-height: 1.35;
}

.post-card p {
  color: var(--muted);
  font-size: 0.93rem;
}

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

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

.text-link::after {
  content: "\2192";
  transition: transform 180ms ease;
}

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

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 30px;
}

.contact-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
}

.contact-list a,
.contact-list span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.84);
}

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

.site-footer {
  background: #11130f;
  color: rgba(255, 255, 255, 0.74);
}

.footer-grid {
  width: min(100% - 32px, var(--content));
  margin: 0 auto;
  padding: 46px 0 30px;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(180px, 0.5fr) minmax(220px, 0.7fr);
  gap: 38px;
}

.footer-logo {
  width: 270px;
  margin-bottom: 18px;
}

.site-footer h2,
.site-footer h3 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 1rem;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-bottom {
  width: min(100% - 32px, var(--content));
  margin: 0 auto;
  padding: 18px 0 28px;
  border-top: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.84rem;
}

.page-hero {
  background: linear-gradient(135deg, rgba(27, 29, 23, 0.98), rgba(47, 52, 39, 0.96));
  color: var(--white);
}

.page-hero .container {
  padding: 58px 0 62px;
}

.page-hero h1 {
  max-width: 880px;
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.85rem;
  font-weight: 500;
  line-height: 1.08;
}

.page-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(260px, 1fr);
  align-items: start;
  gap: 38px;
}

.article {
  min-width: 0;
}

.article-hero-image {
  width: 100%;
  max-height: 500px;
  margin: 0 0 28px;
  overflow: hidden;
  border-radius: 8px;
}

.article-hero-image img {
  width: 100%;
  height: 100%;
  max-height: 500px;
  object-fit: cover;
  object-position: center top;
}

.article h2 {
  margin: 2.1rem 0 0.8rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.22;
}

.article h3 {
  margin: 1.4rem 0 0.5rem;
  font-size: 1.08rem;
}

.article p,
.article li {
  color: #4f5149;
  font-size: 1rem;
}

.article-intro {
  margin: 0 0 2.5rem;
  padding: 1.5rem 1.75rem;
  border-left: 3px solid var(--gold);
  background: rgba(198, 164, 102, 0.08);
}

.article-intro p:first-child {
  margin-top: 0;
}

.article-intro p:last-child,
.article-callout p:last-child {
  margin-bottom: 0;
}

.article-callout {
  margin: 2rem 0 2.5rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid rgba(198, 164, 102, 0.5);
  background: rgba(198, 164, 102, 0.1);
}

.article-callout p {
  color: var(--ink);
  font-weight: 500;
}

.article ul {
  padding-left: 1.25rem;
}

.article-aside {
  position: sticky;
  top: 98px;
  display: grid;
  gap: 18px;
}

.mini-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.mini-card h2,
.mini-card h3 {
  margin-bottom: 10px;
  font-size: 1rem;
}

.mini-card p {
  color: var(--muted);
  font-size: 0.92rem;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
}

.breadcrumb a {
  color: var(--gold-2);
}

.back-link {
  margin-bottom: 24px;
}

.mt-26 {
  margin-top: 26px;
}

.mt-28 {
  margin-top: 28px;
}

.form-note {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.86rem;
}

.mobile-sticky-cta {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 40;
  min-height: 50px;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--gold);
  color: var(--deep);
  font-size: 0.94rem;
  font-weight: 900;
  box-shadow: 0 16px 36px rgba(17, 19, 15, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.mobile-sticky-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes hero-copy-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

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

@keyframes hero-photo-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

@media (max-width: 980px) {
  .nav-toggle {
    display: grid;
  }

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 74px;
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line-dark);
    border-radius: 8px;
    background: rgba(27, 29, 23, 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    visibility: hidden;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .nav-links a {
    padding: 13px 12px;
  }

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

  .nav-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .nav-open .nav-toggle span {
    background: transparent;
  }

  .nav-open .nav-toggle span::before {
    background: var(--white);
    transform: translateY(0) rotate(45deg);
  }

  .nav-open .nav-toggle span::after {
    background: var(--white);
    transform: translateY(-2px) rotate(-45deg);
  }

  .nav-cta {
    display: none;
  }

  .hero .container,
  .split,
  .split.reverse,
  .contact-band,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .hero .container {
    min-height: auto;
    gap: 36px;
  }

  .hero h1 {
    font-size: 3.15rem;
  }

  .hero-photo {
    min-height: 440px;
  }

  .grid.three,
  .grid.four,
  .blog-grid,
  .credential-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-aside {
    position: static;
  }

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

@media (max-width: 700px) {
  .brand img {
    width: 178px;
  }

  .section {
    padding: 50px 0;
  }

  .section.compact {
    padding: 34px 0;
  }

  .hero .container {
    min-height: calc(100vh - 74px);
    min-height: calc(100svh - 74px);
    padding: 64px 0 70px;
    gap: 24px;
  }

  .hero {
    background:
      linear-gradient(180deg, rgba(27, 29, 23, 0.9) 0%, rgba(27, 29, 23, 0.74) 52%, rgba(27, 29, 23, 0.94) 100%),
      url("img/hero.jpg") center 16% / cover no-repeat,
      var(--deep);
  }

  .hero-copy {
    max-width: 100%;
    text-shadow: 0 12px 36px rgba(0, 0, 0, 0.34);
  }

  .hero h1 {
    font-size: 2.26rem;
  }

  .hero-mark {
    width: 54px;
    margin-bottom: 10px;
  }

  .hero-text {
    margin-bottom: 20px;
    font-size: 0.96rem;
    line-height: 1.52;
  }

  .hero-subtitle {
    margin-bottom: 10px;
    font-size: 0.92rem;
  }

  .section-title,
  .page-hero h1 {
    font-size: 1.95rem;
  }

  .hero-photo {
    display: none;
  }

  .hero-badge {
    left: 14px;
    right: 14px;
    max-width: none;
  }

  .grid.two,
  .grid.three,
  .grid.four,
  .blog-grid,
  .faq-grid,
  .credential-strip,
  .service-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 190px;
    padding: 20px;
  }

  .split,
  .split.reverse {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .split > .media-frame {
    order: -1;
    width: calc(100% + 32px);
    margin: -50px -16px 2px;
    border-radius: 0;
    box-shadow: none;
    aspect-ratio: 16 / 10;
  }

  .media-frame img {
    min-height: 0;
    height: 100%;
    object-position: center 18%;
  }

  .article-hero-image {
    width: calc(100% + 32px);
    max-height: none;
    margin: 0 -16px 24px;
    border-radius: 0;
    aspect-ratio: 16 / 10;
  }

  .article-hero-image img {
    max-height: none;
    height: 100%;
    object-position: center 18%;
  }

  .page-hero .container {
    padding: 42px 0 48px;
  }

  .article h2 {
    font-size: 1.55rem;
  }

  .mobile-sticky-cta {
    display: flex;
  }

  body {
    padding-bottom: 72px;
  }
}

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