:root {
  --ink: #171915;
  --ink-soft: #262923;
  --paper: #f4f0e8;
  --cream: #fffaf1;
  --line: rgba(23, 25, 21, 0.14);
  --muted: #6c7066;
  --orange: #f28a15;
  --orange-dark: #d66f00;
  --green: #33463b;
  --radius: 28px;
  --shadow: 0 28px 70px rgba(20, 23, 18, 0.15);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  color: white;
  background: var(--orange-dark);
}

button,
input,
textarea {
  font: inherit;
}

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

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

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

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 14px;
  color: white;
  background: var(--ink);
  transform: translateY(-160%);
}

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

.site-header {
  position: fixed;
  inset: 18px 24px auto;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  max-width: 1280px;
  margin: auto;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  color: white;
  background: rgba(20, 22, 19, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
  transition: transform 0.35s ease, background 0.35s ease;
}

.site-header.scrolled {
  background: rgba(20, 22, 19, 0.76);
}

.brand {
  display: grid;
  width: 230px;
  height: 60px;
  padding: 5px 9px;
  border-radius: 12px;
  place-items: center;
  background: rgba(255, 255, 255, 0.96);
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-header nav {
  display: flex;
  gap: 5px;
  align-items: center;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.05);
}

.site-header nav a {
  display: grid;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 9px;
  place-items: center;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
  font-weight: 650;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-label-short {
  display: none;
}

.site-header nav a:hover,
.site-header nav a:focus-visible,
.site-header nav a[aria-current="page"] {
  color: white;
  background: rgba(255, 255, 255, 0.12);
}

.site-header > .button {
  justify-self: end;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 14px;
  cursor: pointer;
  font-weight: 760;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

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

.button-small {
  min-height: 44px;
  padding: 0 17px;
  border-radius: 12px;
  font-size: 0.88rem;
}

.button-primary {
  color: #181b16;
  background: var(--orange);
  box-shadow: 0 10px 30px rgba(242, 138, 21, 0.23);
}

.button-primary:hover {
  background: #ff9a24;
  box-shadow: 0 14px 34px rgba(242, 138, 21, 0.3);
}

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

.button-full {
  width: 100%;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(370px, 0.72fr);
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
  min-height: 820px;
  padding: 150px max(6vw, 32px) 90px;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 76% 42%, rgba(75, 92, 77, 0.5), transparent 34%),
    linear-gradient(125deg, #11130f 0%, #242920 60%, #151713 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  opacity: 0.12;
  background-image: linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to right, transparent, black 30%, transparent);
}

.hero-glow {
  position: absolute;
  right: -9vw;
  bottom: -25vw;
  z-index: -1;
  width: 58vw;
  height: 58vw;
  border-radius: 50%;
  background: rgba(242, 138, 21, 0.1);
  filter: blur(20px);
}

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

.eyebrow {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.63);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 28px;
  height: 2px;
  background: var(--orange);
}

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

.hero h1,
.section-heading h2,
.pricing-heading h2,
.case-copy h2,
.reviews-heading h2,
.guide-intro h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(3.6rem, 7.5vw, 7.4rem);
}

.hero h1 em {
  color: var(--orange);
  font-weight: 500;
}

.hero-lead {
  max-width: 650px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.73);
  font-size: clamp(1.08rem, 1.6vw, 1.35rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  gap: 26px;
  align-items: center;
  margin-top: 40px;
}

.text-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
}

.proof-list {
  display: flex;
  gap: 0;
  margin: 54px 0 0;
  padding: 0;
  list-style: none;
}

.proof-list li {
  display: flex;
  flex-direction: column;
  min-width: 150px;
  padding: 0 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.proof-list li:first-child {
  padding-left: 0;
  border-left: 0;
}

.proof-list strong {
  font-size: 1.05rem;
}

.proof-list span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.84rem;
}

.hero-visual {
  position: relative;
  isolation: isolate;
  width: min(100%, 470px);
  justify-self: center;
}

.hero-poster {
  width: min(100%, 440px);
}

.hero-visual.hero-poster::before {
  display: none;
}

.hero-poster img {
  display: block;
  width: 100%;
  max-height: 760px;
  object-fit: contain;
}

.hero-visual::before {
  position: absolute;
  inset: 20px -18px -16px 18px;
  z-index: -1;
  border: 1px solid rgba(242, 138, 21, 0.5);
  border-radius: 44px 170px 44px 44px;
  content: "";
  background: rgba(242, 138, 21, 0.1);
  transform: rotate(2.5deg);
}

.portrait-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 44px 160px 38px 38px;
  box-shadow: var(--shadow);
  background: #9eb7cd;
}

.portrait-card > img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center 50%;
}

.portrait-caption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  display: flex;
  gap: 13px;
  align-items: center;
  padding: 17px 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 17px;
  background: rgba(21, 23, 19, 0.82);
  backdrop-filter: blur(12px);
}

.portrait-caption p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.85rem;
  line-height: 1.45;
}

.portrait-caption strong {
  color: white;
  font-size: 0.94rem;
}

.status-dot {
  flex: 0 0 auto;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #7dce82;
  box-shadow: 0 0 0 7px rgba(125, 206, 130, 0.12);
}

.floating-note {
  position: absolute;
  top: auto;
  bottom: 24%;
  left: -16%;
  display: flex;
  gap: 12px;
  align-items: center;
  width: 220px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(42, 48, 39, 0.9);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.25);
  font-size: 0.8rem;
  line-height: 1.4;
  backdrop-filter: blur(12px);
}

.floating-note svg {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  padding: 7px;
  border-radius: 50%;
  stroke: var(--ink);
  stroke-width: 2;
  fill: none;
  background: var(--orange);
}

.floating-note strong {
  color: white;
}

.journey-proof {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(480px, 1.14fr);
  gap: clamp(50px, 7vw, 105px);
  align-items: center;
  padding: 120px max(6vw, 32px);
  background: var(--cream);
}

.journey-copy {
  max-width: 680px;
}

.journey-trust-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 44px;
}

.journey-rating,
.journey-trust-row > p {
  min-height: 105px;
  margin: 0;
  padding: 17px 18px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: white;
}

.journey-rating {
  display: grid;
  align-content: center;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.journey-rating:hover {
  border-color: var(--orange);
  transform: translateY(-2px);
}

.journey-rating span {
  color: var(--orange);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}

.journey-rating strong,
.journey-trust-row > p strong {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-size: 1.02rem;
}

.journey-rating small,
.journey-trust-row > p span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.4;
}

.journey-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 5.7vw, 6rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.journey-lead {
  max-width: 610px;
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.journey-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
}

.journey-steps li {
  min-height: 150px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.62);
}

.journey-steps li > span {
  display: block;
  margin-bottom: 22px;
  color: var(--orange-dark);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.journey-steps strong,
.journey-steps small {
  display: block;
}

.journey-steps strong {
  margin-bottom: 6px;
  font-size: 0.9rem;
}

.journey-steps small {
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.45;
}

.journey-actions {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-top: 32px;
}

.journey-case {
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.journey-case .before-after {
  aspect-ratio: 4 / 3;
}

.journey-case figcaption {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 23px;
  color: white;
}

.journey-case figcaption span {
  color: rgba(255, 255, 255, 0.56);
  text-align: right;
}

.work-section {
  padding: 120px max(6vw, 32px);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.6fr;
  gap: 80px;
  align-items: end;
  max-width: 1240px;
  margin: 0 auto 52px;
}

.section-heading h2,
.case-copy h2,
.guide-intro h2 {
  font-size: clamp(2.8rem, 5vw, 5.4rem);
}

.section-heading > p {
  max-width: 460px;
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 1240px;
  margin: auto;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 380px;
  padding: 25px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.42);
  transition: color 0.3s ease, transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover,
.service-card.featured {
  color: white;
  background: var(--ink-soft);
  box-shadow: 0 22px 48px rgba(26, 29, 24, 0.14);
  transform: translateY(-7px);
}

.service-number {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.service-card:hover .service-number,
.service-card.featured .service-number {
  color: rgba(255, 255, 255, 0.5);
}

.service-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin: 52px 0 28px;
  border-radius: 18px;
  place-items: center;
  color: var(--orange-dark);
  background: rgba(242, 138, 21, 0.12);
}

.service-icon svg {
  width: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card:hover .service-icon,
.service-card.featured .service-icon {
  color: var(--ink);
  background: var(--orange);
}

.service-card h3 {
  margin: 0 0 11px;
  font-size: 1.34rem;
}

.service-card p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 0.91rem;
}

.service-card:hover p,
.service-card.featured p {
  color: rgba(255, 255, 255, 0.62);
}

.service-card button {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: auto;
  padding: 14px 0 0;
  border: 0;
  border-top: 1px solid var(--line);
  cursor: pointer;
  color: inherit;
  background: none;
  font-size: 0.85rem;
  font-weight: 800;
  text-align: left;
}

.service-card:hover button,
.service-card.featured button {
  border-color: rgba(255, 255, 255, 0.15);
}

.service-read-more {
  display: flex;
  justify-content: space-between;
  margin-top: 11px;
  padding-top: 11px;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 800;
}

.service-card:hover .service-read-more,
.service-card.featured .service-read-more {
  color: #ffab4d;
}

.service-deep-dive {
  max-width: 1240px;
  margin: 30px auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 24px 65px rgba(20, 23, 18, 0.08);
}

.service-deep-dive summary {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  min-height: 90px;
  padding: 20px clamp(24px, 4vw, 45px);
  cursor: pointer;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  font-weight: 600;
  list-style: none;
}

.service-deep-dive summary::-webkit-details-marker {
  display: none;
}

.service-deep-dive summary > span:first-child {
  display: flex;
  flex-direction: column;
}

.service-deep-dive summary small {
  margin-bottom: 3px;
  color: var(--orange-dark);
  font-family: Inter, ui-sans-serif, sans-serif;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.summary-toggle {
  display: grid;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  place-items: center;
  color: var(--ink);
  background: var(--orange);
  font-family: Inter, ui-sans-serif, sans-serif;
  font-size: 1.65rem;
  font-weight: 400;
  transition: transform 0.25s ease;
}

.service-deep-dive[open] summary {
  border-bottom: 1px solid var(--line);
}

.service-deep-dive[open] .summary-toggle {
  transform: rotate(45deg);
}

.deep-dive-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.85fr);
  gap: clamp(35px, 5vw, 70px);
  align-items: start;
  padding: clamp(30px, 5vw, 64px);
}

.deep-dive-copy h3 {
  max-width: 760px;
  margin: 0 0 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 4.5vw, 4.6rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.deep-dive-copy > p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 1rem;
}

.deep-dive-copy h4 {
  margin: 38px 0 10px;
  font-size: 1.2rem;
}

.cleaning-process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin: 34px 0;
}

.cleaning-process article {
  min-height: 190px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--cream);
}

.cleaning-process article > span {
  display: block;
  margin-bottom: 25px;
  color: var(--orange-dark);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.cleaning-process strong {
  display: block;
  line-height: 1.25;
}

.cleaning-process p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.deep-dive-actions {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-top: 32px;
}

.phone-links-inline {
  display: grid;
  gap: 7px;
}

.text-link-dark {
  color: var(--ink);
}

.service-video {
  position: sticky;
  top: 132px;
  margin: 0;
}

.video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 8px solid var(--ink-soft);
  border-radius: 22px;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.service-video figcaption {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.78rem;
}

.service-video figcaption span {
  color: var(--orange);
  font-size: 0.6rem;
}

.pricing-block {
  max-width: 1240px;
  margin: 140px auto 0;
}

.pricing-heading {
  display: grid;
  grid-template-columns: 1.15fr 0.65fr;
  gap: clamp(35px, 7vw, 90px);
  align-items: end;
  margin-bottom: 42px;
}

.pricing-heading h2,
.reviews-heading h2 {
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 5.4rem);
}

.pricing-heading > p {
  max-width: 460px;
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.calculator {
  overflow: hidden;
  padding: 12px;
  border-radius: var(--radius);
  color: white;
  background: var(--ink-soft);
  box-shadow: var(--shadow);
}

.package-tabs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 7px;
  padding: 2px 2px 12px;
}

.package-tabs button {
  min-height: 50px;
  padding: 10px 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 13px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.62);
  background: transparent;
  font-weight: 760;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.package-tabs button:hover,
.package-tabs button.active {
  border-color: var(--orange);
  color: var(--ink);
  background: var(--orange);
}

.package-tabs button:focus-visible,
.area-range:focus-visible,
.addon-toggle input:focus-visible + .toggle-control {
  outline: 3px solid white;
  outline-offset: 3px;
}

.calculator-body {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 12px;
}

.package-details,
.calculator-controls {
  padding: clamp(28px, 4vw, 48px);
}

.package-details {
  display: flex;
  flex-direction: column;
}

.calculator-kicker {
  margin: 0 0 8px;
  color: var(--orange);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.package-details h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 500;
  line-height: 1;
}

.package-details > p:not(.calculator-kicker) {
  max-width: 500px;
  margin: 18px 0 26px;
  color: rgba(255, 255, 255, 0.62);
}

.package-details ul {
  display: grid;
  gap: 10px;
  margin: 0 0 34px;
  padding: 0;
  list-style: none;
}

.package-details li {
  position: relative;
  padding-left: 27px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.91rem;
}

.package-details li::before {
  position: absolute;
  top: 1px;
  left: 0;
  color: var(--orange);
  content: "✓";
  font-weight: 900;
}

.addon-toggle {
  position: relative;
  display: flex;
  gap: 13px;
  align-items: center;
  margin-top: auto;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.04);
}

.addon-toggle input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.toggle-control {
  position: relative;
  flex: 0 0 auto;
  width: 46px;
  height: 26px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.18);
  transition: background 0.2s ease;
}

.toggle-control::after {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  content: "";
  background: white;
  transition: transform 0.2s ease;
}

.addon-toggle input:checked + .toggle-control {
  background: var(--orange);
}

.addon-toggle input:checked + .toggle-control::after {
  transform: translateX(20px);
}

.addon-toggle strong,
.addon-toggle small {
  display: block;
}

.addon-toggle strong {
  font-size: 0.88rem;
}

.addon-toggle small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.5);
}

.calculator-controls {
  border-radius: 21px;
  color: var(--ink);
  background: var(--cream);
}

.area-line {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  align-items: end;
}

.area-line label {
  font-weight: 780;
}

.area-line output {
  color: var(--orange-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1;
}

.area-range {
  --range-progress: 23.08%;
  width: 100%;
  height: 8px;
  margin: 38px 0 12px;
  appearance: none;
  border-radius: 99px;
  cursor: pointer;
  background: linear-gradient(to right, var(--orange) 0%, var(--orange) var(--range-progress), #ded8cd var(--range-progress), #ded8cd 100%);
}

.area-range::-webkit-slider-thumb {
  width: 24px;
  height: 24px;
  appearance: none;
  border: 5px solid white;
  border-radius: 50%;
  background: var(--orange-dark);
  box-shadow: 0 2px 10px rgba(23, 25, 21, 0.26);
}

.area-range::-moz-range-thumb {
  width: 15px;
  height: 15px;
  border: 5px solid white;
  border-radius: 50%;
  background: var(--orange-dark);
  box-shadow: 0 2px 10px rgba(23, 25, 21, 0.26);
}

.range-labels {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.72rem;
}

.area-help,
.price-note {
  color: var(--muted);
  font-size: 0.82rem;
}

.area-help {
  margin: 24px 0 30px;
}

.price-result {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
}

.price-result > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 88px;
  padding: 12px 16px;
}

.price-result span {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 750;
  text-transform: uppercase;
}

.price-result strong {
  margin-top: 5px;
  font-size: clamp(1.15rem, 2vw, 1.6rem);
}

.price-result .price-total {
  border-radius: 13px;
  color: white;
  background: var(--ink);
}

.price-total span {
  color: rgba(255, 255, 255, 0.5);
}

.price-total strong {
  color: var(--orange);
  font-size: clamp(1.55rem, 3vw, 2.35rem);
}

.price-note {
  margin: 16px 4px 20px;
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
  transform: none;
}

.cases-block {
  display: grid;
  grid-template-columns: 0.52fr minmax(0, 1fr);
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
  max-width: 1240px;
  margin: 140px auto 10px;
}

.case-copy > p:not(.eyebrow) {
  max-width: 430px;
  color: var(--muted);
}

.case-controls {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 32px;
}

.case-control-hint {
  display: flex;
  gap: 9px;
  align-items: center;
  margin: 28px 0 -16px;
  color: var(--ink) !important;
  font-size: 0.86rem !important;
  font-weight: 800;
}

.case-control-hint span {
  color: var(--orange);
  font-size: 0.72rem;
}

.case-controls button {
  width: 56px;
  height: 56px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  cursor: pointer;
  color: white;
  background: var(--ink);
  font-size: 1.2rem;
  font-weight: 850;
  transition: color 0.2s ease, background 0.2s ease;
}

.case-controls button:hover {
  border-color: var(--orange);
  color: var(--ink);
  background: var(--orange);
}

.case-controls span {
  min-width: 68px;
  padding: 10px 13px;
  border: 2px solid var(--ink);
  border-radius: 99px;
  color: var(--ink);
  background: white;
  font-size: 0.95rem;
  font-weight: 750;
  text-align: center;
}

.case-viewport {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.case-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.22, 0.8, 0.24, 1);
}

.case-slide {
  position: relative;
  flex: 0 0 100%;
  margin: 0;
  background: var(--ink);
}

.before-after {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #30352e;
  touch-action: pan-y;
}

.case-static-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #30352e;
}

.case-static-frame::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  content: "";
  pointer-events: none;
}

.case-static-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.before-after:focus-within {
  box-shadow: inset 0 0 0 3px var(--orange);
}

.compare-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
}

.compare-composite {
  width: 200%;
  max-width: none;
}

.compare-composite-before {
  left: 0;
}

.compare-composite-after {
  left: -100%;
}

.compare-before {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  clip-path: inset(0 calc(100% - var(--reveal)) 0 0);
}

.compare-label {
  position: absolute;
  top: 18px;
  z-index: 3;
  display: grid;
  min-width: 64px;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  place-items: center;
  color: white;
  background: rgba(18, 20, 17, 0.68);
  backdrop-filter: blur(12px);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  pointer-events: none;
}

.compare-label-before {
  left: 18px;
}

.compare-label-after {
  right: 18px;
  color: var(--ink);
  background: rgba(242, 138, 21, 0.92);
  border-color: rgba(255, 255, 255, 0.4);
}

.compare-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--reveal);
  z-index: 2;
  width: 2px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.36);
  transform: translateX(-50%);
  pointer-events: none;
}

.compare-divider i {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 58px;
  height: 58px;
  border: 3px solid white;
  border-radius: 50%;
  place-items: center;
  color: var(--ink);
  background: var(--orange);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.38);
  font-size: 1.32rem;
  font-style: normal;
  font-weight: 900;
  transform: translate(-50%, -50%);
}

.compare-range {
  position: absolute;
  inset: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: ew-resize;
  opacity: 0;
}

.case-slide figcaption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 70px;
  padding: 17px 20px;
  color: white;
  background: var(--ink);
}

.case-slide figcaption span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
}

.reviews-block {
  max-width: 1240px;
  margin: 140px auto 10px;
}

.reviews-heading {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: end;
  margin-bottom: 44px;
}

.trust-score {
  display: flex;
  flex-direction: column;
  min-width: 245px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.45);
  transition: transform 0.2s ease, background 0.2s ease;
}

.trust-score:hover {
  background: white;
  transform: translateY(-3px);
}

.trust-stars,
.review-stars {
  color: #00b67a;
  letter-spacing: 0.06em;
}

.trust-score strong {
  margin-top: 4px;
  font-size: 1.2rem;
}

.trust-score small {
  color: var(--muted);
}

.review-marquee {
  overflow: hidden;
  padding: 14px 0;
  mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
}

.review-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: review-scroll 68s linear infinite;
  will-change: transform;
}

.review-marquee:hover .review-track,
.review-marquee:focus-within .review-track,
.review-marquee:active .review-track {
  animation-play-state: paused;
}

.review-set {
  display: flex;
  gap: 12px;
}

.review-card {
  display: flex;
  flex: 0 0 clamp(300px, 31vw, 390px);
  flex-direction: column;
  min-height: 255px;
  padding: clamp(25px, 3vw, 36px);
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.45);
}

.review-card:nth-child(3n + 2) {
  color: white;
  background: var(--ink-soft);
}

.review-card blockquote {
  margin: 30px 0 38px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 500;
  line-height: 1.4;
}

.review-meta {
  display: flex;
  flex-direction: column;
  margin-top: auto;
}

.review-meta span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.76rem;
}

.review-card:nth-child(3n + 2) .review-meta span {
  color: rgba(255, 255, 255, 0.5);
}

@keyframes review-scroll {
  to {
    transform: translateX(calc(-50% - 6px));
  }
}

.guide-section {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: clamp(40px, 7vw, 110px);
  align-items: start;
  padding: 120px max(6vw, 32px) 80px;
  color: white;
  background:
    radial-gradient(circle at 15% 75%, rgba(75, 98, 76, 0.34), transparent 30%),
    var(--ink);
}

.guide-intro {
  position: sticky;
  top: 130px;
  max-width: 560px;
}

.guide-intro > p:not(.eyebrow) {
  max-width: 470px;
  margin: 25px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.06rem;
}

.guide-intro blockquote {
  margin: 64px 0 0;
  padding: 24px 0 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 3px solid var(--orange);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
  font-style: italic;
}

.guide-intro cite {
  display: block;
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.48);
  font-family: Inter, ui-sans-serif, sans-serif;
  font-size: 0.8rem;
  font-style: normal;
}

.guide-card {
  min-height: 620px;
  padding: clamp(26px, 4vw, 50px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--cream);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.3);
}

.guide-progress {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 42px;
}

.guide-progress span {
  height: 4px;
  border-radius: 99px;
  background: #ded8cd;
  transition: background 0.25s ease;
}

.guide-progress span.active {
  background: var(--orange);
}

.guide-step {
  display: none;
}

.guide-step.active {
  display: block;
  animation: step-in 0.35s ease both;
}

@keyframes step-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.step-count {
  margin: 0 0 9px;
  color: var(--orange-dark);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.guide-step h3 {
  margin: 0 0 32px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.5vw, 3.1rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.option-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
}

.option-wide {
  grid-column: 1 / -1;
}

.option {
  min-height: 132px;
  padding: 21px;
  border: 1px solid var(--line);
  border-radius: 17px;
  cursor: pointer;
  color: var(--ink);
  background: white;
  text-align: left;
  transition: border 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.option:hover,
.option:focus-visible {
  border-color: var(--orange);
  outline: none;
  box-shadow: 0 10px 30px rgba(40, 42, 35, 0.08);
  transform: translateY(-3px);
}

.option span {
  display: block;
  margin-bottom: 7px;
  font-weight: 800;
}

.option small {
  display: block;
  color: var(--muted);
  line-height: 1.4;
}

.back-link {
  margin: 0 0 24px;
  padding: 0;
  border: 0;
  cursor: pointer;
  color: var(--muted);
  background: none;
  font-size: 0.85rem;
  font-weight: 700;
}

.result-icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 19px;
  border-radius: 50%;
  place-items: center;
  color: white;
  background: var(--green);
  font-size: 1.3rem;
  font-weight: 800;
}

.result-step > p:not(.step-count) {
  max-width: 570px;
  margin: -16px 0 28px;
  color: var(--muted);
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
  margin-top: 27px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  font-size: 0.78rem;
  font-weight: 800;
}

.contact-form-wide,
.contact-form-message {
  grid-column: 1 / -1;
}

.contact-form label small {
  color: var(--muted);
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 11px;
  outline: none;
  color: var(--ink);
  background: white;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(242, 138, 21, 0.12);
}

.contact-form .button,
.form-note,
.form-status,
.form-success {
  grid-column: 1 / -1;
}

.contact-form .button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-honey {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.form-note {
  margin: -3px 0 0 !important;
  color: var(--muted) !important;
  font-size: 0.72rem !important;
  text-align: center;
}

.form-status {
  min-height: 1.3em;
  margin: -4px 0 0 !important;
  color: var(--muted) !important;
  font-size: 0.78rem !important;
  text-align: center;
}

.form-status:empty {
  min-height: 0;
}

.form-status.is-error {
  color: #9a2f23 !important;
}

.contact-form[data-sent="true"] > :not(.form-success) {
  display: none;
}

.form-success {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px;
  border: 1px solid rgba(32, 75, 55, 0.22);
  border-radius: 15px;
  outline: none;
  background: rgba(32, 75, 55, 0.08);
}

.form-success[hidden] {
  display: none;
}

.form-success > span {
  display: grid;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--green);
  font-size: 1.15rem;
  font-weight: 900;
}

.form-success strong,
.form-success p {
  display: block;
  margin: 0;
}

.form-success p {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.84rem;
}

.direct-contact {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.direct-contact > p {
  color: rgba(255, 255, 255, 0.55);
}

.direct-contact > div {
  display: flex;
  gap: 60px;
}

.direct-contact a {
  display: flex;
  flex-direction: column;
}

.direct-contact span {
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.direct-contact strong {
  font-size: 1.02rem;
}

.deduction-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
  gap: clamp(50px, 8vw, 120px);
  align-items: center;
  padding: clamp(90px, 10vw, 145px) max(6vw, 32px);
  overflow: hidden;
  background:
    radial-gradient(circle at 83% 18%, rgba(242, 138, 21, 0.12), transparent 28%),
    var(--cream);
}

.subpage .deduction-section {
  min-height: 100vh;
  padding-top: clamp(150px, 12vw, 190px);
}

.deduction-copy {
  max-width: 760px;
}

.deduction-copy h1,
.deduction-copy h2 {
  max-width: 680px;
  margin: 18px 0 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.3rem, 6vw, 6.4rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.deduction-lead {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
}

.deduction-facts {
  display: grid;
  gap: 0;
  max-width: 700px;
  margin-top: 42px;
  border-top: 1px solid var(--line);
}

.deduction-facts article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  align-items: start;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.deduction-facts article > span {
  display: grid;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  place-items: center;
  color: var(--orange-dark);
  background: rgba(242, 138, 21, 0.12);
  font-size: 0.7rem;
  font-weight: 900;
}

.deduction-facts strong {
  display: block;
  font-size: 1rem;
}

.deduction-facts p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.deduction-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  margin-top: 34px;
}

.button-guide {
  color: white;
  background: var(--green);
  box-shadow: 0 10px 30px rgba(51, 70, 59, 0.2);
}

.button-guide:hover {
  background: #26382e;
  box-shadow: 0 14px 34px rgba(51, 70, 59, 0.28);
}

.deduction-source {
  border-bottom: 1px solid currentColor;
  color: var(--green);
  font-size: 0.85rem;
  font-weight: 800;
}

.deduction-disclaimer {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.deduction-visual {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 650px;
  padding: clamp(30px, 4vw, 55px);
  border-radius: 42px 140px 42px 42px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  color: white;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.08), transparent 45%),
    var(--green);
  box-shadow: var(--shadow);
}

.deduction-visual::before {
  position: absolute;
  inset: 22px;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 29px 118px 29px 29px;
  content: "";
}

.deduction-receipt {
  position: absolute;
  top: 50px;
  left: clamp(38px, 5vw, 70px);
  width: 118px;
  height: 138px;
  fill: rgba(255, 255, 255, 0.06);
  stroke: var(--orange);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}

.deduction-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.deduction-orbit-one {
  top: -120px;
  right: -130px;
  width: 390px;
  height: 390px;
  background: rgba(242, 138, 21, 0.17);
}

.deduction-orbit-two {
  top: 90px;
  right: -80px;
  width: 270px;
  height: 270px;
}

.deduction-rate {
  position: relative;
  z-index: 1;
}

.deduction-rate span,
.deduction-example > span {
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.deduction-rate strong {
  display: block;
  margin: 5px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.5rem, 8vw, 7.8rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.deduction-rate p {
  max-width: 260px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
}

.deduction-example {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.deduction-example p {
  max-width: 340px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.deduction-example strong {
  color: white;
}

.reporting-section {
  padding: clamp(90px, 10vw, 140px) max(6vw, 32px);
  background: var(--paper);
}

.reporting-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.55fr);
  gap: clamp(40px, 8vw, 120px);
  align-items: end;
  max-width: 1240px;
  margin: 0 auto 56px;
}

.reporting-heading h2 {
  max-width: 760px;
  margin: 18px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 5.8vw, 5.8rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.reporting-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.reporting-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.reporting-steps li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  min-height: 215px;
  padding: clamp(27px, 3vw, 40px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.52);
}

.reporting-steps li:nth-child(3) {
  color: white;
  background: var(--green);
}

.reporting-number {
  display: grid;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  place-items: center;
  color: var(--orange-dark);
  background: rgba(242, 138, 21, 0.14);
  font-size: 0.78rem;
  font-weight: 900;
}

.reporting-steps li:nth-child(3) .reporting-number {
  color: var(--ink);
  background: var(--orange);
}

.reporting-steps h3 {
  margin: 4px 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.3vw, 2rem);
  font-weight: 500;
  line-height: 1.1;
}

.reporting-steps p {
  max-width: 470px;
  margin: 0;
  color: var(--muted);
}

.reporting-steps li:nth-child(3) p {
  color: rgba(255, 255, 255, 0.7);
}

.reporting-callout {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: center;
  max-width: 1240px;
  margin: 18px auto 0;
  padding: 28px 30px;
  border-radius: 22px;
  color: white;
  background: var(--ink);
}

.reporting-callout span {
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.reporting-callout p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.65);
}

.reporting-note {
  max-width: 1240px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 0.76rem;
}

footer {
  display: grid;
  grid-template-columns: auto minmax(190px, 1fr) auto auto auto;
  gap: 34px;
  align-items: center;
  padding: 32px max(6vw, 32px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  background: #10120f;
  font-size: 0.75rem;
}

footer img {
  width: 92px;
  filter: invert(1);
}

footer p {
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 14px;
  align-items: center;
}

.footer-legal a,
.footer-legal button {
  border: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.65);
  background: transparent;
  font: inherit;
  text-decoration: none;
  cursor: pointer;
}

.footer-legal a:hover,
.footer-legal button:hover,
.footer-legal a:focus-visible,
.footer-legal button:focus-visible {
  color: var(--orange);
}

.mobile-contact {
  display: none;
}

/* About page */
.about-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.72fr);
  gap: clamp(48px, 7vw, 110px);
  align-items: center;
  min-height: 810px;
  padding: 155px max(6vw, 28px) 90px;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 145, 0, 0.16), transparent 31%),
    linear-gradient(135deg, #181a17 0%, #20231e 55%, #11130f 100%);
}

.about-hero::after {
  position: absolute;
  right: -90px;
  bottom: -170px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(255, 145, 0, 0.28);
  border-radius: 50%;
  content: "";
}

.about-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.about-hero h1 {
  max-width: 900px;
  margin: 24px 0 30px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.2rem, 7.6vw, 8rem);
  font-weight: 760;
  letter-spacing: -0.065em;
  line-height: 0.87;
}

.about-hero h1 em {
  color: var(--orange);
  font-weight: 430;
}

.about-hero-copy > p:not(.eyebrow) {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  line-height: 1.8;
}

.about-hero-copy .about-hero-lead {
  margin-bottom: 10px;
  color: white;
  font-size: clamp(1.18rem, 2vw, 1.48rem);
  line-height: 1.55;
}

.about-hero-actions {
  display: flex;
  gap: 28px;
  align-items: center;
  margin-top: 36px;
}

.about-portrait {
  position: relative;
  z-index: 1;
  margin: 0;
}

.about-portrait::before {
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 1px solid rgba(255, 145, 0, 0.55);
  border-radius: 36px 140px 36px 36px;
  content: "";
}

.about-portrait > img {
  position: relative;
  display: block;
  width: 100%;
  height: min(640px, 69vh);
  border-radius: 36px 140px 36px 36px;
  object-fit: cover;
  object-position: 50% 46%;
}

.about-portrait figcaption {
  position: absolute;
  right: -18px;
  bottom: 26px;
  left: 36px;
  display: flex;
  gap: 13px;
  align-items: center;
  min-height: 82px;
  padding: 17px 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  color: white;
  background: rgba(22, 24, 20, 0.88);
  backdrop-filter: blur(14px);
}

.about-portrait figcaption p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  line-height: 1.4;
}

.about-portrait figcaption strong {
  color: white;
  font-size: 1rem;
}

.about-story,
.area-section {
  padding: 110px max(6vw, 28px);
}

.founder-story {
  display: grid;
  grid-template-columns: minmax(380px, 0.82fr) minmax(0, 1fr);
  gap: clamp(55px, 8vw, 125px);
  align-items: center;
  padding: 40px max(6vw, 28px) 125px;
  color: white;
  background:
    radial-gradient(circle at 78% 28%, rgba(242, 138, 21, 0.16), transparent 28%),
    linear-gradient(135deg, #181a17 0%, #22251f 58%, #11130f 100%);
}

.founder-story-portraits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
  width: min(100%, 780px);
}

.founder-story-image {
  position: relative;
  max-width: none;
  margin: 0;
}

.founder-story-image::before {
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 1px solid rgba(242, 138, 21, 0.52);
  border-radius: 34px 120px 34px 34px;
  content: "";
}

.founder-story-image img {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 460px;
  border-radius: 34px 120px 34px 34px;
  object-fit: cover;
  object-position: 50% 48%;
}

.founder-story-image:nth-child(2) img {
  object-position: 50% 42%;
}

.founder-story-image figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 14px 17px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  color: white;
  background: rgba(23, 25, 21, 0.86);
  backdrop-filter: blur(12px);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.founder-story-copy {
  max-width: 760px;
}

.founder-story-copy h2 {
  margin: 22px 0 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 5.7vw, 6rem);
  font-weight: 550;
  letter-spacing: -0.06em;
  line-height: 0.92;
}

.founder-story-copy h2 em {
  color: var(--orange);
  font-weight: 430;
}

.founder-story-copy > p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.78;
}

.founder-story-copy .founder-story-lead {
  color: white;
  font-size: clamp(1.1rem, 1.8vw, 1.32rem);
}

.founder-story-copy blockquote {
  position: relative;
  max-width: 680px;
  margin: 32px 0;
  padding: 22px 0 22px 28px;
  border-left: 3px solid var(--orange);
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.28rem, 2vw, 1.72rem);
  line-height: 1.45;
}

.founder-story-copy .text-link {
  margin-top: 24px;
}

.about-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.66fr);
  gap: clamp(48px, 8vw, 130px);
  align-items: end;
  max-width: 1380px;
  margin: 0 auto;
}

.about-heading h2,
.about-values-heading h2,
.area-copy h2 {
  margin: 20px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 5.8vw, 6.2rem);
  letter-spacing: -0.06em;
  line-height: 0.92;
}

.about-intro p,
.area-copy > p {
  color: var(--muted);
  line-height: 1.75;
}

.value-grid article > span {
  color: var(--orange-dark);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.about-values {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(50px, 8vw, 130px);
  padding: 110px max(6vw, 28px);
  color: white;
  background: #1b1d19;
}

.about-values-heading {
  align-self: center;
}

.value-grid {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.value-grid article {
  display: grid;
  grid-template-columns: 55px minmax(180px, 0.75fr) 1fr;
  gap: 24px;
  align-items: start;
  padding: 31px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.value-grid h3 {
  margin: 0;
  font-size: 1.25rem;
}

.value-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.65;
}

.area-section {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
  gap: clamp(48px, 7vw, 110px);
  align-items: center;
  max-width: 1560px;
  margin: auto;
}

.area-map {
  position: relative;
  min-height: 610px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 34px 120px 34px 34px;
  background: #e9e7df;
  box-shadow: 0 24px 70px rgba(25, 27, 23, 0.13);
}

.area-map img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: clamp(18px, 3vw, 42px);
  object-fit: contain;
  background: white;
}

.area-map figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  padding: 12px 15px;
  border-radius: 10px;
  color: white;
  background: rgba(24, 26, 23, 0.9);
  font-size: 0.82rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.area-copy {
  max-width: 570px;
}

.area-copy > p:first-of-type {
  margin-top: 28px;
}

.area-contact {
  display: grid;
  gap: 0;
  margin: 32px 0;
  border-top: 1px solid var(--line);
}

.area-contact a {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}

.area-contact span {
  color: var(--muted);
  font-size: 0.82rem;
}

.area-contact strong {
  overflow-wrap: anywhere;
}

/* Knowledge bank */
.knowledge-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(460px, 0.72fr);
  gap: clamp(55px, 8vw, 130px);
  align-items: center;
  min-height: 720px;
  padding: 155px max(6vw, 28px) 95px;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 14% 24%, rgba(242, 138, 21, 0.18), transparent 30%),
    radial-gradient(circle at 88% 84%, rgba(104, 135, 112, 0.18), transparent 34%),
    linear-gradient(135deg, #171915 0%, #232720 58%, #10120f 100%);
}

.knowledge-hero::before {
  position: absolute;
  top: 105px;
  right: -120px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(242, 138, 21, 0.28);
  border-radius: 50%;
  content: "";
}

.knowledge-hero-copy,
.knowledge-search-panel {
  position: relative;
  z-index: 1;
}

.knowledge-hero h1 {
  margin: 25px 0 31px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.2rem, 7.2vw, 7.7rem);
  font-weight: 760;
  letter-spacing: -0.065em;
  line-height: 0.87;
}

.knowledge-hero h1 em {
  color: var(--orange);
  font-weight: 430;
}

.knowledge-hero-copy > p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(1.08rem, 1.8vw, 1.32rem);
  line-height: 1.72;
}

.knowledge-search-panel {
  padding: clamp(25px, 4vw, 45px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 28px 80px 28px 28px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.23);
  backdrop-filter: blur(18px);
}

.knowledge-search-panel > label {
  display: block;
  margin-bottom: 13px;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.knowledge-search-wrap {
  display: grid;
  grid-template-columns: 27px 1fr auto;
  gap: 11px;
  align-items: center;
  min-height: 72px;
  padding: 0 18px;
  border: 2px solid transparent;
  border-radius: 16px;
  color: var(--ink);
  background: white;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.knowledge-search-wrap:focus-within {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(242, 138, 21, 0.17);
}

.knowledge-search-wrap svg {
  width: 25px;
  fill: none;
  stroke: var(--orange-dark);
  stroke-linecap: round;
  stroke-width: 1.8;
}

.knowledge-search-wrap input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font-size: 1rem;
}

.knowledge-search-wrap input::placeholder {
  color: #858a80;
}

.knowledge-search-wrap button {
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  color: var(--ink);
  background: var(--paper);
  font-size: 1.35rem;
}

.knowledge-popular {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 17px;
}

.knowledge-popular span {
  margin-right: 2px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.74rem;
}

.knowledge-popular button {
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.72rem;
  font-weight: 700;
}

.knowledge-popular button:hover,
.knowledge-popular button:focus-visible {
  border-color: var(--orange);
  color: white;
}

.knowledge-privacy {
  margin: 17px 0 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.7rem;
}

.knowledge-body {
  display: grid;
  grid-template-columns: 245px minmax(0, 1fr);
  gap: clamp(45px, 6vw, 90px);
  align-items: start;
  max-width: 1540px;
  margin: 0 auto;
  padding: 105px max(6vw, 28px) 120px;
}

.knowledge-sidebar {
  position: sticky;
  top: 120px;
}

.knowledge-sidebar > p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.knowledge-categories {
  display: grid;
  border-top: 1px solid var(--line);
}

.knowledge-categories button {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  min-height: 50px;
  padding: 0 3px;
  border: 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  color: var(--muted);
  background: transparent;
  text-align: left;
  font-size: 0.85rem;
  font-weight: 740;
}

.knowledge-categories button span {
  display: grid;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  place-items: center;
  color: var(--muted);
  background: rgba(23, 25, 21, 0.06);
  font-size: 0.68rem;
}

.knowledge-categories button:hover,
.knowledge-categories button:focus-visible,
.knowledge-categories button.active {
  color: var(--ink);
}

.knowledge-categories button.active {
  padding-left: 12px;
  border-radius: 10px;
  background: rgba(242, 138, 21, 0.12);
}

.knowledge-categories button.active span {
  color: var(--ink);
  background: var(--orange);
}

.knowledge-expert {
  margin-top: 34px;
  padding: 22px;
  border-radius: 18px;
  color: white;
  background: var(--ink);
}

.knowledge-expert > span {
  color: var(--orange);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.knowledge-expert strong {
  display: block;
  margin-top: 6px;
}

.knowledge-expert p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  line-height: 1.6;
}

.knowledge-expert a {
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
}

.knowledge-results {
  min-width: 0;
}

.knowledge-results-head {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: end;
  margin-bottom: 38px;
}

.knowledge-results-head h2 {
  margin: 15px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.1rem, 5.6vw, 5.8rem);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 0.94;
}

.knowledge-results-head > p {
  flex: 0 0 auto;
  margin: 0 0 7px;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
}

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

.knowledge-card {
  display: flex;
  flex-direction: column;
  min-height: 325px;
  padding: 29px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 250, 241, 0.62);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.knowledge-card[hidden] {
  display: none;
}

.knowledge-card:hover {
  border-color: rgba(242, 138, 21, 0.5);
  box-shadow: 0 17px 45px rgba(25, 27, 23, 0.08);
  transform: translateY(-2px);
}

.knowledge-card-featured {
  color: white;
  background:
    radial-gradient(circle at 100% 0%, rgba(242, 138, 21, 0.22), transparent 39%),
    var(--ink);
}

.knowledge-card-cta {
  border-color: rgba(242, 138, 21, 0.45);
  background: rgba(242, 138, 21, 0.1);
}

.knowledge-kicker {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 22px;
  color: var(--orange-dark);
  font-size: 0.69rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.knowledge-kicker small {
  color: var(--muted);
  font-size: inherit;
  font-weight: 700;
  letter-spacing: normal;
  text-transform: none;
}

.knowledge-card-featured .knowledge-kicker {
  color: var(--orange);
}

.knowledge-card-featured .knowledge-kicker small {
  color: rgba(255, 255, 255, 0.46);
}

.knowledge-card h3 {
  margin: 0 0 15px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 2.4vw, 2.25rem);
  font-weight: 550;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.knowledge-card > p:not(.knowledge-kicker) {
  margin: 0 0 24px;
  color: var(--muted);
  line-height: 1.68;
}

.knowledge-card-featured > p:not(.knowledge-kicker) {
  color: rgba(255, 255, 255, 0.66);
}

.knowledge-card details {
  margin-top: auto;
  border-top: 1px solid var(--line);
}

.knowledge-card-featured details {
  border-color: rgba(255, 255, 255, 0.14);
}

.knowledge-card summary {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  min-height: 55px;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 850;
  list-style: none;
}

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

.knowledge-card summary span {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border-radius: 50%;
  place-items: center;
  color: var(--ink);
  background: var(--orange);
  font-size: 1.15rem;
  transition: transform 0.2s ease;
}

.knowledge-card details[open] summary span {
  transform: rotate(45deg);
}

.knowledge-answer {
  padding: 5px 0 4px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.72;
}

.knowledge-card-featured .knowledge-answer {
  color: rgba(255, 255, 255, 0.7);
}

.knowledge-answer p,
.knowledge-answer ul,
.knowledge-answer ol {
  margin: 0 0 16px;
}

.knowledge-answer ul,
.knowledge-answer ol {
  padding-left: 20px;
}

.knowledge-answer li + li {
  margin-top: 9px;
}

.knowledge-answer strong {
  color: var(--ink);
}

.knowledge-card-featured .knowledge-answer strong {
  color: white;
}

.knowledge-source {
  padding-top: 14px;
  border-top: 1px solid rgba(23, 25, 21, 0.12);
  font-size: 0.8rem;
  line-height: 1.6;
}

.knowledge-source a {
  color: var(--orange-dark);
  font-weight: 750;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.knowledge-source a:hover,
.knowledge-source a:focus-visible {
  color: var(--ink);
}

.knowledge-answer .button {
  margin-top: 8px;
}

.knowledge-empty {
  padding: 60px 30px;
  border: 1px dashed rgba(23, 25, 21, 0.25);
  border-radius: 24px;
  text-align: center;
}

.knowledge-empty > span {
  display: grid;
  width: 54px;
  height: 54px;
  margin: 0 auto 20px;
  border-radius: 50%;
  place-items: center;
  color: var(--ink);
  background: var(--orange);
  font-family: Georgia, serif;
  font-size: 1.8rem;
}

.knowledge-empty h3 {
  margin: 0 0 10px;
  font-family: Georgia, serif;
  font-size: 2rem;
}

.knowledge-empty p {
  max-width: 650px;
  margin: 0 auto 25px;
  color: var(--muted);
}

.knowledge-feedback,
.knowledge-question {
  margin-top: 75px;
  color: white;
  background: var(--ink);
}

.knowledge-feedback {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 38px;
  align-items: center;
  padding: clamp(28px, 4vw, 48px);
  border-radius: 26px 88px 26px 26px;
}

.knowledge-feedback h2,
.knowledge-question h2 {
  margin: 15px 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.15rem, 4vw, 4rem);
  font-weight: 550;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.knowledge-feedback > div > p:not(.eyebrow),
.knowledge-question-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
}

.knowledge-feedback-actions {
  display: grid;
  gap: 10px;
}

.knowledge-feedback-actions button {
  display: flex;
  gap: 11px;
  align-items: center;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  cursor: pointer;
  color: white;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.78rem;
  font-weight: 800;
}

.knowledge-feedback-actions button span {
  color: var(--orange);
}

.knowledge-feedback-actions button:hover,
.knowledge-feedback-actions button.selected {
  border-color: var(--orange);
  background: rgba(242, 138, 21, 0.14);
}

.knowledge-feedback-status {
  grid-column: 1 / -1;
  margin: -18px 0 0;
  color: var(--orange);
  font-size: 0.78rem;
}

.knowledge-question {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(380px, 1fr);
  gap: clamp(40px, 6vw, 80px);
  padding: clamp(30px, 5vw, 65px);
  border-radius: 28px;
  background:
    radial-gradient(circle at 0% 100%, rgba(242, 138, 21, 0.17), transparent 36%),
    #232720;
  scroll-margin-top: 115px;
}

.knowledge-question-note {
  margin-top: 20px !important;
  font-size: 0.72rem;
}

.knowledge-question-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.07);
}

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

.knowledge-question-form label > span {
  font-size: 0.76rem;
  font-weight: 800;
}

.knowledge-question-form label small {
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
}

.knowledge-question-form textarea,
.knowledge-question-form input {
  width: 100%;
  border: 1px solid transparent;
  border-radius: 12px;
  outline: 0;
  color: var(--ink);
  background: white;
}

.knowledge-question-form textarea {
  min-height: 130px;
  padding: 14px;
  resize: vertical;
}

.knowledge-question-form input {
  min-height: 50px;
  padding: 0 14px;
}

.knowledge-question-form textarea:focus,
.knowledge-question-form input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(242, 138, 21, 0.15);
}

.knowledge-question-form button:disabled {
  cursor: wait;
  opacity: 0.6;
}

.knowledge-form-status {
  min-height: 20px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
}

.knowledge-reviewed {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.knowledge-reviewed p {
  max-width: 590px;
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.65;
}

/* Holmgaard standard */
.holmgaard-standard {
  position: relative;
  overflow: hidden;
  padding: 95px max(6vw, 28px);
  color: white;
  background:
    radial-gradient(circle at 92% 12%, rgba(242, 138, 21, 0.18), transparent 28%),
    #171915;
}

.holmgaard-standard::after {
  position: absolute;
  right: -115px;
  bottom: -225px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(242, 138, 21, 0.24);
  border-radius: 50%;
  content: "";
}

.home-standard {
  max-width: 1240px;
  margin: 90px auto 0;
  border-radius: 32px 110px 32px 32px;
}

.standard-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.55fr);
  gap: clamp(45px, 8vw, 120px);
  align-items: end;
  max-width: 1380px;
  margin: 0 auto 60px;
}

.standard-heading h2 {
  margin: 18px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.5rem, 6.4vw, 6.8rem);
  font-weight: 650;
  letter-spacing: -0.065em;
  line-height: 0.86;
}

.standard-heading h2 em {
  color: var(--orange);
  font-weight: 430;
}

.standard-heading > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 1.04rem;
  line-height: 1.75;
}

.standard-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  max-width: 1380px;
  margin: 0 auto;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  list-style: none;
}

.standard-grid li {
  min-height: 230px;
  padding: 25px 22px 22px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.standard-grid li + li {
  padding-left: 22px;
}

.standard-grid li:last-child {
  border-right: 0;
}

.standard-grid li > span {
  display: block;
  margin-bottom: 56px;
  color: var(--orange);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.standard-grid strong {
  display: block;
  font-size: 1rem;
  line-height: 1.25;
}

.standard-grid p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.8rem;
  line-height: 1.6;
}

/* Service pages */
.service-page-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 0.72fr);
  gap: clamp(50px, 7vw, 105px);
  align-items: center;
  min-height: 790px;
  padding: 145px max(6vw, 28px) 90px;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 12% 28%, rgba(242, 138, 21, 0.17), transparent 30%),
    linear-gradient(135deg, #171915 0%, #22251f 58%, #10120f 100%);
}

.service-page-hero::after {
  position: absolute;
  right: -170px;
  bottom: -210px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(242, 138, 21, 0.24);
  border-radius: 50%;
  content: "";
}

.service-page-copy,
.service-page-video {
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.72rem;
}

.breadcrumb a:hover,
.breadcrumb a:focus-visible {
  color: var(--orange);
}

.breadcrumb strong {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 700;
}

.service-page-copy h1 {
  max-width: 850px;
  margin: 22px 0 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.1rem, 7vw, 7.4rem);
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 0.87;
}

.service-page-copy h1 em {
  color: var(--orange);
  font-weight: 430;
}

.service-page-lead {
  max-width: 700px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(1.08rem, 1.7vw, 1.3rem);
  line-height: 1.7;
}

.service-page-actions {
  display: flex;
  gap: 27px;
  align-items: center;
  margin-top: 34px;
}

.service-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
}

.service-facts li {
  display: flex;
  gap: 8px;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.75rem;
  font-weight: 700;
}

.service-facts li span {
  color: var(--orange);
}

.service-page-video {
  margin: 0;
}

.service-page-video .video-frame {
  aspect-ratio: 16 / 10;
  border: 10px solid #2b2e28;
  border-radius: 32px 115px 32px 32px;
  box-shadow: 0 34px 85px rgba(0, 0, 0, 0.35);
}

.service-page-video figcaption {
  display: flex;
  gap: 9px;
  align-items: center;
  margin: 13px 0 0 8px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.75rem;
}

.service-page-video figcaption span {
  color: var(--orange);
  font-size: 0.55rem;
}

.service-page-video figcaption strong {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.76rem;
}

.service-page-video figcaption small {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.43);
  font-size: 0.7rem;
}

.service-page-intro,
.service-problems,
.service-faq-section,
.service-related {
  max-width: 1480px;
  margin: 0 auto;
  padding: 105px max(6vw, 28px);
}

.service-page-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(400px, 0.7fr);
  gap: clamp(55px, 8vw, 125px);
  align-items: center;
}

.service-intro-copy h2,
.service-section-heading h2,
.service-process-copy h2,
.service-faq-heading h2,
.service-related h2 {
  margin: 20px 0 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 5.3vw, 5.7rem);
  font-weight: 550;
  letter-spacing: -0.06em;
  line-height: 0.93;
}

.service-intro-copy > p:not(.eyebrow),
.service-faq-heading > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.78;
}

.service-result-image {
  position: relative;
  min-height: 570px;
  margin: 0;
}

.service-result-image::before {
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 1px solid rgba(242, 138, 21, 0.48);
  border-radius: 30px 110px 30px 30px;
  content: "";
}

.service-result-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 30px 110px 30px 30px;
  object-fit: cover;
}

.service-result-image figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  padding: 10px 13px;
  border-radius: 9px;
  color: white;
  background: rgba(23, 25, 21, 0.88);
  font-size: 0.72rem;
  font-weight: 750;
  backdrop-filter: blur(10px);
}

.service-photo-pair {
  display: grid;
  gap: 14px;
  margin: 0;
}

.service-photo {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(23, 25, 21, 0.12);
  border-radius: 22px 64px 22px 22px;
  background: #30352e;
  box-shadow: 0 18px 45px rgba(25, 27, 23, 0.12);
  aspect-ratio: 16 / 9;
}

.service-photo:nth-child(2) {
  border-radius: 22px 22px 64px 22px;
}

.service-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-photo-pair figcaption {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
  text-align: right;
}

.service-problems {
  border-top: 1px solid var(--line);
}

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

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

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

.service-problem-grid article {
  min-height: 285px;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.42);
}

.service-problem-grid article > span {
  display: block;
  margin-bottom: 74px;
  color: var(--orange-dark);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.service-problem-grid h3 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.5vw, 2.15rem);
  font-weight: 550;
  line-height: 1.05;
}

.service-problem-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.67;
}

.service-process-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.76fr) minmax(0, 1.24fr);
  gap: clamp(60px, 9vw, 140px);
  padding: 105px max(6vw, 28px);
  color: white;
  background: #242720;
}

.service-process-copy {
  position: sticky;
  top: 130px;
  align-self: start;
}

.service-process-copy > p:not(.eyebrow) {
  max-width: 570px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.72;
}

.service-process-copy .button {
  margin-top: 25px;
}

.service-process-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  list-style: none;
}

.service-process-list li {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr);
  gap: 20px;
  padding: 31px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.service-process-list li > span {
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.service-process-list strong {
  display: block;
  font-size: 1.2rem;
}

.service-process-list p {
  max-width: 600px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.65;
}

.service-standard {
  padding-top: 115px;
  padding-bottom: 115px;
  background:
    radial-gradient(circle at 92% 12%, rgba(242, 138, 21, 0.18), transparent 28%),
    #121410;
}

.service-faq-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(55px, 8vw, 120px);
}

.service-faq-heading {
  align-self: start;
}

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

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

.service-faq-list summary {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  min-height: 82px;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

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

.service-faq-list summary span {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  border-radius: 50%;
  place-items: center;
  background: rgba(242, 138, 21, 0.16);
  font-size: 1.18rem;
  transition: transform 0.2s ease;
}

.service-faq-list details[open] summary span {
  transform: rotate(45deg);
}

.service-faq-list details > p {
  max-width: 720px;
  margin: -3px 50px 24px 0;
  color: var(--muted);
  line-height: 1.7;
}

.service-related {
  display: grid;
  grid-template-columns: 0.45fr 1.55fr;
  gap: clamp(45px, 7vw, 100px);
  align-items: start;
  padding-top: 50px;
}

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

.service-related-grid a {
  display: flex;
  flex-direction: column;
  min-height: 235px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.42);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.service-related-grid a:hover,
.service-related-grid a:focus-visible {
  color: white;
  background: var(--ink-soft);
  transform: translateY(-3px);
}

.service-related-grid a > span {
  color: var(--orange-dark);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-related-grid strong {
  margin-top: 34px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.28rem;
  font-weight: 550;
  line-height: 1.15;
}

.service-related-grid small {
  margin-top: auto;
  color: var(--orange-dark);
  font-weight: 800;
}

.service-related-grid a:hover small,
.service-related-grid a:focus-visible small {
  color: var(--orange);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-delay {
  transition-delay: 0.15s;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-header .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .site-header > .button {
    grid-column: 2;
    grid-row: 1;
  }

  .site-header nav {
    display: grid;
    grid-column: 1 / -1;
    grid-row: 2;
    grid-template-columns: repeat(6, 1fr);
    width: 100%;
    margin-top: 6px;
  }

  .hero {
    grid-template-columns: 1fr 0.7fr;
    gap: 40px;
  }

  .journey-proof {
    grid-template-columns: minmax(0, 0.9fr) minmax(400px, 1.1fr);
    gap: 40px;
  }

  .journey-trust-row,
  .journey-steps {
    grid-template-columns: 1fr;
  }

  .journey-steps li {
    display: grid;
    grid-template-columns: 38px 1fr;
    min-height: 0;
  }

  .journey-steps li > span {
    margin: 1px 0 0;
  }

  .floating-note {
    display: none;
  }

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

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

  .pricing-heading {
    grid-template-columns: 1fr 0.7fr;
  }

  .calculator-body {
    grid-template-columns: 1fr 1.15fr;
  }

  .guide-section {
    grid-template-columns: 0.62fr 1fr;
    gap: 50px;
  }

  .deduction-section {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
    gap: 50px;
  }

  .deduction-visual {
    min-height: 600px;
  }

  .about-hero,
  .area-section {
    grid-template-columns: 1fr 0.78fr;
  }

  .founder-story {
    grid-template-columns: 1fr;
  }

  .founder-story-image {
    width: min(100%, 720px);
  }

  .about-values {
    grid-template-columns: 1fr;
  }

  .knowledge-hero {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .knowledge-body {
    grid-template-columns: 1fr;
  }

  .knowledge-sidebar {
    position: static;
  }

  .knowledge-categories {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 8px;
    border-top: 0;
    scrollbar-width: thin;
  }

  .knowledge-categories button {
    flex: 0 0 auto;
    gap: 10px;
    min-height: 44px;
    padding: 0 13px;
    border: 1px solid var(--line);
    border-radius: 999px;
  }

  .knowledge-categories button.active {
    padding-left: 13px;
  }

  .knowledge-expert {
    display: none;
  }

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

  .standard-grid li {
    min-height: 190px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .standard-grid li:nth-child(2n) {
    border-right: 0;
  }

  .standard-grid li > span {
    margin-bottom: 38px;
  }

  .service-page-hero {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.68fr);
  }

  .service-page-intro {
    grid-template-columns: 1fr 0.75fr;
  }

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

  .about-values-heading {
    max-width: 720px;
  }

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

@media (max-width: 760px) {
  html {
    scroll-padding-top: 118px;
  }

  body {
    padding-bottom: 68px;
  }

  .site-header {
    inset: 10px 12px auto;
    padding: 7px 9px 7px 14px;
  }

  .brand {
    width: 132px;
    height: 42px;
    padding: 4px 6px;
    border-radius: 9px;
  }

  .site-header > .button {
    min-height: 40px;
    font-size: 0.78rem;
  }

  .site-header nav a {
    min-height: 34px;
    padding: 0 5px;
    font-size: clamp(0.58rem, 2.15vw, 0.73rem);
    white-space: nowrap;
  }

  .nav-label-full {
    display: none;
  }

  .nav-label-short {
    display: inline;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 125px 20px 70px;
  }

  .journey-proof {
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 82px 20px;
  }

  .journey-trust-row {
    grid-template-columns: 1fr;
    margin-bottom: 34px;
  }

  .journey-rating,
  .journey-trust-row > p {
    min-height: 112px;
    padding: 14px;
  }

  .journey-copy h2 {
    font-size: clamp(2.9rem, 13vw, 4.3rem);
  }

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

  .journey-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .journey-case .before-after {
    aspect-ratio: 1 / 1;
  }

  .journey-case figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .journey-case figcaption span {
    text-align: left;
  }

  .hero h1 {
    font-size: clamp(3.3rem, 17vw, 5.4rem);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .proof-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    margin-top: 44px;
  }

  .proof-list li {
    min-width: 0;
    padding: 0 10px;
  }

  .proof-list strong {
    font-size: 0.9rem;
  }

  .proof-list span {
    font-size: 0.7rem;
  }

  .hero-visual {
    width: 88%;
    margin-top: 18px;
  }

  .hero-poster {
    width: min(92%, 410px);
    margin-top: 28px;
  }

  .hero-poster img {
    max-height: none;
  }

  .hero-visual::before {
    inset: 14px -10px -10px 12px;
    border-radius: 30px 105px 28px 28px;
  }

  .portrait-card {
    border-radius: 30px 100px 26px 26px;
  }

  .portrait-card > img {
    height: 400px;
  }

  .work-section {
    padding: 82px 20px;
  }

  .section-heading,
  .pricing-heading,
  .cases-block,
  .guide-section,
  .deduction-section,
  .reporting-heading {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 25px;
  }

  .section-heading h2,
  .pricing-heading h2,
  .case-copy h2,
  .reviews-heading h2,
  .guide-intro h2 {
    font-size: clamp(2.7rem, 13vw, 4.2rem);
  }

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

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

  .service-icon {
    margin-top: 33px;
  }

  .service-deep-dive summary {
    min-height: 82px;
    padding: 17px 19px;
  }

  .deep-dive-layout {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 32px 18px;
  }

  .deep-dive-copy {
    display: contents;
  }

  .deep-dive-copy > * {
    order: 3;
  }

  .deep-dive-copy > .eyebrow {
    order: 0;
  }

  .deep-dive-copy h3 {
    order: 1;
    font-size: clamp(2.35rem, 11vw, 3.5rem);
  }

  .cleaning-process {
    grid-template-columns: 1fr;
  }

  .cleaning-process article {
    min-height: 0;
  }

  .deep-dive-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .service-video {
    position: static;
    order: 2;
    margin: 4px 0 24px;
  }

  .pricing-block,
  .reviews-block {
    margin-top: 95px;
  }

  .pricing-heading {
    gap: 24px;
  }

  .calculator {
    padding: 8px;
  }

  .package-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
    padding-bottom: 8px;
  }

  .package-tabs button {
    min-width: 0;
  }

  .package-tabs button:first-child {
    grid-column: 1 / -1;
  }

  .calculator-body {
    grid-template-columns: 1fr;
  }

  .package-details,
  .calculator-controls {
    padding: 25px 18px;
  }

  .area-line {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .area-line output {
    font-size: 2.6rem;
  }

  .reviews-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .trust-score {
    width: 100%;
    min-width: 0;
  }

  .review-marquee {
    margin-right: -20px;
    margin-left: -20px;
  }

  .review-card {
    flex-basis: min(82vw, 340px);
  }

  .cases-block {
    margin-top: 95px;
  }

  .case-slide figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .guide-section {
    padding: 84px 20px 50px;
  }

  .guide-intro {
    position: static;
  }

  .guide-intro blockquote {
    display: none;
  }

  .guide-card {
    min-height: 0;
    padding: 25px 18px;
  }

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

  .option {
    min-height: 105px;
  }

  .contact-form label,
  .contact-form-message,
  .contact-form .button,
  .form-note {
    grid-column: auto;
  }

  .direct-contact,
  .direct-contact > div {
    align-items: flex-start;
    flex-direction: column;
  }

  .direct-contact > div {
    gap: 20px;
  }

  .deduction-section {
    padding: 84px 20px;
  }

  .about-hero {
    grid-template-columns: 1fr;
    gap: 54px;
    min-height: auto;
    padding: 155px 20px 82px;
  }

  .knowledge-hero {
    min-height: auto;
    padding: 155px 20px 75px;
  }

  .knowledge-hero h1 {
    font-size: clamp(3.7rem, 16.5vw, 5.6rem);
  }

  .knowledge-search-panel {
    padding: 22px 17px;
    border-radius: 22px 58px 22px 22px;
  }

  .knowledge-search-wrap {
    grid-template-columns: 23px 1fr auto;
    min-height: 62px;
    padding: 0 12px;
  }

  .knowledge-search-wrap input {
    font-size: 0.9rem;
  }

  .knowledge-popular {
    flex-wrap: nowrap;
    overflow-x: auto;
    margin-right: -17px;
    padding-right: 17px;
    padding-bottom: 7px;
  }

  .knowledge-popular > * {
    flex: 0 0 auto;
  }

  .knowledge-body {
    gap: 36px;
    padding: 78px 20px 90px;
  }

  .knowledge-results-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .knowledge-results-head h2 {
    font-size: clamp(2.9rem, 14vw, 4.5rem);
  }

  .knowledge-results-head > p {
    margin: 0;
  }

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

  .knowledge-card {
    min-height: 0;
    padding: 24px 20px;
  }

  .knowledge-card h3 {
    font-size: 1.75rem;
  }

  .knowledge-feedback,
  .knowledge-question {
    grid-template-columns: 1fr;
    margin-top: 55px;
  }

  .knowledge-feedback {
    align-items: stretch;
    border-radius: 22px 64px 22px 22px;
  }

  .knowledge-feedback-actions button {
    justify-content: center;
  }

  .knowledge-feedback-status {
    margin-top: -12px;
  }

  .knowledge-question {
    padding: 27px 17px;
  }

  .knowledge-question-form {
    padding: 17px;
  }

  .knowledge-reviewed {
    flex-direction: column;
    gap: 10px;
  }

  .holmgaard-standard {
    padding: 78px 20px;
  }

  .home-standard {
    margin-top: 70px;
    border-radius: 25px 76px 25px 25px;
  }

  .standard-heading {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 42px;
  }

  .standard-heading h2 {
    font-size: clamp(3.25rem, 15vw, 5rem);
  }

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

  .standard-grid li,
  .standard-grid li + li {
    display: grid;
    grid-template-columns: 45px 1fr;
    gap: 14px;
    min-height: 0;
    padding: 22px 0;
    border-right: 0;
  }

  .standard-grid li > span {
    margin: 2px 0 0;
  }

  .service-page-hero {
    grid-template-columns: 1fr;
    gap: 50px;
    min-height: auto;
    padding: 150px 20px 75px;
  }

  .service-page-copy h1 {
    font-size: clamp(3.65rem, 16.5vw, 5.5rem);
  }

  .service-page-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .service-facts {
    align-items: flex-start;
    flex-direction: column;
  }

  .service-page-video {
    width: min(86%, 370px);
    margin: 0 auto;
  }

  .service-page-video .video-frame {
    border-radius: 27px 85px 27px 27px;
  }

  .service-page-video figcaption {
    flex-wrap: wrap;
    line-height: 1.4;
  }

  .service-page-video figcaption small {
    width: 100%;
    margin-left: 15px;
  }

  .service-page-intro,
  .service-problems,
  .service-faq-section,
  .service-related {
    padding: 78px 20px;
  }

  .service-page-intro,
  .service-faq-section {
    grid-template-columns: 1fr;
  }

  .service-intro-copy h2,
  .service-section-heading h2,
  .service-process-copy h2,
  .service-faq-heading h2,
  .service-related h2 {
    font-size: clamp(2.85rem, 13vw, 4.4rem);
  }

  .service-result-image {
    min-height: 430px;
    width: calc(100% - 18px);
  }

  .service-photo-pair {
    width: calc(100% - 18px);
  }

  .service-section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .service-problem-grid,
  .service-related-grid {
    grid-template-columns: 1fr;
  }

  .service-problem-grid article {
    min-height: 240px;
  }

  .service-process-section {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 78px 20px;
  }

  .service-process-copy {
    position: static;
  }

  .service-standard {
    padding-top: 85px;
    padding-bottom: 85px;
  }

  .service-faq-list summary {
    min-height: 74px;
  }

  .about-hero h1 {
    font-size: clamp(3.8rem, 17vw, 5.8rem);
  }

  .about-hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .about-portrait {
    width: calc(100% - 18px);
  }

  .about-portrait > img {
    height: 510px;
    border-radius: 28px 90px 28px 28px;
  }

  .about-portrait::before {
    border-radius: 28px 90px 28px 28px;
  }

  .about-portrait figcaption {
    right: -18px;
    bottom: 20px;
    left: 20px;
  }

  .about-story,
  .founder-story,
  .about-values,
  .area-section {
    padding: 84px 20px;
  }

  .founder-story {
    gap: 52px;
  }

  .founder-story-image {
    width: auto;
  }

  .founder-story-portraits {
    grid-template-columns: 1fr;
    gap: 12px;
    width: calc(100% - 18px);
    max-width: 520px;
  }

  .founder-story-image img {
    min-height: 420px;
    border-radius: 28px 86px 28px 28px;
  }

  .founder-story-image::before {
    border-radius: 28px 86px 28px 28px;
  }

  .founder-story-copy h2 {
    font-size: clamp(3rem, 14vw, 4.7rem);
  }

  .about-heading,
  .area-section {
    grid-template-columns: 1fr;
  }

  .about-heading {
    gap: 28px;
  }

  .about-heading h2,
  .about-values-heading h2,
  .area-copy h2 {
    font-size: clamp(3rem, 14vw, 4.7rem);
  }

  .value-grid article {
    grid-template-columns: 44px 1fr;
    gap: 10px 16px;
  }

  .value-grid p {
    grid-column: 2;
  }

  .area-map {
    min-height: 430px;
    border-radius: 28px 86px 28px 28px;
  }

  .area-copy {
    max-width: none;
  }

  .deduction-copy h1,
  .deduction-copy h2 {
    font-size: clamp(3rem, 14vw, 4.7rem);
  }

  .deduction-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .deduction-visual {
    min-height: 540px;
    border-radius: 30px 96px 30px 30px;
  }

  .deduction-visual::before {
    border-radius: 20px 76px 20px 20px;
  }

  .reporting-section {
    padding: 84px 20px;
  }

  .reporting-heading {
    gap: 24px;
    margin-bottom: 38px;
  }

  .reporting-heading h2 {
    font-size: clamp(2.8rem, 13vw, 4.4rem);
  }

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

  .reporting-steps li {
    grid-template-columns: 52px 1fr;
    min-height: 0;
    padding: 26px 20px;
  }

  .reporting-number {
    width: 44px;
    height: 44px;
  }

  .reporting-callout {
    align-items: flex-start;
    padding: 25px 20px;
    flex-direction: column;
  }

  footer {
    grid-template-columns: 1fr;
    gap: 13px;
    padding: 34px 20px;
  }

  .mobile-contact {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 60;
    display: grid;
    grid-template-columns: 0.75fr 1fr;
    padding: 9px;
    background: rgba(18, 20, 17, 0.96);
    backdrop-filter: blur(16px);
  }

  .mobile-contact a {
    display: grid;
    min-height: 50px;
    border-radius: 11px;
    place-items: center;
    color: white;
    font-weight: 800;
  }

  .mobile-contact a:last-child {
    color: var(--ink);
    background: var(--orange);
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }

  .review-marquee {
    overflow-x: auto;
    mask-image: none;
  }

  .review-track {
    animation: none !important;
    transform: none !important;
  }

  .review-set[aria-hidden="true"] {
    display: none;
  }
}

/* Consent, tracking and privacy */
.consent-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 120;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  max-width: 1180px;
  margin: auto;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 20px;
  color: white;
  background: rgba(18, 20, 17, 0.97);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(18px);
}

.consent-banner-copy strong {
  display: block;
  margin-bottom: 5px;
  font-size: 1rem;
}

.consent-banner-copy p {
  max-width: 670px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
  line-height: 1.55;
}

.consent-banner-copy a,
.consent-policy-link {
  color: var(--orange);
}

.consent-banner-actions {
  display: flex;
  gap: 9px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.button-quiet {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  background: rgba(255, 255, 255, 0.06);
}

.button-quiet:hover {
  color: white;
  background: rgba(255, 255, 255, 0.12);
}

.consent-settings-link {
  border: 0;
  padding: 9px 6px;
  color: rgba(255, 255, 255, 0.72);
  background: transparent;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.consent-dialog {
  width: min(620px, calc(100vw - 30px));
  max-height: calc(100vh - 30px);
  border: 0;
  border-radius: 24px;
  padding: 0;
  color: var(--ink);
  background: transparent;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.4);
}

.consent-dialog::backdrop {
  background: rgba(8, 10, 8, 0.72);
  backdrop-filter: blur(5px);
}

.consent-dialog-card {
  padding: clamp(24px, 5vw, 42px);
  background: #f4f1eb;
}

.consent-dialog-heading {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  justify-content: space-between;
}

.consent-dialog-heading h2 {
  margin: 8px 0 0;
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 0.96;
}

.consent-dialog-card > p {
  margin: 18px 0 24px;
  color: var(--muted);
}

.consent-close {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border: 1px solid rgba(23, 25, 21, 0.14);
  border-radius: 50%;
  place-items: center;
  color: var(--ink);
  background: white;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.consent-choice {
  display: flex;
  gap: 22px;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  border-top: 1px solid rgba(23, 25, 21, 0.13);
  cursor: pointer;
}

.consent-choice span {
  display: grid;
  gap: 4px;
}

.consent-choice small {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.consent-choice input {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  accent-color: var(--orange);
}

.consent-choice.is-required {
  cursor: default;
}

.consent-dialog-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 22px;
}

.consent-dialog-actions .button-quiet {
  border-color: rgba(23, 25, 21, 0.18);
  color: var(--ink);
  background: rgba(23, 25, 21, 0.04);
}

.consent-policy-link {
  display: inline-block;
  margin-top: 20px;
  font-size: 0.82rem;
  font-weight: 800;
}

.media-consent-placeholder {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 24px;
  color: white;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 145, 0, 0.25), transparent 45%),
    var(--ink);
}

.media-consent-placeholder > span {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 14px;
  border-radius: 50%;
  place-items: center;
  color: var(--ink);
  background: var(--orange);
}

.media-consent-placeholder p {
  max-width: 330px;
  margin: 7px 0 18px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.8rem;
}

.privacy-page {
  background: #f4f1eb;
}

.privacy-hero {
  position: relative;
  min-height: 560px;
  padding: 170px max(8vw, 28px) 95px;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 78% 20%, rgba(255, 145, 0, 0.26), transparent 28%),
    linear-gradient(125deg, #121410, #252922);
}

.privacy-hero::after {
  position: absolute;
  right: max(6vw, 30px);
  bottom: -95px;
  width: min(390px, 45vw);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 145, 0, 0.55);
  border-radius: 50%;
  box-shadow: 0 0 0 46px rgba(255, 145, 0, 0.06), 0 0 0 92px rgba(255, 145, 0, 0.035);
  content: '';
}

.privacy-hero h1 {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 18px 0 22px;
  font-size: clamp(3.6rem, 8vw, 7.2rem);
  line-height: 0.86;
  letter-spacing: -0.065em;
}

.privacy-hero h1 em {
  color: var(--orange);
  font-style: normal;
}

.privacy-hero > p:not(.eyebrow) {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.06rem;
  line-height: 1.65;
}

.privacy-hero .button {
  position: relative;
  z-index: 1;
}

.privacy-content {
  display: grid;
  grid-template-columns: minmax(230px, 0.35fr) minmax(0, 1fr);
  gap: clamp(45px, 8vw, 110px);
  max-width: 1240px;
  margin: 0 auto;
  padding: 110px max(6vw, 24px) 130px;
}

.privacy-summary {
  position: sticky;
  top: 130px;
  align-self: start;
  padding: 28px;
  border: 1px solid rgba(23, 25, 21, 0.12);
  border-radius: 20px;
  background: white;
}

.privacy-summary > span,
.privacy-updated {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.privacy-summary strong {
  display: block;
  margin: 9px 0 14px;
  font-size: 1.15rem;
}

.privacy-summary p {
  line-height: 1.65;
}

.privacy-summary a {
  color: var(--ink);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.privacy-summary .privacy-updated {
  margin-top: 26px;
  line-height: 1.5;
}

.privacy-articles {
  border-top: 1px solid rgba(23, 25, 21, 0.15);
}

.privacy-articles article {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 22px;
  padding: 38px 0 44px;
  border-bottom: 1px solid rgba(23, 25, 21, 0.15);
}

.privacy-articles article > span {
  display: grid;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  place-items: center;
  color: var(--ink);
  background: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
}

.privacy-articles h2 {
  margin: 4px 0 16px;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.privacy-articles p {
  max-width: 760px;
  color: var(--muted);
  line-height: 1.72;
}

.privacy-table {
  display: grid;
  margin-top: 10px;
  border: 1px solid rgba(23, 25, 21, 0.12);
  border-radius: 16px;
  overflow: hidden;
}

.privacy-table > div {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 22px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.65);
}

.privacy-table > div + div {
  border-top: 1px solid rgba(23, 25, 21, 0.1);
}

.privacy-table p {
  margin: 0;
}

.privacy-settings-button {
  border: 0;
  padding: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

@media (max-width: 1100px) {
  footer {
    grid-template-columns: auto 1fr;
  }

  .consent-banner {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .consent-banner-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .consent-banner {
    right: 10px;
    bottom: 78px;
    left: 10px;
    gap: 14px;
    max-height: calc(100vh - 100px);
    padding: 18px;
    border-radius: 16px;
    overflow-y: auto;
  }

  .consent-banner-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .consent-banner-actions .button,
  .consent-settings-link {
    min-height: 46px;
    padding: 10px 12px;
    font-size: 0.76rem;
  }

  .consent-dialog-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .consent-choice {
    align-items: flex-start;
  }

  .media-consent-placeholder {
    padding: 16px;
  }

  .media-consent-placeholder > span {
    width: 40px;
    height: 40px;
    margin-bottom: 8px;
  }

  .media-consent-placeholder p {
    margin: 4px 0 12px;
    font-size: 0.72rem;
  }

  .media-consent-placeholder .button {
    min-height: 40px;
    padding: 9px 14px;
    font-size: 0.72rem;
  }

  .privacy-hero {
    min-height: 520px;
    padding: 145px 22px 75px;
  }

  .privacy-hero::after {
    right: -130px;
    bottom: -60px;
    width: 300px;
  }

  .privacy-content {
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 72px 20px 100px;
  }

  .privacy-summary {
    position: static;
  }

  .privacy-articles article {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
  }

  .privacy-articles article > span {
    width: 38px;
    height: 38px;
  }

  .privacy-table > div {
    grid-template-columns: 1fr;
    gap: 7px;
  }

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