:root {
  --soil: #2f261d;
  --moss: #3f6f53;
  --sage: #9abdaf;
  --mint: #dcefe6;
  --cream: #f7f0df;
  --leaf: #7fb240;
  --lime: #cce96b;
  --clay: #c2673c;
  --ink: #17251a;
  --muted: rgba(23, 37, 26, 0.62);
  --line: rgba(23, 37, 26, 0.14);
  --white: #fff;
  --radius-xl: 42px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --pad: clamp(18px, 4vw, 58px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
  color: var(--ink);
  background:
    radial-gradient(
      circle at 12% 8%,
      rgba(204, 233, 107, 0.38),
      transparent 28rem
    ),
    radial-gradient(
      circle at 92% 12%,
      rgba(154, 189, 175, 0.42),
      transparent 28rem
    ),
    linear-gradient(180deg, #f5f0dc, #e7efdc 40%, #f7f0df);
  overflow-x: hidden;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(23, 37, 26, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 37, 26, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
  z-index: -1;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
h1,
h2,
h3,
h4,
p {
  margin: 0;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background: var(--cream);
}
::-webkit-scrollbar-thumb {
  background: var(--moss);
  border-radius: 999px;
  border: 2px solid var(--cream);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--soil);
}

.skip-link {
  position: absolute;
  left: 14px;
  top: -80px;
  z-index: 200;
  background: var(--soil);
  color: var(--cream);
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 0.875rem;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 14px;
}

*:focus-visible {
  outline: 3px solid var(--leaf);
  outline-offset: 3px;
  border-radius: 4px;
}

.panel,
.mini-stat,
.service-card,
.tool-card,
.step,
.contact-card,
.contact-form,
.legal-card,
.value-card,
.price-intro-card,
.discount-card,
.before-block,
.method-step {
  border: 2px solid var(--ink);
  border-radius: var(--radius-xl);
  box-shadow: 8px 8px 0 rgba(47, 38, 29, 0.92);
  overflow: hidden;
}

.kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 8px;
  padding: 8px 14px;
  border: 2px solid currentColor;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.kicker::before {
  content: '✿';
}

.section-title {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 28px;
  align-items: start;
  margin-bottom: 40px;
}
.section-title .kicker {
  color: var(--clay);
}
.section-title h2,
.cta-band h2,
.split-section h2 {
  margin: 20px 0 0;
  font-size: clamp(44px, 7.5vw, 108px);
  line-height: 0.84;
  letter-spacing: -0.085em;
  font-weight: 1000;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 14px 22px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 950;
  background: var(--cream);
  box-shadow: 4px 4px 0 var(--soil);
  cursor: pointer;
  transition:
    transform 0.22s,
    box-shadow 0.22s;
  text-align: center;
}
.button.primary {
  background: var(--leaf);
  color: var(--white);
}
.button.dark {
  background: var(--soil);
  color: var(--cream);
}
.button.ghost {
  background: transparent;
}
.button:hover,
.header-cta:hover {
  transform: translateY(3px);
  box-shadow: 1px 1px 0 var(--soil);
}
.button:focus-visible {
  outline: 3px solid var(--leaf);
  outline-offset: 3px;
}
.button-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: center;
  padding: 14px var(--pad);
  background: rgba(247, 240, 223, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(23, 37, 26, 0.12);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  font-size: 1.25rem;
  font-weight: 950;
  letter-spacing: -0.045em;
}
.brand img {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid var(--ink);
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--line);
  border-radius: 999px;
}
.site-nav a {
  display: inline-flex;
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.8125rem;
  font-weight: 850;
  white-space: nowrap;
  transition:
    background 0.18s,
    color 0.18s;
}
.site-nav a:hover,
.site-nav a.active {
  background: var(--soil);
  color: var(--cream);
}
.header-cta {
  justify-self: end;
  display: inline-flex;
  background: var(--leaf);
  color: var(--white);
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 950;
  font-size: 0.875rem;
  box-shadow: 4px 4px 0 var(--soil);
  transition:
    transform 0.22s,
    box-shadow 0.22s;
}
.menu-toggle {
  display: none;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--mint);
  padding: 10px 16px;
  font-weight: 950;
  font-family: inherit;
  font-size: 0.875rem;
  cursor: pointer;
}

.hero {
  min-height: calc(100vh - 72px);
  padding: 22px var(--pad) 54px;
  display: grid;
  grid-template-columns: 1.05fr 0.75fr 0.62fr;
  grid-template-rows: auto 1fr auto;
  gap: 18px;
}
.hero-main {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
  background: var(--mint);
  padding: clamp(28px, 5vw, 68px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero h1,
.page-hero h1 {
  max-width: 10ch;
  margin: 28px 0 22px;
  font-size: clamp(52px, 9vw, 140px);
  line-height: 0.82;
  letter-spacing: -0.09em;
  font-weight: 1000;
}
.hero-main p,
.page-hero p {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  line-height: 1.3;
  letter-spacing: -0.03em;
  margin: 0 0 28px;
}
.hero-actions,
.button-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-photo {
  grid-column: 3 / 4;
  grid-row: 1 / 4;
  position: relative;
  min-height: 650px;
  background: var(--sage);
}
.vertical-label {
  position: absolute;
  top: 24px;
  left: 18px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  padding: 12px 9px;
  border-radius: 999px;
  background: var(--clay);
  color: var(--cream);
  border: 2px solid var(--ink);
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.floating-chip {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: 22px;
  padding: 14px 18px;
  font-weight: 950;
  font-size: 0.875rem;
}
.mini-stat {
  background: var(--cream);
  padding: 22px;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.mini-stat:nth-of-type(2) {
  background: var(--lime);
}
.stat-number {
  display: block;
  font-size: clamp(48px, 7vw, 84px);
  line-height: 0.78;
  letter-spacing: -0.09em;
  font-weight: 1000;
}
.stat-label {
  max-width: 14ch;
  font-size: 0.9375rem;
  font-weight: 900;
}

.marquee {
  overflow: hidden;
  background: var(--soil);
  color: var(--cream);
  border-block: 2px solid var(--ink);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee span {
  display: block;
  padding: 16px 30px;
  font-size: clamp(24px, 5vw, 60px);
  line-height: 1;
  font-weight: 1000;
  letter-spacing: -0.07em;
}
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.split-section {
  padding: clamp(70px, 10vw, 130px) var(--pad);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: end;
}
.split-section p {
  color: var(--muted);
  font-size: clamp(1.125rem, 2vw, 1.75rem);
  line-height: 1.25;
  letter-spacing: -0.035em;
}

.trust-strip {
  padding: clamp(50px, 7vw, 90px) var(--pad);
  background: var(--soil);
  color: var(--cream);
}
.trust-strip .section-title .kicker {
  color: var(--lime);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.trust-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}
.trust-card .trust-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}
.trust-card h3 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  letter-spacing: -0.04em;
  margin-bottom: 10px;
}
.trust-card p {
  color: rgba(247, 240, 223, 0.7);
  font-size: 0.9375rem;
  line-height: 1.5;
}

.services-preview {
  padding: clamp(60px, 8vw, 105px) var(--pad);
  background: var(--soil);
  color: var(--cream);
}
.services-preview .section-title .kicker {
  color: var(--lime);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card {
  background: var(--cream);
  color: var(--ink);
}
.service-card img {
  height: 280px;
  border-bottom: 2px solid var(--ink);
}
.service-card-content {
  padding: 22px;
}
.service-card span {
  display: block;
  color: var(--clay);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 950;
}
.service-card h3 {
  margin: 10px 0 10px;
  font-size: clamp(1.375rem, 2.5vw, 2.25rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
}
.service-card p {
  color: var(--muted);
  line-height: 1.5;
  font-size: 0.9375rem;
}

.services-extended {
  padding: clamp(60px, 8vw, 100px) var(--pad);
}
.services-ext-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
}
.ext-card {
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 6px 6px 0 rgba(47, 38, 29, 0.88);
  background: var(--cream);
}
.ext-card img {
  height: 220px;
  border-bottom: 2px solid var(--ink);
}
.ext-card-body {
  padding: 18px 20px;
}
.ext-card-body span {
  display: block;
  color: var(--clay);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 950;
}
.ext-card-body h3 {
  margin: 8px 0 8px;
  font-size: clamp(1.25rem, 2.2vw, 1.875rem);
  line-height: 0.9;
  letter-spacing: -0.055em;
}
.ext-card-body p {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.5;
}

.tools-strip {
  padding: clamp(70px, 10vw, 130px) var(--pad);
}
.tools-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr 1fr;
  gap: 18px;
  margin-top: 36px;
}
.tool-card {
  min-height: 430px;
  background: var(--mint);
  position: relative;
}
.tool-card.tall {
  grid-row: span 2;
}
.tool-card .tool-info {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 18px;
  background: rgba(247, 240, 223, 0.96);
  border: 2px solid var(--ink);
  border-radius: 24px;
}
.tool-card.text-only {
  padding: 28px;
  background: var(--lime);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.tool-card.text-only h3 {
  font-size: clamp(2rem, 5vw, 4.5rem);
  line-height: 0.88;
  letter-spacing: -0.08em;
  margin: 16px 0 12px;
}
.tool-card span {
  display: block;
  color: var(--clay);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 950;
}
.tool-card h3 {
  margin: 10px 0 8px;
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
}
.tool-card p {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.5;
}

.seasonal-section {
  padding: clamp(70px, 10vw, 130px) var(--pad);
  background: var(--mint);
}
.seasonal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 40px;
}
.season-card {
  border: 2px solid var(--ink);
  border-radius: var(--radius-xl);
  box-shadow: 8px 8px 0 rgba(47, 38, 29, 0.88);
  overflow: hidden;
  background: var(--cream);
}
.season-card img {
  height: 260px;
  border-bottom: 2px solid var(--ink);
}
.season-card-body {
  padding: 26px 28px;
}
.season-card-body .season-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--lime);
  margin-bottom: 14px;
}
.season-card-body h3 {
  font-size: clamp(1.5rem, 2.8vw, 2.5rem);
  line-height: 0.88;
  letter-spacing: -0.065em;
  margin-bottom: 12px;
}
.season-card-body p {
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.55;
}

.inspiration-section {
  padding: clamp(70px, 10vw, 130px) var(--pad);
}
.inspiration-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 320px 320px;
  gap: 18px;
  margin-top: 40px;
}
.insp-panel {
  border: 2px solid var(--ink);
  border-radius: var(--radius-xl);
  box-shadow: 6px 6px 0 rgba(47, 38, 29, 0.88);
  overflow: hidden;
  position: relative;
}
.insp-panel img {
  height: 100%;
}
.insp-panel.tall {
  grid-row: span 2;
}
.insp-panel.wide {
  grid-column: span 2;
}
.insp-label {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 8px 14px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(47, 38, 29, 0.55);
  backdrop-filter: blur(8px);
}

.process {
  padding: clamp(70px, 10vw, 130px) var(--pad);
  background: var(--soil);
  color: var(--cream);
}
.process .section-title .kicker {
  color: var(--lime);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 40px;
}
.step {
  background: var(--cream);
  color: var(--ink);
  padding: 28px;
}
.step .num {
  color: var(--leaf);
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 0.8;
  letter-spacing: -0.09em;
  font-weight: 1000;
  display: block;
  margin-bottom: 16px;
}
.step h3 {
  font-size: clamp(1.25rem, 2.2vw, 1.875rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
  margin-bottom: 10px;
}
.step p {
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.5;
}

.full-bleed {
  margin: 0 var(--pad) clamp(70px, 9vw, 120px);
  min-height: 580px;
  border: 2px solid var(--ink);
  border-radius: var(--radius-xl);
  box-shadow: 8px 8px 0 rgba(47, 38, 29, 0.92);
  overflow: hidden;
  position: relative;
  margin-top: 4rem;
}
.full-bleed::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(47, 38, 29, 0.68), transparent 65%);
}
.full-bleed-note {
  position: absolute;
  z-index: 1;
  left: clamp(22px, 5vw, 56px);
  bottom: clamp(22px, 5vw, 56px);
  max-width: 540px;
  color: var(--white);
}
.full-bleed-note h2 {
  margin-bottom: 14px;
  font-size: clamp(2.25rem, 6vw, 6rem);
  line-height: 0.86;
  letter-spacing: -0.08em;
}
.full-bleed-note p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.1875rem;
  line-height: 1.35;
}

.cta-band {
  margin: 0 var(--pad) clamp(70px, 10vw, 130px);
  padding: clamp(28px, 5vw, 60px);
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  background: var(--lime);
  border: 2px solid var(--ink);
  border-radius: var(--radius-xl);
  box-shadow: 8px 8px 0 rgba(47, 38, 29, 0.92);
}
.cta-band .kicker {
  color: var(--moss);
}

.page-hero {
  margin: 26px var(--pad);
  padding: clamp(36px, 6vw, 80px);
}
.page-hero.alt {
  background: var(--lime);
}
.page-hero.warm {
  background: var(--cream);
}
.page-hero.sage {
  background: var(--sage);
}
.page-hero.dark {
  background: var(--soil);
  color: var(--white);
}
.page-hero.dark .kicker {
  color: var(--lime);
}
.page-hero.dark h1 {
  color: var(--white);
}
.page-hero.dark p {
  color: rgba(255, 255, 255, 0.78);
}
.page-hero h1 {
  font-size: clamp(2.75rem, 8vw, 9rem);
  line-height: 0.82;
  letter-spacing: -0.09em;
  font-weight: 1000;
  margin: 24px 0 18px;
}
.page-hero p {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.4375rem);
  line-height: 1.3;
  letter-spacing: -0.03em;
}

.pricing-intro {
  padding: clamp(60px, 8vw, 100px) var(--pad);
}
.pricing-intro > p {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.0625rem;
  line-height: 1.65;
  margin-bottom: 32px;
}
.pricing-intro-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 36px;
}
.price-intro-card {
  padding: 32px 36px;
  background: var(--cream);
}
.price-intro-card.featured {
  background: var(--soil);
  color: var(--white);
}
.price-intro-card.featured p {
  color: rgba(255, 255, 255, 0.75);
}
.price-intro-card h3 {
  font-size: clamp(1.75rem, 3vw, 3rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
  margin: 12px 0 10px;
}
.price-intro-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--muted);
  max-width: 380px;
}
.price-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border: 1.5px solid currentColor;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pricing-section {
  padding: 0 var(--pad) clamp(70px, 8vw, 110px);
}
.pricing-section h2 {
  font-size: clamp(2rem, 4vw, 3.75rem);
  line-height: 0.88;
  letter-spacing: -0.075em;
  font-weight: 1000;
  margin-bottom: 28px;
}
.pricing-table-wrap {
  overflow-x: auto;
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: 8px 8px 0 rgba(47, 38, 29, 0.92);
}
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--cream);
}
.pricing-table thead {
  background: var(--soil);
  color: var(--cream);
}
.pricing-table th {
  padding: 18px 22px;
  text-align: left;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 900;
}
.pricing-table th:nth-child(3),
.pricing-table th:nth-child(4) {
  text-align: right;
}
.pricing-table td {
  padding: 14px 22px;
  border-top: 1px solid var(--line);
  font-size: 0.9375rem;
  vertical-align: top;
  line-height: 1.45;
}
.pricing-table td:first-child {
  font-weight: 900;
  white-space: nowrap;
}
.pricing-table td:nth-child(3),
.pricing-table td:nth-child(4) {
  font-weight: 950;
  color: var(--moss);
  text-align: right;
  white-space: nowrap;
}
.pricing-table tbody tr:hover {
  background: var(--mint);
}
.pricing-table tbody tr:last-child td {
  border-radius: 0 0 0 var(--radius-lg);
}
.pricing-table tbody tr:last-child td:last-child {
  border-radius: 0 0 var(--radius-lg) 0;
}

.discounts-section {
  padding: 0 var(--pad) clamp(70px, 8vw, 110px);
}
.discounts-section h2 {
  font-size: clamp(1.75rem, 3.5vw, 3.25rem);
  line-height: 0.9;
  letter-spacing: -0.07em;
  font-weight: 1000;
  margin-bottom: 28px;
}
.discount-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.discount-card {
  padding: 32px 36px;
  background: var(--cream);
}
.discount-card.featured {
  background: var(--leaf);
  color: var(--white);
}
.discount-card.featured p {
  color: rgba(255, 255, 255, 0.82);
}
.discount-percent {
  font-size: clamp(3.5rem, 6vw, 6rem);
  line-height: 0.8;
  letter-spacing: -0.1em;
  font-weight: 1000;
  display: block;
  margin-bottom: 12px;
}
.discount-card h3 {
  font-size: clamp(1.375rem, 2.5vw, 2.25rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
  margin-bottom: 10px;
}
.discount-card p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--muted);
}

.service-sections {
  padding: 0 var(--pad) clamp(70px, 8vw, 110px);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.service-section-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 440px;
  background: var(--cream);
}
.service-section-card.alt {
  direction: rtl;
}
.service-section-card.alt > * {
  direction: ltr;
}
.service-section-card img {
  min-height: 380px;
}
.service-section-body {
  padding: clamp(28px, 4vw, 54px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.service-section-body .kicker {
  color: var(--moss);
}
.service-section-body h2 {
  font-size: clamp(1.75rem, 3.5vw, 3.5rem);
  line-height: 0.88;
  letter-spacing: -0.07em;
  margin: 8px 0;
}
.service-section-body .subtitle {
  font-size: 1rem;
  font-weight: 700;
  color: var(--moss);
  margin: 0;
}
.service-section-body p {
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}
.for-whom {
  display: flex;
  align-items: start;
  gap: 10px;
  padding: 14px 18px;
  background: var(--mint);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-md);
}
.for-whom strong {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--moss);
  white-space: nowrap;
}
.for-whom span {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.5;
}

.before-contact {
  padding: clamp(60px, 8vw, 110px) var(--pad);
  background: var(--soil);
  color: var(--white);
}
.before-contact .section-title .kicker {
  color: var(--lime);
}
.before-contact .section-title h2 {
  color: var(--white);
}
.before-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
}
.before-block {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-xl);
  box-shadow: none;
  padding: 28px 26px;
}
.before-block .num {
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 1000;
  line-height: 0.8;
  letter-spacing: -0.1em;
  color: var(--lime);
  display: block;
  margin-bottom: 16px;
}
.before-block h3 {
  font-size: clamp(1.125rem, 2vw, 1.625rem);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 10px;
  color: var(--white);
}
.before-block p {
  color: rgba(247, 240, 223, 0.7);
  font-size: 0.875rem;
  line-height: 1.55;
  margin-bottom: 14px;
}
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.tag {
  padding: 5px 10px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.08);
}

.method-section {
  padding: clamp(60px, 8vw, 110px) var(--pad);
}
.method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
}
.method-step {
  background: var(--cream);
  padding: 30px 28px;
}
.method-step .step-num {
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 1000;
  line-height: 0.8;
  letter-spacing: -0.1em;
  color: var(--sage);
  display: block;
  margin-bottom: 16px;
}
.method-step h3 {
  font-size: clamp(1.125rem, 2vw, 1.75rem);
  letter-spacing: -0.05em;
  line-height: 0.95;
  margin-bottom: 10px;
}
.method-step p {
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.55;
}

.services-cta {
  padding: 0 var(--pad) clamp(70px, 10vw, 130px);
}
.services-cta-inner {
  padding: clamp(36px, 5vw, 70px);
  background: var(--soil);
  color: var(--white);
  border: 2px solid var(--ink);
  border-radius: var(--radius-xl);
  box-shadow: 8px 8px 0 rgba(47, 38, 29, 0.92);
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}
.services-cta-inner h2 {
  font-size: clamp(2rem, 4.5vw, 5.5rem);
  line-height: 0.86;
  letter-spacing: -0.08em;
  max-width: 16ch;
  color: var(--white);
}
.services-cta-inner p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  line-height: 1.55;
  max-width: 420px;
  margin: 16px 0 28px;
}
.services-cta-text {
  flex: 1;
}

.about-layout {
  padding: clamp(60px, 9vw, 120px) var(--pad);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
}
.about-image {
  min-height: 600px;
  border: 2px solid var(--ink);
  border-radius: var(--radius-xl);
  box-shadow: 8px 8px 0 rgba(47, 38, 29, 0.92);
  overflow: hidden;
}
.about-copy {
  background: var(--cream);
  padding: clamp(28px, 4.5vw, 58px);
}
.about-copy h2 {
  margin: 18px 0 18px;
  font-size: clamp(2.25rem, 5vw, 5.5rem);
  line-height: 0.86;
  letter-spacing: -0.085em;
}
.about-copy p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 16px;
}
.check-list li {
  padding: 14px 0;
  border-top: 1px solid var(--line);
  font-weight: 850;
  font-size: 0.9375rem;
}
.check-list li::before {
  content: '✓ ';
  color: var(--leaf);
}

.why-rent {
  padding: var(--pad) clamp(70px, 9vw, 120px);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.why-card {
  border: 2px solid var(--ink);
  border-radius: var(--radius-xl);
  box-shadow: 8px 8px 0 rgba(47, 38, 29, 0.92);
  overflow: hidden;
  background: var(--cream);
}
.why-card.dark-card {
  background: var(--soil);
  color: var(--white);
}
.why-card.dark-card p {
  color: rgba(255, 255, 255, 0.72);
}
.why-card.dark-card h3 {
  color: var(--white);
}
.why-card img {
  height: 300px;
  border-bottom: 2px solid var(--ink);
}
.why-card-body {
  padding: 28px 32px;
}
.why-card-body h3 {
  font-size: clamp(1.5rem, 3vw, 3rem);
  line-height: 0.9;
  letter-spacing: -0.07em;
  margin-bottom: 12px;
}
.why-card-body p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--muted);
}

.values {
  padding: 0 var(--pad) clamp(70px, 9vw, 120px);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.value-card {
  padding: 26px;
  background: var(--mint);
}
.value-card span {
  display: block;
  color: var(--clay);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 950;
}
.value-card h3 {
  margin: 10px 0 10px;
  font-size: clamp(1.375rem, 2.5vw, 2.25rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
}
.value-card p {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.55;
}

.about-philosophy {
  padding: 0 var(--pad) clamp(70px, 9vw, 120px);
  background: var(--moss);
  color: var(--white);
}
.about-philosophy.section-pad {
  padding: clamp(60px, 8vw, 110px) var(--pad);
}
.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 36px;
}
.philosophy-card {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 28px;
  background: rgba(255, 255, 255, 0.07);
}
.philosophy-card h3 {
  font-size: clamp(1.375rem, 2.5vw, 2rem);
  letter-spacing: -0.05em;
  margin-bottom: 10px;
  color: var(--lime);
}
.philosophy-card p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.contact-layout {
  padding: clamp(60px, 9vw, 120px) var(--pad);
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 18px;
}
.contact-form {
  background: var(--cream);
  padding: clamp(26px, 4vw, 50px);
  display: grid;
  gap: 18px;
}
.contact-form h2 {
  font-size: clamp(1.75rem, 3.5vw, 3.25rem);
  line-height: 0.9;
  letter-spacing: -0.07em;
}
.contact-card {
  background: var(--cream);
  padding: clamp(26px, 4vw, 50px);
}
.contact-card h2 {
  margin: 18px 0 22px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.86;
  letter-spacing: -0.08em;
}
.contact-card img {
  height: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  margin-top: 22px;
}
.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}
.contact-detail-item {
  display: flex;
  align-items: start;
  gap: 12px;
}
.contact-detail-item .detail-label {
  font-size: 0.75rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--moss);
  min-width: 60px;
  padding-top: 3px;
}
.contact-detail-item a,
.contact-detail-item span {
  font-size: 1rem;
  color: var(--ink);
  font-weight: 700;
}
label {
  display: grid;
  gap: 7px;
  font-weight: 900;
  font-size: 0.875rem;
}
input,
textarea,
select {
  width: 100%;
  border: 2px solid var(--ink);
  border-radius: var(--radius-md);
  background: var(--white);
  padding: 13px 16px;
  font: inherit;
  color: var(--ink);
  outline: none;
  font-size: 1rem;
  transition: box-shadow 0.18s;
}
textarea {
  min-height: 160px;
  resize: vertical;
}
input:focus,
textarea:focus,
select:focus {
  box-shadow: 0 0 0 4px rgba(127, 178, 64, 0.3);
}
.form-note {
  color: var(--muted);
  font-size: 0.8125rem;
  line-height: 1.6;
}

.legal-card {
  margin: 28px var(--pad) clamp(70px, 9vw, 120px);
  padding: clamp(30px, 5vw, 68px);
  background: var(--cream);
}
.legal-card h1 {
  margin: 0 0 32px;
  font-size: clamp(2.5rem, 7vw, 8rem);
  line-height: 0.84;
  letter-spacing: -0.085em;
}
.legal-card h2 {
  margin: 36px 0 14px;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 0.9;
  letter-spacing: -0.065em;
}
.legal-card h3 {
  margin: 24px 0 10px;
  font-size: clamp(1.125rem, 2vw, 1.625rem);
  letter-spacing: -0.045em;
}
.legal-card p,
.legal-card li {
  max-width: 860px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 12px;
}
.legal-card ul {
  padding-left: 1.25rem;
}
.legal-card ul li {
  list-style: disc;
}
.legal-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.legal-meta span {
  font-size: 0.875rem;
  color: var(--muted);
}
.legal-meta strong {
  color: var(--ink);
}
.cookie-controls {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.manage-status {
  padding: 16px 22px;
  background: var(--mint);
  border: 2px solid var(--moss);
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--moss);
  margin-bottom: 28px;
}

.notfound {
  padding: clamp(60px, 10vw, 120px) var(--pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}
.notfound-text .error-code {
  font-size: clamp(6rem, 14vw, 14rem);
  font-weight: 1000;
  line-height: 0.8;
  letter-spacing: -0.1em;
  color: var(--leaf);
  display: block;
}
.notfound-text h1 {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.9;
  letter-spacing: -0.075em;
  margin: 16px 0 14px;
}
.notfound-text p {
  color: var(--muted);
  font-size: 1.0625rem;
  line-height: 1.6;
  margin-bottom: 28px;
}
.notfound-image {
  min-height: 500px;
  border: 2px solid var(--ink);
  border-radius: var(--radius-xl);
  box-shadow: 8px 8px 0 rgba(47, 38, 29, 0.92);
  overflow: hidden;
}

.site-footer {
  padding: clamp(42px, 6vw, 80px) var(--pad) 28px;
  background: var(--soil);
  color: var(--cream);
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 32px;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--cream);
  font-size: 1.375rem;
  font-weight: 950;
  letter-spacing: -0.05em;
}
.footer-brand img {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--sage);
}
.site-footer p {
  color: rgba(247, 240, 223, 0.65);
  font-size: 0.9375rem;
  line-height: 1.5;
  margin-top: 14px;
}
.site-footer h3 {
  margin: 0 0 16px;
  color: var(--lime);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  font-weight: 950;
}
.site-footer a {
  display: block;
  margin: 0 0 10px;
  color: rgba(247, 240, 223, 0.7);
  font-size: 0.9375rem;
  transition: color 0.18s;
}
.site-footer a:hover {
  color: var(--cream);
}
.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(247, 240, 223, 0.14);
  color: rgba(247, 240, 223, 0.5);
  font-size: 0.8125rem;
}

.cookie-banner {
  position: fixed;
  left: var(--pad);
  right: var(--pad);
  bottom: 18px;
  z-index: 100;
  display: none;
  align-items: start;
  justify-content: space-between;
  gap: 24px;
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: 8px 8px 0 rgba(47, 38, 29, 0.92);
  padding: 22px 26px;
}
.cookie-banner.is-visible {
  display: flex;
}
.cookie-text strong {
  font-size: 1rem;
  font-weight: 950;
}
.cookie-text p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.55;
  max-width: 560px;
}
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  flex-shrink: 0;
  align-items: center;
}
.cookie-actions .button {
  min-height: 44px;
  padding: 11px 16px;
  font-size: 0.875rem;
}

.site-toast {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 160;
  max-width: min(420px, calc(100vw - 40px));
  padding: 14px 20px;
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  background: var(--lime);
  color: var(--ink);
  font-weight: 900;
  font-family: inherit;
  font-size: 0.9375rem;
  line-height: 1.45;
  pointer-events: none;
  box-shadow: 4px 4px 0 rgba(47, 38, 29, 0.85);
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}
.site-toast--visible {
  opacity: 1;
  transform: translateY(0);
}
.site-toast--success {
  background: var(--mint);
}
.site-toast--cookie {
  background: var(--lime);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1200px) {
  .values {
    grid-template-columns: repeat(3, 1fr);
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .inspiration-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .insp-panel.tall {
    grid-row: auto;
  }
  .insp-panel.wide {
    grid-column: auto;
  }
  .inspiration-grid .insp-panel {
    min-height: 260px;
    height: 260px;
  }
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr 1fr;
  }
  .hero-main {
    grid-column: 1 / -1;
  }
  .hero-photo {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 500px;
  }
  .service-grid,
  .services-ext-grid,
  .tools-grid,
  .seasonal-grid,
  .process-grid,
  .before-grid,
  .method-grid,
  .why-grid,
  .philosophy-grid {
    grid-template-columns: 1fr;
  }
  .tool-card.tall {
    grid-row: auto;
  }
  .tool-card {
    min-height: 400px;
  }
  .section-title {
    grid-template-columns: 1fr;
  }
  .section-title h2 {
    margin-top: 8px;
  }
  .about-layout,
  .contact-layout,
  .split-section {
    grid-template-columns: 1fr;
  }
  .service-section-card {
    grid-template-columns: 1fr;
  }
  .service-section-card.alt {
    direction: ltr;
  }
  .service-section-card img {
    min-height: 280px;
    height: 280px;
  }
  .discount-grid,
  .pricing-intro-cards {
    grid-template-columns: 1fr;
  }
  .services-cta-inner {
    flex-direction: column;
    align-items: start;
  }
  .cta-band {
    flex-direction: column;
    align-items: start;
  }
  .notfound {
    grid-template-columns: 1fr;
  }
  .notfound-image {
    min-height: 300px;
    height: 300px;
  }
  .site-footer {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }
  .menu-toggle {
    display: inline-flex;
  }
  .site-nav {
    grid-column: 1 / -1;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border-radius: var(--radius-lg);
  }
  .site-nav.is-open {
    display: flex;
  }
  .site-nav a {
    padding: 14px 18px;
    font-size: 1rem;
  }
  .header-cta {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 16px;
  }
  .mini-stat {
    min-height: 130px;
  }
  .hero-photo {
    min-height: 380px;
  }
  .seasonal-grid {
    grid-template-columns: 1fr;
  }
  .values {
    grid-template-columns: 1fr 1fr;
  }
  .service-section-card {
    grid-template-columns: 1fr;
  }
  .pricing-table thead {
    display: none;
  }
  .pricing-table tbody tr {
    display: block;
    padding: 18px 20px;
    border-top: none;
    border-bottom: 1px solid var(--line);
  }
  .pricing-table td {
    display: flex;
    justify-content: space-between;
    align-items: start;
    padding: 6px 0;
    border: none;
    font-size: 0.875rem;
  }
  .pricing-table td::before {
    content: attr(data-label);
    font-weight: 900;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--muted);
    flex-shrink: 0;
    margin-right: 14px;
    padding-top: 2px;
  }
  .pricing-table td:first-child {
    font-size: 1.0625rem;
    font-weight: 950;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 6px;
  }
  .pricing-table td:first-child::before {
    display: none;
  }
  .pricing-table td:nth-child(3),
  .pricing-table td:nth-child(4) {
    text-align: right;
  }
  .full-bleed {
    min-height: 440px;
  }
  .full-bleed::after {
    background: linear-gradient(0deg, rgba(47, 38, 29, 0.72), transparent 70%);
  }
  .full-bleed-note {
    left: 22px;
    right: 22px;
    top: auto;
    bottom: 22px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: start;
  }
  .cookie-actions {
    width: 100%;
  }
  .cookie-actions .button {
    flex: 1;
  }
  .site-footer {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
  }
  .before-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .values {
    grid-template-columns: 1fr;
  }
  .trust-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .marquee-track {
    animation: none;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
