:root {
  --ink: #171511;
  --graphite: #2f3634;
  --muted: #746f68;
  --paper: #fffdfa;
  --ivory: #f6f1e9;
  --linen: #ece3d7;
  --sage: #73877d;
  --rose: #c7a096;
  --clay: #9b6b59;
  --champagne: #cfb36d;
  --line: rgba(23, 21, 17, 0.12);
  --line-strong: rgba(23, 21, 17, 0.22);
  --white: #ffffff;
  --shadow: 0 22px 55px rgba(23, 21, 17, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Montserrat, Avenir, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body::selection {
  color: var(--paper);
  background: var(--graphite);
}

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

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

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

figure {
  margin: 0;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Cinzel, Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.04;
}

h1 {
  max-width: 860px;
  font-size: 76px;
}

h2 {
  font-size: 46px;
}

h3 {
  font-size: 22px;
}

p {
  margin: 0;
}

.shell {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 250, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.announcement {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 7px 18px;
  color: var(--paper);
  background: var(--graphite);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}

.announcement a {
  color: var(--champagne);
  border-bottom: 1px solid currentColor;
}

.navbar {
  width: min(var(--max), calc(100% - 44px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: Cinzel, Georgia, serif;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-item {
  position: relative;
}

.nav-item > a,
.nav-cta {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
}

.nav-item > a:hover,
.nav-item > a.active {
  color: var(--ink);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: -18px;
  min-width: 236px;
  display: none;
  padding: 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.nav-dropdown a {
  display: block;
  padding: 10px 12px;
  color: var(--muted);
}

.nav-dropdown a:hover {
  color: var(--ink);
  background: var(--ivory);
}

.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown {
  display: block;
}

.nav-cta {
  padding: 0 16px;
  color: var(--paper);
  background: var(--ink);
  border-radius: var(--radius);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  color: var(--paper);
  background: var(--ink);
}

.button-secondary {
  color: var(--ink);
  border-color: var(--line-strong);
  background: transparent;
}

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

.button-outline-light {
  color: var(--paper);
  border-color: rgba(255, 253, 250, 0.36);
}

.text-link {
  display: inline-flex;
  width: fit-content;
  padding-bottom: 4px;
  color: var(--ink);
  border-bottom: 1px solid var(--champagne);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow,
.card-kicker {
  margin-bottom: 14px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-hero {
  padding: 76px 0 58px;
  background: linear-gradient(90deg, var(--paper) 0%, var(--paper) 62%, var(--ivory) 62%, var(--ivory) 100%);
}

.hero-grid,
.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.82fr);
  gap: 58px;
  align-items: center;
}

.hero-copy > p:not(.eyebrow),
.page-hero-copy > p,
.section-heading > p:not(.eyebrow),
.rich-copy > p,
.article-copy p,
.contact-grid > div > p,
.group-heading p,
.cta-layout p,
.footer-about p {
  color: var(--muted);
  font-size: 17px;
}

.hero-copy > p:not(.eyebrow),
.page-hero-copy > p {
  max-width: 660px;
  margin-top: 24px;
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 640px;
  margin-top: 42px;
}

.hero-metrics div {
  padding-top: 18px;
  border-top: 1px solid var(--line-strong);
}

.hero-metrics strong {
  display: block;
  font-family: Cinzel, Georgia, serif;
  font-size: 28px;
  line-height: 1;
}

.hero-metrics span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.hero-media,
.page-hero-media {
  position: relative;
  min-height: 600px;
}

.hero-media img,
.page-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 600px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-media figcaption {
  position: absolute;
  left: -28px;
  bottom: 30px;
  width: min(330px, 86%);
  padding: 22px;
  color: var(--paper);
  background: rgba(47, 54, 52, 0.94);
  border: 1px solid rgba(207, 179, 109, 0.38);
  border-radius: var(--radius);
}

.hero-media figcaption span {
  display: block;
  margin-bottom: 8px;
  color: var(--champagne);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-media figcaption strong {
  font-family: Cinzel, Georgia, serif;
  font-size: 22px;
  line-height: 1.2;
}

.intro-strip {
  padding: 76px 0;
  color: var(--paper);
  background: var(--graphite);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 52px;
  align-items: end;
}

.intro-grid .eyebrow,
.band-deep .eyebrow,
.cta-band .eyebrow {
  color: var(--champagne);
}

.intro-grid p:last-child {
  color: rgba(255, 253, 250, 0.78);
}

.section {
  padding: 104px 0;
}

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

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

.section-heading.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading > p:not(.eyebrow) {
  max-width: 690px;
  margin-top: 18px;
}

.path-grid,
.value-grid,
.pricing-grid,
.article-grid {
  display: grid;
  gap: 18px;
}

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

.path-card,
.value-grid article,
.price-card,
.detail-blocks article,
.steps-grid article,
.contact-cards article,
.blog-card,
.partner-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.path-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.path-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.path-card span,
.steps-grid span,
.contact-cards span {
  color: var(--clay);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.path-card h3 {
  margin-top: 12px;
}

.path-card p,
.service-card p,
.value-grid p,
.detail-blocks li,
.price-card li,
.blog-card p,
.legal-list p,
.choice-list p,
.service-summary p,
.pricing-note p {
  color: var(--muted);
}

.split-section {
  padding: 104px 0;
}

.split-grid,
.editorial-grid,
.partner-grid,
.contact-grid,
.two-column,
.service-detail-grid {
  display: grid;
  gap: 58px;
}

.split-grid {
  grid-template-columns: 0.9fr 1fr;
  align-items: center;
}

.image-pair {
  position: relative;
  min-height: 600px;
}

.image-pair img {
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-pair img:first-child {
  width: 78%;
  height: 520px;
}

.image-pair img:last-child {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 50%;
  height: 310px;
  border: 10px solid var(--paper);
}

.rich-copy {
  display: grid;
  gap: 22px;
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 16px;
  height: 2px;
  background: var(--sage);
}

.service-group + .service-group {
  margin-top: 76px;
}

.group-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.group-heading p:last-child {
  margin-top: 16px;
}

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

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

.service-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-card.featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 0.92fr 1fr;
}

.service-image img {
  width: 100%;
  height: 290px;
  object-fit: cover;
}

.service-card.featured .service-image img {
  height: 100%;
  min-height: 380px;
}

.service-body {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.service-meta,
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-meta span,
.chip-row span {
  padding: 7px 10px;
  color: var(--graphite);
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.band {
  padding: 104px 0;
}

.band-deep {
  color: var(--paper);
  background: var(--graphite);
}

.band-deep .section-heading p:not(.eyebrow),
.band-deep .steps-grid p {
  color: rgba(255, 253, 250, 0.72);
}

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

.steps-grid article {
  padding: 26px;
  background: rgba(255, 253, 250, 0.08);
  border-color: rgba(255, 253, 250, 0.16);
}

.steps-grid.light article {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
}

.steps-grid h3 {
  margin-top: 18px;
}

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

.result-grid figure {
  overflow: hidden;
  min-height: 230px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.zoom-trigger {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 230px;
  display: block;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: zoom-in;
}

.result-grid img,
.zoom-trigger img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.zoom-trigger span {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 7px 10px;
  color: var(--paper);
  background: rgba(23, 21, 17, 0.72);
  border-radius: var(--radius);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reviews-section {
  background: var(--paper);
}

.reviews-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 28px;
  align-items: stretch;
}

.review-score,
.review-cards article,
.certification-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.review-score {
  padding: 30px;
}

.review-score > strong {
  display: block;
  font-family: Cinzel, Georgia, serif;
  font-size: 72px;
  line-height: 1;
}

.review-score > span {
  color: var(--muted);
}

.review-score ul {
  display: grid;
  gap: 10px;
  padding: 24px 0 0;
  margin: 24px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.review-score li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
}

.review-score b {
  color: var(--ink);
}

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

.review-cards article {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.review-cards article div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--clay);
  font-size: 13px;
  font-weight: 800;
}

.review-cards p {
  color: var(--muted);
}

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

.certification-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 34px;
}

.certification-card p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 16px;
  color: var(--muted);
}

.no-scroll {
  overflow: hidden;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 34px;
  background: rgba(23, 21, 17, 0.9);
}

.lightbox.open {
  display: flex;
}

.lightbox figure {
  width: min(100%, 1040px);
  max-height: min(86vh, 820px);
}

.lightbox img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  background: var(--paper);
  border-radius: var(--radius);
}

.lightbox figcaption {
  margin-top: 12px;
  color: var(--paper);
  text-align: center;
  font-size: 14px;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  min-height: 42px;
  padding: 10px 14px;
  color: var(--paper);
  background: rgba(255, 253, 250, 0.12);
  border: 1px solid rgba(255, 253, 250, 0.28);
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lightbox-close {
  top: 22px;
  right: 22px;
}

.lightbox-prev {
  left: 22px;
}

.lightbox-next {
  right: 22px;
}

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

.price-card {
  padding: 26px;
}

.price-card.single {
  max-width: 520px;
}

.price-card h3 {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.price-card ul {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.price-card li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.price-card strong {
  color: var(--ink);
  white-space: nowrap;
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.cta-band {
  padding: 82px 0;
  color: var(--paper);
  background: var(--ink);
}

.cta-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}

.cta-layout p {
  max-width: 740px;
  margin-top: 16px;
  color: rgba(255, 253, 250, 0.74);
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.page-hero {
  padding: 72px 0 62px;
  background: var(--ivory);
}

.page-hero-dark {
  color: var(--paper);
  background: var(--graphite);
}

.page-hero-copy .chip-row {
  margin-top: 26px;
}

.page-hero-media {
  min-height: 480px;
}

.page-hero-media img {
  min-height: 480px;
}

.editorial-grid {
  grid-template-columns: 0.8fr 1.2fr;
  align-items: start;
}

.sticky-note {
  position: sticky;
  top: 150px;
}

.article-copy {
  display: grid;
  gap: 22px;
  max-width: 760px;
}

.gallery-grid {
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  align-items: stretch;
}

.gallery-grid img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--radius);
}

.gallery-grid img:first-child {
  height: 540px;
}

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

.value-grid article {
  padding: 26px;
}

.value-grid h3 {
  margin-bottom: 14px;
}

.partner-grid {
  grid-template-columns: 1fr 340px;
  align-items: center;
}

.partner-card {
  display: grid;
  place-items: center;
  gap: 18px;
  min-height: 220px;
  padding: 30px;
  text-align: center;
}

.partner-card img {
  width: 180px;
}

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

.choice-list article {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.choice-list h3 {
  margin-bottom: 8px;
}

.service-detail-grid {
  grid-template-columns: 0.78fr 1.22fr;
  align-items: start;
}

.service-summary {
  position: sticky;
  top: 150px;
  display: grid;
  gap: 18px;
}

.summary-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

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

.detail-blocks article {
  padding: 24px;
}

.detail-blocks article:nth-child(3) {
  grid-column: span 2;
}

.detail-blocks h3 {
  margin-bottom: 16px;
}

.detail-blocks ul,
.detail-blocks ol {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 20px;
}

.two-column {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}

.two-column .steps-grid {
  grid-template-columns: 1fr;
}

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

details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

summary {
  padding: 22px 24px;
  cursor: pointer;
  font-family: Cinzel, Georgia, serif;
  font-size: 20px;
  line-height: 1.2;
}

details p {
  padding: 0 24px 22px;
  color: var(--muted);
}

.faq-page-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: start;
}

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

.blog-card {
  overflow: hidden;
}

.blog-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.blog-card div {
  display: grid;
  gap: 14px;
  padding: 26px;
}

.blog-card h2 {
  font-size: 28px;
}

.contact-section {
  background: var(--paper);
}

.contact-grid {
  grid-template-columns: 1fr 0.76fr;
  align-items: start;
}

.contact-grid > div > p {
  max-width: 620px;
  margin-top: 18px;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.contact-cards article {
  padding: 20px;
}

.contact-cards strong {
  display: block;
  margin-top: 8px;
}

.contact-cards small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-transform: none;
}

.contact-form textarea {
  min-height: 126px;
  resize: vertical;
}

.form-note,
.pricing-note p {
  font-size: 13px;
}

.pricing-note {
  max-width: 760px;
  margin-top: 28px;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
}

.legal-list {
  display: grid;
  gap: 22px;
  max-width: 920px;
}

.legal-list article {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.legal-list h2 {
  margin-bottom: 12px;
  font-size: 30px;
}

.site-footer {
  padding: 54px 0 28px;
  color: rgba(255, 253, 250, 0.74);
  background: var(--graphite);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 58px;
  align-items: start;
}

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

.footer-about p {
  max-width: 360px;
  margin-top: 18px;
  color: rgba(255, 253, 250, 0.74);
}

.site-footer h3 {
  margin-bottom: 14px;
  color: var(--paper);
  font-size: 18px;
}

.footer-links {
  display: grid;
  gap: 10px;
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--champagne);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 253, 250, 0.16);
  font-size: 12px;
}

@media (max-width: 1120px) {
  h1 {
    font-size: 60px;
  }

  h2 {
    font-size: 38px;
  }

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

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

@media (max-width: 940px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 114px;
    left: 22px;
    right: 22px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 18px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-item > a,
  .nav-cta {
    width: 100%;
    padding: 10px 12px;
  }

  .nav-dropdown {
    position: static;
    display: grid;
    min-width: 0;
    padding: 0 0 8px 12px;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .hero-grid,
  .page-hero-grid,
  .intro-grid,
  .split-grid,
  .editorial-grid,
  .partner-grid,
  .contact-grid,
  .two-column,
  .service-detail-grid,
  .faq-page-grid,
  .cta-layout,
  .reviews-grid,
  .certification-card {
    grid-template-columns: 1fr;
  }

  .home-hero {
    background: var(--paper);
  }

  .hero-media,
  .page-hero-media {
    min-height: auto;
  }

  .hero-media img,
  .page-hero-media img {
    height: 540px;
    min-height: 540px;
  }

  .path-grid,
  .services-grid,
  .services-grid.compact,
  .value-grid,
  .article-grid,
  .review-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card.featured {
    grid-column: span 2;
  }

  .sticky-note,
  .service-summary {
    position: static;
  }

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

  .gallery-grid img,
  .gallery-grid img:first-child {
    height: 420px;
  }

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

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .shell,
  .navbar {
    width: min(100% - 28px, var(--max));
  }

  .announcement {
    flex-wrap: wrap;
    gap: 8px 12px;
    min-height: 0;
  }

  .nav-links {
    top: 118px;
    left: 14px;
    right: 14px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 20px;
  }

  .section,
  .split-section,
  .band {
    padding: 72px 0;
  }

  .home-hero,
  .page-hero {
    padding: 52px 0;
  }

  .hero-copy > p:not(.eyebrow),
  .page-hero-copy > p,
  .section-heading > p:not(.eyebrow),
  .rich-copy > p,
  .article-copy p,
  .contact-grid > div > p,
  .group-heading p,
  .cta-layout p,
  .footer-about p {
    font-size: 16px;
  }

  .hero-actions,
  .summary-actions,
  .cta-actions {
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .hero-metrics,
  .path-grid,
  .services-grid,
  .services-grid.compact,
  .value-grid,
  .pricing-grid,
  .steps-grid,
  .result-grid,
  .article-grid,
  .review-cards,
  .contact-cards,
  .detail-blocks {
    grid-template-columns: 1fr;
  }

  .hero-media img,
  .page-hero-media img {
    height: 430px;
    min-height: 430px;
  }

  .hero-media figcaption {
    position: static;
    width: 100%;
    margin-top: 12px;
  }

  .image-pair {
    min-height: auto;
  }

  .image-pair img:first-child {
    width: 100%;
    height: 420px;
  }

  .image-pair img:last-child {
    position: relative;
    width: 72%;
    height: 220px;
    margin: -72px 0 0 auto;
  }

  .service-card.featured {
    display: block;
    grid-column: auto;
  }

  .service-card.featured .service-image img,
  .service-image img {
    height: 260px;
    min-height: 260px;
  }

  .detail-blocks article:nth-child(3) {
    grid-column: auto;
  }

  .page-hero-copy .chip-row {
    margin-top: 20px;
  }

  .review-score > strong {
    font-size: 56px;
  }

  .certification-card {
    padding: 24px;
  }

  .lightbox {
    padding: 70px 14px 24px;
  }

  .lightbox-close {
    top: 14px;
    right: 14px;
  }

  .lightbox-prev,
  .lightbox-next {
    top: 14px;
  }

  .lightbox-prev {
    left: 14px;
  }

  .lightbox-next {
    right: 86px;
  }
}
