:root {
  --color-ink: #0f120f;
  --color-ink-2: #171a15;
  --color-cream: #f2eee4;
  --color-cream-2: #e5dece;
  --color-olive: #9aa15c;
  --color-olive-dark: #69723e;
  --color-text: #1f211b;
  --color-muted: #6c6d66;
  --color-line: rgba(17, 19, 15, 0.16);
  --color-white: #ffffff;
  --font-body: Arial, Helvetica, sans-serif;
  --font-heading: "Arial Narrow", "HelveticaNeue-CondensedBold", "Roboto Condensed", "Franklin Gothic Medium", Arial, Helvetica, sans-serif;
  --container: 1180px;
  --container-narrow: 960px;
  --radius: 8px;
  --radius-small: 4px;
  --shadow: 0 16px 38px rgba(0, 0, 0, 0.26);
  --space-section: clamp(3.2rem, 7vw, 5rem);
  --header-height: 74px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-cream);
  color: var(--color-text);
  font-family: var(--font-body);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--color-olive);
  outline-offset: 4px;
}

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  z-index: 1000;
  top: 1rem;
  left: 1rem;
  width: auto;
  height: auto;
  padding: 0.8rem 1rem;
  clip: auto;
  color: var(--color-white);
  background: var(--color-ink);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  background: rgba(13, 15, 13, 0.97);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: box-shadow 180ms ease, background 180ms ease;
}

section {
  scroll-margin-top: calc(var(--header-height) + 1rem);
}

.site-header.is-scrolled {
  background: rgba(13, 15, 13, 0.98);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: var(--header-height);
}

.brand,
.footer-logo {
  display: inline-flex;
  flex: 0 0 auto;
  text-decoration: none;
}

.brand img {
  width: clamp(190px, 24vw, 260px);
  height: auto;
  object-fit: contain;
  transform: translateY(2px);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 2rem);
}

.primary-nav a {
  color: var(--color-white);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 160ms ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--color-olive);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  color: var(--color-white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius-small);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

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

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

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

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

.section-cream {
  background: var(--color-cream);
}

.hero {
  position: relative;
  min-height: min(720px, calc(100svh - var(--header-height)));
  overflow: hidden;
  display: grid;
  align-items: center;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
  object-position: 55% 50%;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(6, 7, 6, 0.9) 0%, rgba(6, 7, 6, 0.68) 34%, rgba(6, 7, 6, 0.22) 70%, rgba(6, 7, 6, 0.55) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.48), transparent 44%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  padding-block: clamp(4.4rem, 8vw, 6.5rem);
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 0.8rem;
  color: var(--color-olive);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-kicker::before,
.center-heading .section-kicker::before,
.center-heading .section-kicker::after {
  content: "";
  display: inline-block;
  width: 38px;
  height: 2px;
  background: currentColor;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}

h1,
h2,
h3 {
  line-height: 1.02;
}

h1,
h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
}

h1 {
  max-width: 590px;
  font-size: clamp(3.4rem, 7vw, 5.4rem);
  overflow-wrap: normal;
}

h2 {
  font-size: clamp(2.2rem, 4.2vw, 3.25rem);
  overflow-wrap: normal;
}

h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 500px;
  margin: 1rem 0 1.35rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
}

.hero-trust {
  display: inline-flex;
  align-items: center;
  margin: 0 0 1rem;
  padding: 0.48rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: var(--radius-small);
  color: var(--color-white);
  background: rgba(15, 18, 15, 0.7);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.82rem 1.45rem;
  border: 1px solid transparent;
  border-radius: var(--radius-small);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.btn-primary {
  color: var(--color-white);
  background: var(--color-olive-dark);
  border-color: var(--color-olive);
}

.btn-primary:hover {
  background: var(--color-olive);
}

.btn-secondary {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-secondary:hover {
  border-color: var(--color-olive);
}

.service-area {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  max-width: 430px;
  margin: 1.35rem 0 0;
  color: rgba(255, 255, 255, 0.86);
}

.service-area span {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 0.2rem;
  border: 5px solid var(--color-olive);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.about,
.gallery,
.faq,
.contact {
  padding-block: var(--space-section);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.15fr);
  align-items: center;
  gap: clamp(2.5rem, 5vw, 4rem);
}

.about-copy p {
  max-width: 680px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.7rem;
}

.values-grid article {
  min-width: 0;
  padding: 1.25rem 0.5rem 0;
  text-align: center;
  border-top: 1px solid var(--color-line);
}

.values-grid p {
  margin: 0.45rem 0 0;
  color: var(--color-muted);
  font-size: 0.88rem;
  line-height: 1.35;
}

.value-icon {
  display: block;
  width: 46px;
  height: 46px;
  margin: 0 auto 0.7rem;
  color: var(--color-olive-dark);
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-image {
  margin: 0;
}

.about-image img {
  width: 100%;
  aspect-ratio: 1.42 / 1;
  object-fit: cover;
  border: 3px solid var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-image figcaption {
  margin-top: 0.6rem;
  color: var(--color-muted);
  font-size: 0.82rem;
}

.services,
.testimonials {
  padding-block: clamp(3.25rem, 6vw, 4.5rem);
}

.texture {
  background:
    radial-gradient(circle at top left, rgba(143, 150, 84, 0.16), transparent 28rem),
    linear-gradient(135deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 20px),
    var(--color-ink);
}

.forest {
  background:
    linear-gradient(rgba(14, 17, 14, 0.9), rgba(14, 17, 14, 0.94)),
    radial-gradient(circle at 50% 0%, rgba(143, 150, 84, 0.18), transparent 28rem),
    var(--color-ink);
}

.center-heading {
  text-align: center;
  margin-bottom: 1.45rem;
}

.center-heading .section-kicker {
  justify-content: center;
}

.section-note {
  max-width: 740px;
  margin: 0.9rem auto 0;
  color: var(--color-muted);
}

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

.services-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 285px;
  gap: 2.2rem;
  align-items: start;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.7rem;
}

.service-card {
  min-height: 166px;
  padding: 0;
  text-align: center;
  background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 6px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
}

.service-trigger {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 0.65rem;
  width: 100%;
  min-height: 166px;
  padding: 1rem 0.75rem;
  color: var(--color-white);
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: center;
}

.service-trigger:hover .service-icon,
.service-trigger:focus-visible .service-icon {
  color: #b1b86d;
  transform: translateY(-2px);
}

.service-trigger h3 {
  max-width: 12rem;
}

.service-icon {
  display: block;
  width: 54px;
  height: 54px;
  margin: 0 auto 0.75rem;
  color: var(--color-olive);
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: color 160ms ease, transform 160ms ease;
}

.service-detail {
  display: none;
}

.pricing-panel {
  position: sticky;
  top: calc(var(--header-height) + 1.5rem);
  padding: 1.35rem;
  background: linear-gradient(145deg, rgba(143, 150, 84, 0.18), rgba(255, 255, 255, 0.04));
  border: 2px solid var(--color-olive);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.pricing-panel h3 {
  margin-bottom: 1rem;
}

.price-line,
.offer {
  padding-block: 1rem;
  border-top: 1px solid rgba(143, 150, 84, 0.45);
}

.price-line span,
.offer span {
  display: block;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.price-line strong,
.offer strong {
  display: block;
  margin-top: 0.25rem;
  color: var(--color-olive);
  font-size: 1.25rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.offer p,
.fine-print {
  margin: 0.4rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
}

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

.gallery-item {
  position: relative;
  display: block;
  padding: 0;
  overflow: hidden;
  background: var(--color-ink);
  border: 3px solid var(--color-white);
  border-radius: 5px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.16);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 1.33 / 1;
  object-fit: cover;
  transition: transform 220ms ease, opacity 220ms ease;
}

.gallery-item:hover img {
  transform: scale(1.035);
  opacity: 0.78;
}

.gallery-item span {
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.75rem;
  padding: 0.55rem 0.65rem;
  color: var(--color-white);
  background: rgba(0, 0, 0, 0.7);
  border-left: 3px solid var(--color-olive);
  border-radius: var(--radius-small);
  font-size: 0.78rem;
  font-weight: 900;
  text-align: left;
  text-transform: uppercase;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  padding: 1.65rem;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
}

.testimonial-card::before {
  content: "\201C";
  display: block;
  color: var(--color-olive);
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 0.65;
}

.testimonial-card p {
  flex: 1;
  margin: 0 0 1.3rem;
  color: rgba(255, 255, 255, 0.86);
}

.testimonial-card span {
  color: var(--color-olive);
  font-weight: 800;
}

.faq {
  border-top: 1px solid rgba(17, 19, 15, 0.08);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 4rem;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: calc(var(--header-height) + 1.5rem);
}

.faq-intro p:last-child {
  max-width: 440px;
  color: var(--color-muted);
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-list details {
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(17, 19, 15, 0.16);
  border-left: 4px solid var(--color-olive);
  border-radius: 6px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.faq-list summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 64px;
  padding: 1rem 3.2rem 1rem 1.2rem;
  color: var(--color-text);
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  content: "";
  position: absolute;
  right: 1.2rem;
  width: 12px;
  height: 12px;
  border-right: 3px solid var(--color-olive-dark);
  border-bottom: 3px solid var(--color-olive-dark);
  transform: rotate(45deg) translateY(-2px);
  transition: transform 160ms ease;
}

.faq-list details[open] summary::after {
  transform: rotate(225deg) translate(-2px, -2px);
}

.faq-list p {
  margin: 0;
  padding: 0 1.2rem 1.2rem;
  color: var(--color-muted);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 420px;
  gap: 3.5rem;
  align-items: start;
}

.form-panel,
.contact-card {
  min-width: 0;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.4rem;
}

.field {
  display: grid;
  gap: 0.4rem;
}

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

label,
legend {
  color: var(--color-text);
  font-size: 0.85rem;
  font-weight: 900;
  text-transform: uppercase;
}

label span,
legend span {
  color: var(--color-olive-dark);
}

input,
select,
textarea {
  width: 100%;
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(17, 19, 15, 0.24);
  border-radius: var(--radius-small);
  padding: 0.85rem 0.95rem;
}

textarea {
  resize: vertical;
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea,
.contact-method.has-error {
  border-color: #9e3327;
  box-shadow: 0 0 0 3px rgba(158, 51, 39, 0.13);
}

.contact-method {
  margin: 0;
  padding: 0.8rem 0.95rem;
  border: 1px solid rgba(17, 19, 15, 0.24);
  border-radius: var(--radius-small);
}

.contact-method label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-right: 0.8rem;
  font-size: 0.8rem;
  text-transform: none;
}

.contact-method input {
  width: auto;
}

.honeypot {
  display: none;
}

.form-message {
  min-height: 1.4rem;
  margin: 1rem 0;
  color: var(--color-muted);
  font-weight: 800;
}

.form-message.is-error {
  color: #84291f;
}

.form-message.is-ready {
  color: var(--color-olive-dark);
}

.full-button {
  width: 100%;
}

.privacy {
  margin: 0.8rem 0 0;
  color: var(--color-muted);
  font-size: 0.88rem;
}

.contact-card {
  padding: 2rem;
  background: linear-gradient(145deg, #e9e3d4, #f8f5ec);
  border: 1px solid rgba(17, 19, 15, 0.1);
  border-radius: 6px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.12);
}

.contact-card h2 {
  font-size: 2.45rem;
}

.contact-list {
  display: grid;
  gap: 1rem;
  padding: 0;
  margin: 1.4rem 0 2rem;
  list-style: none;
}

.contact-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 0.8rem;
  color: var(--color-muted);
  min-width: 0;
}

.contact-list li > *:last-child {
  min-width: 0;
  overflow-wrap: anywhere;
}

.contact-list li > span:first-child {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--color-white);
  background: var(--color-olive-dark);
  border-radius: 50%;
  font-size: 0.68rem;
  font-weight: 900;
}

.contact-icon {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.contact-list a {
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.contact-list address {
  font-style: normal;
  line-height: 1.35;
}

.social-profiles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0 0 1.6rem;
}

.social-profile {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 44px;
  padding: 0.55rem 0.7rem;
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(17, 19, 15, 0.14);
  border-radius: var(--radius-small);
  font-size: 0.8rem;
  font-weight: 900;
  text-decoration: none;
}

.social-profile svg {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--color-olive-dark);
  stroke-width: 1.9;
}

.social-profile svg path,
.social-profile svg .social-dot {
  fill: var(--color-olive-dark);
  stroke: none;
}

.social-profiles small {
  grid-column: 1 / -1;
  color: var(--color-muted);
  font-size: 0.75rem;
}

.local-badge {
  padding: 1.4rem 1rem;
  text-align: center;
  border-top: 2px solid var(--color-olive);
  border-bottom: 2px solid var(--color-olive);
}

.local-badge strong,
.local-badge span {
  display: block;
  font-weight: 900;
  text-transform: uppercase;
}

.site-footer {
  color: rgba(255, 255, 255, 0.74);
  background: #090a08;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.2rem;
}

.footer-logo img {
  width: 210px;
  height: auto;
  object-fit: contain;
}

.footer-inner p {
  margin: 0;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.9rem;
  align-items: center;
  justify-content: flex-end;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 800;
}

.footer-legal > span,
.footer-legal a,
.footer-legal button {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 800;
}

.footer-legal a,
.footer-legal button {
  background: transparent;
  border: 0;
  padding: 0;
  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(--color-olive);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.88);
}

.lightbox[hidden] {
  display: none;
}

.lightbox figure {
  width: min(100%, 980px);
  margin: 0;
}

.lightbox img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border: 3px solid var(--color-white);
  border-radius: var(--radius);
}

.lightbox figcaption {
  margin-top: 0.8rem;
  color: var(--color-white);
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 48px;
  height: 48px;
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.service-modal,
.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 210;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background: rgba(0, 0, 0, 0.78);
}

.service-modal[hidden],
.legal-modal[hidden] {
  display: none;
}

.service-modal__panel,
.legal-modal__panel {
  position: relative;
  width: min(100%, 640px);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--color-text);
  background:
    linear-gradient(145deg, rgba(244, 241, 232, 0.98), rgba(229, 222, 206, 0.98)),
    var(--color-cream);
  border: 2px solid var(--color-olive);
  border-radius: var(--radius);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

.service-modal__panel .section-kicker,
.legal-modal__panel .section-kicker {
  margin-bottom: 0.7rem;
}

.service-modal__panel h2,
.legal-modal__panel h2 {
  max-width: 34rem;
  margin-bottom: 1rem;
  font-size: 2.35rem;
}

.service-modal__copy,
.legal-modal__copy {
  margin-bottom: 1.4rem;
  color: var(--color-text);
}

.service-modal__copy p,
.legal-modal__copy p {
  margin: 0;
}

.legal-modal__copy p + p {
  margin-top: 0.85rem;
}

.service-modal__close,
.legal-modal__close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  width: 42px;
  height: 42px;
  color: var(--color-white);
  background: var(--color-ink);
  border: 1px solid var(--color-olive);
  border-radius: 50%;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

.back-to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 120;
  display: inline-grid;
  grid-template-columns: 42px auto;
  align-items: center;
  gap: 0.55rem;
  min-height: 52px;
  padding: 0.38rem 0.9rem 0.38rem 0.38rem;
  color: var(--color-white);
  background:
    linear-gradient(145deg, rgba(25, 28, 21, 0.96), rgba(10, 12, 10, 0.96)),
    var(--color-ink);
  border: 1px solid rgba(154, 161, 92, 0.65);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.32);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px) scale(0.96);
  transition: opacity 180ms ease, transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.back-to-top::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: -5px;
  left: 12px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-olive), transparent);
  opacity: 0.8;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.back-to-top:hover {
  border-color: var(--color-olive);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.42);
  transform: translateY(-2px);
}

.back-to-top__mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--color-olive);
  background: rgba(154, 161, 92, 0.12);
  border: 1px solid rgba(154, 161, 92, 0.5);
  border-radius: 50%;
}

.back-to-top svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 5;
}

.back-to-top .grade {
  stroke-width: 4;
}

.back-to-top .track {
  stroke: rgba(255, 255, 255, 0.78);
  stroke-width: 3;
}

.back-to-top__text {
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

.reveal.is-observed {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-observed.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  :root {
    --header-height: 78px;
  }

  .hero {
    min-height: 620px;
  }

  .hero-copy {
    font-size: 1.08rem;
  }

  .contact-card h2 {
    font-size: 2.2rem;
  }

  .menu-toggle {
    display: block;
  }

  .primary-nav {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    display: grid;
    gap: 0;
    padding: 1rem;
    background: rgba(13, 15, 13, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(-120%);
    transition: transform 200ms ease;
  }

  .primary-nav.is-open {
    transform: translateY(0);
  }

  .primary-nav a {
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .split-layout,
  .services-layout,
  .faq-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .faq-intro {
    position: static;
  }

  .pricing-panel {
    position: static;
  }

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

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 1.25rem, var(--container));
  }

  .hero {
    min-height: calc(100svh - var(--header-height));
  }

  h1 {
    max-width: 21rem;
    font-size: clamp(2.25rem, 12vw, 3.2rem);
  }

  h2 {
    max-width: 22rem;
    font-size: clamp(1.9rem, 9vw, 2.35rem);
  }

  .hero-copy {
    font-size: 1rem;
    max-width: 20rem;
  }

  .service-area {
    max-width: 20rem;
  }

  .contact-card h2 {
    font-size: 1.9rem;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(7, 8, 7, 0.94), rgba(7, 8, 7, 0.74));
  }

  .button-row,
  .btn {
    width: 100%;
  }

  .back-to-top {
    right: 0.85rem;
    bottom: 0.85rem;
    grid-template-columns: 42px;
    padding: 0.35rem;
  }

  .back-to-top__text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .values-grid,
  .service-grid,
  .gallery-grid,
  .testimonial-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .contact-method label {
    display: flex;
    margin: 0.4rem 0 0;
  }

  .footer-logo {
    justify-content: center;
  }
}

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

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

  .back-to-top {
    transition: none;
  }
}
