:root {
  --ink: #17312f;
  --ink-soft: #44615e;
  --pine: #1d514b;
  --pine-2: #2f6c63;
  --mint: #dbeae4;
  --mint-soft: #edf5f1;
  --ivory: #fbf8f2;
  --paper: #fffdf9;
  --sand: #e9ddce;
  --gold: #b58955;
  --rose: #d7b9ad;
  --white: #ffffff;
  --danger: #8d2c2c;
  --shadow-sm: 0 10px 30px rgba(23, 49, 47, 0.08);
  --shadow-lg: 0 24px 70px rgba(23, 49, 47, 0.16);
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 34px;
  --container: min(1180px, calc(100% - 40px));
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

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

:focus-visible {
  outline: 3px solid rgba(181, 137, 85, 0.68);
  outline-offset: 3px;
}

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

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

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

.narrow {
  width: min(780px, calc(100% - 40px));
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin: 0 0 14px;
  color: var(--pine-2);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.25;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 26px;
  height: 1px;
  content: "";
  background: currentColor;
}

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

h1,
h2,
h3,
h4 {
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.08;
  text-wrap: balance;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 7vw, 6.6rem);
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.15rem, 4.5vw, 4.2rem);
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.45rem, 2.4vw, 2.15rem);
  letter-spacing: -0.02em;
}

h4 {
  margin-bottom: 8px;
  font-size: 1.22rem;
}

.lead {
  max-width: 720px;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.7vw, 1.26rem);
}

.muted {
  color: var(--ink-soft);
}

.small {
  font-size: 0.88rem;
}

.text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--pine);
  border-bottom: 1px solid rgba(29, 81, 75, 0.3);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.5;
}

.text-link::after {
  content: "→";
  transition: transform 0.2s ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  gap: 9px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.91rem;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--pine);
  box-shadow: 0 12px 26px rgba(29, 81, 75, 0.23);
}

.button-primary:hover {
  background: #123f3a;
  box-shadow: 0 16px 34px rgba(29, 81, 75, 0.28);
}

.button-light {
  color: var(--ink);
  background: var(--white);
}

.button-outline {
  color: var(--pine);
  background: transparent;
  border-color: rgba(29, 81, 75, 0.34);
}

.button-outline:hover {
  color: var(--white);
  background: var(--pine);
  border-color: var(--pine);
}

.announcement {
  position: relative;
  z-index: 50;
  padding: 8px 20px;
  color: var(--white);
  background: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-align: center;
}

.site-header {
  position: sticky;
  z-index: 40;
  top: 0;
  height: 82px;
  background: rgba(255, 253, 249, 0.9);
  border-bottom: 1px solid rgba(23, 49, 47, 0.08);
  backdrop-filter: blur(16px);
}

.nav-shell {
  display: flex;
  width: var(--container);
  height: 100%;
  gap: 26px;
  align-items: center;
  justify-content: space-between;
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
}

.brand span {
  color: var(--gold);
}

.brand small {
  display: block;
  margin: 6px 0 0 10px;
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}

.desktop-nav > a,
.nav-dropdown > button {
  padding: 28px 0;
  color: var(--ink);
  background: none;
  border: 0;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 750;
}

.desktop-nav > a:hover,
.desktop-nav > a[aria-current="page"],
.nav-dropdown > button:hover {
  color: var(--gold);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > button::after {
  display: inline-block;
  margin-left: 6px;
  content: "⌄";
  transition: transform 0.2s ease;
}

.nav-dropdown:hover > button::after,
.nav-dropdown:focus-within > button::after {
  transform: rotate(180deg);
}

.mega-menu {
  position: absolute;
  top: calc(100% - 6px);
  left: 50%;
  display: grid;
  width: min(760px, 86vw);
  padding: 20px;
  visibility: hidden;
  background: var(--paper);
  border: 1px solid rgba(23, 49, 47, 0.09);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  grid-template-columns: repeat(3, 1fr);
  opacity: 0;
  transform: translate(-50%, 10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.nav-dropdown:hover .mega-menu,
.nav-dropdown:focus-within .mega-menu {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0);
}

.mega-menu a {
  padding: 11px 12px;
  border-radius: 10px;
  font-size: 0.84rem;
  font-weight: 700;
}

.mega-menu a:hover {
  color: var(--pine);
  background: var(--mint-soft);
}

.nav-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
  align-items: center;
}

.phone-link {
  color: var(--pine);
  font-size: 0.86rem;
  font-weight: 800;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  background: var(--mint-soft);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  z-index: 39;
  inset: 114px 0 0;
  display: none;
  overflow-y: auto;
  padding: 28px 24px 120px;
  background: var(--paper);
}

.mobile-nav.is-open {
  display: block;
}

.mobile-nav a,
.mobile-nav summary {
  display: block;
  padding: 15px 4px;
  border-bottom: 1px solid rgba(23, 49, 47, 0.1);
  cursor: pointer;
  font-weight: 750;
  list-style: none;
}

.mobile-nav details div {
  display: grid;
  padding: 6px 0 10px 18px;
}

.mobile-nav details div a {
  padding-block: 10px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.hero-slider {
  position: relative;
  min-height: min(760px, calc(100vh - 114px));
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.slides {
  position: absolute;
  inset: 0;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.slide.is-active {
  opacity: 1;
}

.slide::before,
.page-hero-image::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(11, 42, 39, 0.9) 0%, rgba(11, 42, 39, 0.65) 42%, rgba(11, 42, 39, 0.16) 78%);
}

.slide img,
.page-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide img {
  transform: scale(1.035);
  transition: transform 7s ease;
}

.slide.is-active img {
  transform: scale(1);
}

.hero-content {
  position: relative;
  z-index: 4;
  display: flex;
  min-height: min(760px, calc(100vh - 114px));
  align-items: center;
  padding-block: 80px 110px;
  pointer-events: none;
}

.hero-copy {
  max-width: 760px;
  pointer-events: auto;
}

.hero-copy h1,
.hero-copy h2 {
  color: var(--white);
}

.hero-copy h2 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 7vw, 6.6rem);
  letter-spacing: -0.045em;
}

.hero-copy .lead {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.83);
}

.hero-copy .eyebrow {
  color: #f0d4af;
}

.slider-controls {
  position: absolute;
  z-index: 5;
  right: max(20px, calc((100% - 1180px) / 2));
  bottom: 36px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.slider-arrow {
  display: grid;
  width: 46px;
  height: 46px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  cursor: pointer;
  place-items: center;
  backdrop-filter: blur(10px);
}

.slider-arrow:hover {
  background: rgba(255, 255, 255, 0.24);
}

.slider-dots {
  display: flex;
  gap: 7px;
  margin-right: 8px;
}

.slider-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  background: rgba(255, 255, 255, 0.4);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.slider-dot.is-active {
  background: var(--white);
  transform: scale(1.35);
}

.trust-bar {
  color: var(--white);
  background: var(--pine);
}

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

.trust-item {
  min-height: 105px;
  padding: 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item strong {
  display: block;
  margin-bottom: 3px;
  color: #f7dfbd;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
}

.trust-item span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
}

.section {
  padding-block: clamp(76px, 10vw, 132px);
}

.section-tight {
  padding-block: 70px;
}

.section-ivory {
  background: var(--ivory);
}

.section-mint {
  background: var(--mint-soft);
}

.section-dark {
  color: var(--white);
  background: var(--ink);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--white);
}

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

.section-heading {
  display: flex;
  gap: 36px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 46px;
}

.section-heading > div {
  max-width: 780px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.split {
  display: grid;
  gap: clamp(36px, 7vw, 90px);
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.split-top {
  align-items: start;
}

.image-frame {
  position: relative;
}

.image-frame::before {
  position: absolute;
  z-index: 0;
  right: -18px;
  bottom: -18px;
  width: 72%;
  height: 72%;
  content: "";
  background: var(--mint);
  border-radius: var(--radius-lg);
}

.image-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.image-note {
  position: absolute;
  z-index: 2;
  right: -12px;
  bottom: 30px;
  max-width: 230px;
  padding: 18px 20px;
  background: rgba(255, 253, 249, 0.95);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  font-size: 0.85rem;
}

.stats {
  display: grid;
  gap: 12px;
  margin-top: 30px;
  grid-template-columns: repeat(3, 1fr);
}

.stat {
  padding: 18px;
  background: var(--white);
  border: 1px solid rgba(23, 49, 47, 0.08);
  border-radius: var(--radius-sm);
}

.stat strong {
  display: block;
  color: var(--pine);
  font-family: var(--serif);
  font-size: 1.7rem;
  line-height: 1.1;
}

.stat span {
  color: var(--ink-soft);
  font-size: 0.78rem;
}

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

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

.card {
  position: relative;
  display: flex;
  min-height: 100%;
  overflow: hidden;
  padding: 30px;
  flex-direction: column;
  background: var(--white);
  border: 1px solid rgba(23, 49, 47, 0.09);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card:hover {
  border-color: rgba(181, 137, 85, 0.38);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.card p {
  color: var(--ink-soft);
}

.card .text-link {
  align-self: flex-start;
  margin-top: auto;
}

.card-number {
  margin-bottom: 40px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.4rem;
}

.service-card {
  min-height: 320px;
}

.service-card::after {
  position: absolute;
  right: -60px;
  bottom: -70px;
  width: 150px;
  height: 150px;
  content: "";
  background: var(--mint-soft);
  border-radius: 50%;
}

.service-card .text-link {
  position: relative;
  z-index: 2;
}

.feature-list,
.check-list,
.plain-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li,
.check-list li {
  position: relative;
  margin-bottom: 13px;
  padding-left: 30px;
}

.check-list li::before,
.feature-list li::before {
  position: absolute;
  top: 0.1em;
  left: 0;
  display: grid;
  width: 21px;
  height: 21px;
  color: var(--pine);
  content: "✓";
  background: var(--mint);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 900;
  place-items: center;
}

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

.plain-list li {
  padding-bottom: 12px;
  color: var(--ink-soft);
  border-bottom: 1px solid rgba(23, 49, 47, 0.09);
}

.concern-grid {
  display: grid;
  gap: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  grid-template-columns: repeat(3, 1fr);
}

.concern {
  min-height: 220px;
  padding: 34px;
  background: rgba(255, 255, 255, 0.04);
}

.concern h3 {
  margin-bottom: 10px;
}

.concern p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
}

.concern a {
  color: #f0d4af;
  font-size: 0.86rem;
  font-weight: 800;
}

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

.step {
  position: relative;
  padding: 28px 24px;
  background: var(--paper);
  border: 1px solid rgba(23, 49, 47, 0.09);
  border-radius: var(--radius);
  counter-increment: steps;
}

.step::before {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  color: var(--pine);
  content: "0" counter(steps);
  background: var(--mint);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 700;
  place-items: center;
}

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

.review-card {
  padding: 30px;
  background: var(--white);
  border: 1px solid rgba(23, 49, 47, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.stars {
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.12em;
}

.review-card blockquote {
  margin: 0 0 20px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.4;
}

.review-card cite {
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-style: normal;
}

.disclaimer-box {
  padding: 20px 24px;
  color: var(--ink-soft);
  background: var(--mint-soft);
  border-left: 4px solid var(--pine-2);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.88rem;
}

.cta-panel {
  position: relative;
  display: grid;
  overflow: hidden;
  padding: clamp(44px, 8vw, 90px);
  color: var(--white);
  background: var(--pine);
  border-radius: var(--radius-lg);
  grid-template-columns: 1.4fr 0.6fr;
}

.cta-panel::after {
  position: absolute;
  top: -110px;
  right: -100px;
  width: 340px;
  height: 340px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 50%;
  box-shadow: 0 0 0 50px rgba(255, 255, 255, 0.03), 0 0 0 100px rgba(255, 255, 255, 0.02);
}

.cta-panel h2 {
  color: var(--white);
}

.cta-panel p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.76);
}

.cta-panel .button-row {
  position: relative;
  z-index: 2;
  align-items: center;
  justify-content: flex-end;
}

.page-hero {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.page-hero-image {
  position: absolute;
  inset: 0;
}

.page-hero .container {
  position: relative;
  z-index: 3;
  display: flex;
  min-height: 560px;
  align-items: end;
  padding-block: 100px 80px;
}

.page-hero-copy {
  max-width: 820px;
}

.page-hero h1 {
  color: var(--white);
}

.page-hero .lead {
  color: rgba(255, 255, 255, 0.78);
}

.page-hero .eyebrow {
  color: #f0d4af;
}

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

.breadcrumb a:hover {
  color: var(--white);
}

.breadcrumb span::before {
  margin-right: 8px;
  content: "/";
}

.service-snapshot {
  display: grid;
  overflow: hidden;
  margin-top: -52px;
  background: var(--white);
  border: 1px solid rgba(23, 49, 47, 0.09);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  grid-template-columns: repeat(4, 1fr);
}

.snapshot-item {
  padding: 24px;
  border-right: 1px solid rgba(23, 49, 47, 0.09);
}

.snapshot-item:last-child {
  border-right: 0;
}

.snapshot-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--pine);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.snapshot-item span {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.content-with-aside {
  display: grid;
  gap: clamp(36px, 7vw, 90px);
  align-items: start;
  grid-template-columns: minmax(0, 1fr) 330px;
}

.sticky-card {
  position: sticky;
  top: 110px;
  padding: 28px;
  background: var(--ivory);
  border: 1px solid rgba(23, 49, 47, 0.08);
  border-radius: var(--radius);
}

.sticky-card .button {
  width: 100%;
  margin-top: 12px;
}

.prose h2 {
  margin-top: 58px;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  margin-top: 34px;
}

.prose p,
.prose li {
  color: var(--ink-soft);
}

.prose a:not(.button) {
  color: var(--pine);
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.faq-item {
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(23, 49, 47, 0.1);
  border-radius: var(--radius-sm);
}

.faq-question {
  display: flex;
  width: 100%;
  min-height: 72px;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  color: var(--ink);
  background: none;
  border: 0;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.22rem;
  line-height: 1.25;
  text-align: left;
}

.faq-question span:last-child {
  flex: 0 0 auto;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 1.3rem;
  transition: transform 0.25s ease;
}

.faq-question[aria-expanded="true"] span:last-child {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.faq-answer > div {
  overflow: hidden;
}

.faq-answer p {
  margin: 0;
  padding: 0 22px 24px;
  color: var(--ink-soft);
}

.faq-question[aria-expanded="true"] + .faq-answer {
  grid-template-rows: 1fr;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.filter-button {
  padding: 9px 16px;
  color: var(--ink-soft);
  background: var(--white);
  border: 1px solid rgba(23, 49, 47, 0.15);
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.83rem;
  font-weight: 800;
}

.filter-button.is-active {
  color: var(--white);
  background: var(--pine);
  border-color: var(--pine);
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: var(--mint-soft);
  border: 0;
  border-radius: var(--radius);
  cursor: zoom-in;
}

.gallery-item[hidden] {
  display: none;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item span {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 11px 14px;
  color: var(--white);
  background: rgba(23, 49, 47, 0.8);
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 800;
  text-align: left;
  backdrop-filter: blur(8px);
}

.lightbox {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: none;
  padding: 30px;
  align-items: center;
  justify-content: center;
  background: rgba(10, 28, 27, 0.92);
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-width: min(1000px, 92vw);
  max-height: 82vh;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 22px;
  display: grid;
  width: 46px;
  height: 46px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.6rem;
  place-items: center;
}

.form-shell {
  padding: clamp(28px, 5vw, 52px);
  background: var(--white);
  border: 1px solid rgba(23, 49, 47, 0.09);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

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

.field {
  display: grid;
  gap: 7px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label,
.field legend {
  color: var(--ink);
  font-size: 0.83rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 15px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid rgba(23, 49, 47, 0.18);
  border-radius: 11px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--pine-2);
  box-shadow: 0 0 0 4px rgba(47, 108, 99, 0.1);
  outline: none;
}

.checkbox {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--pine);
}

.form-status {
  min-height: 24px;
  margin: 12px 0 0;
  color: var(--danger);
  font-size: 0.84rem;
  font-weight: 700;
}

.contact-cards {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
}

.contact-card {
  padding: 25px;
  background: var(--white);
  border: 1px solid rgba(23, 49, 47, 0.09);
  border-radius: var(--radius);
}

.contact-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--pine);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.map-frame {
  overflow: hidden;
  min-height: 440px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.map-frame iframe {
  width: 100%;
  height: 440px;
  border: 0;
}

.article-list {
  display: grid;
  gap: 18px;
}

.article-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(23, 49, 47, 0.09);
  border-radius: var(--radius);
}

.article-card summary {
  display: grid;
  padding: 28px;
  cursor: pointer;
  grid-template-columns: 150px 1fr auto;
  gap: 24px;
  align-items: center;
  list-style: none;
}

.article-card summary::-webkit-details-marker {
  display: none;
}

.article-card time {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.article-card h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
}

.article-card summary > span:last-child {
  font-size: 1.5rem;
}

.article-body {
  padding: 0 28px 30px 202px;
  color: var(--ink-soft);
}

.policy-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 35px;
}

.policy-nav a {
  padding: 8px 13px;
  color: var(--pine);
  background: var(--mint-soft);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
}

.source-list {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.source-list a {
  display: block;
  padding: 12px 15px;
  color: var(--pine);
  background: var(--mint-soft);
  border-radius: 10px;
  font-size: 0.84rem;
  font-weight: 750;
  word-break: break-word;
}

.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background: #102b29;
}

.footer-main {
  display: grid;
  gap: 60px;
  padding-block: 80px 60px;
  grid-template-columns: 1.35fr 0.8fr 0.8fr 1fr;
}

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

.footer-brand p {
  max-width: 320px;
  margin-top: 18px;
  font-size: 0.9rem;
}

.footer-column h3 {
  margin-bottom: 18px;
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-column a {
  display: block;
  margin-bottom: 10px;
  font-size: 0.86rem;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  gap: 25px;
  align-items: center;
  justify-content: space-between;
  padding-block: 20px 90px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.75rem;
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.mobile-book-bar {
  position: fixed;
  z-index: 38;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: none;
  padding: 8px;
  background: rgba(255, 253, 249, 0.95);
  border: 1px solid rgba(23, 49, 47, 0.1);
  border-radius: 999px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(12px);
}

.mobile-book-bar .button {
  width: 100%;
}

.back-to-top {
  position: fixed;
  z-index: 35;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 46px;
  height: 46px;
  visibility: hidden;
  color: var(--white);
  background: var(--ink);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  place-items: center;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.back-to-top.is-visible {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1080px) {
  .desktop-nav,
  .phone-link {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

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

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

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

  .footer-column:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  :root {
    --container: min(100% - 30px, 1180px);
  }

  .announcement {
    padding-inline: 10px;
    font-size: 0.7rem;
  }

  .site-header {
    height: 72px;
  }

  .mobile-nav {
    inset-block-start: 104px;
  }

  .nav-shell .button {
    display: none;
  }

  .brand {
    font-size: 1.75rem;
  }

  .brand small {
    display: none;
  }

  .hero-slider,
  .hero-content {
    min-height: 690px;
  }

  .hero-content {
    align-items: end;
    padding-block: 120px 115px;
  }

  .slide::before,
  .page-hero-image::before {
    background: linear-gradient(0deg, rgba(11, 42, 39, 0.94) 0%, rgba(11, 42, 39, 0.55) 58%, rgba(11, 42, 39, 0.14) 100%);
  }

  .slider-controls {
    right: 20px;
    bottom: 24px;
  }

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

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .section-heading {
    display: block;
  }

  .section-heading .button,
  .section-heading .text-link {
    margin-top: 20px;
  }

  .split,
  .content-with-aside,
  .cta-panel {
    grid-template-columns: 1fr;
  }

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

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

  .cta-panel .button-row {
    justify-content: flex-start;
  }

  .page-hero,
  .page-hero .container {
    min-height: 500px;
  }

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

  .snapshot-item:nth-child(2) {
    border-right: 0;
  }

  .snapshot-item:nth-child(-n+2) {
    border-bottom: 1px solid rgba(23, 49, 47, 0.09);
  }

  .sticky-card {
    position: static;
  }

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

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

  .article-card summary {
    grid-template-columns: 1fr auto;
  }

  .article-card time {
    grid-column: 1 / -1;
  }

  .article-body {
    padding: 0 28px 28px;
  }

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

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

  .footer-bottom {
    display: block;
  }

  .footer-bottom-links {
    margin-top: 12px;
  }

  .mobile-book-bar {
    display: block;
  }

  .back-to-top {
    right: 16px;
    bottom: 86px;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: clamp(2.8rem, 15vw, 4.6rem);
  }

  h2 {
    font-size: clamp(2.1rem, 11vw, 3.2rem);
  }

  .hero-copy h2 {
    font-size: clamp(2.8rem, 15vw, 4.6rem);
  }

  .hero-copy .button {
    width: 100%;
  }

  .slider-dots {
    display: none;
  }

  .trust-item {
    min-height: 92px;
    padding: 17px 14px;
  }

  .trust-item strong {
    font-size: 1.15rem;
  }

  .section {
    padding-block: 74px;
  }

  .cards,
  .cards-4,
  .review-grid,
  .steps,
  .concern-grid,
  .stats,
  .gallery-grid,
  .form-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .concern {
    min-height: auto;
  }

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

  .snapshot-item {
    border-right: 0;
    border-bottom: 1px solid rgba(23, 49, 47, 0.09);
  }

  .snapshot-item:last-child {
    border-bottom: 0;
  }

  .image-note {
    position: relative;
    right: auto;
    bottom: auto;
    max-width: none;
    margin: -35px 16px 0;
  }

  .form-shell {
    padding: 25px 18px;
  }

  .article-card summary {
    padding: 22px;
  }

  .article-body {
    padding: 0 22px 24px;
  }

  .footer-column:last-child {
    grid-column: auto;
  }
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .announcement,
  .site-header,
  .mobile-book-bar,
  .back-to-top,
  .site-footer {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }
}
