﻿:root {
  --ink: #202020;
  --muted: #68635d;
  --line: #ebe4dc;
  --paper: #fffaf3;
  --soft: #fff0df;
  --green: #2d7656;
  --green-2: #65a477;
  --orange: #ff750c;
  --orange-2: #ffb36c;
  --pink: #cf5171;
  --gold: #f4b23e;
  --blue: #316e84;
  --white: #ffffff;
  --charcoal: #1f2022;
  --shadow: 0 22px 55px rgba(32, 32, 32, .14);
  --radius: 8px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  color-scheme: light;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 8%, rgba(255, 117, 12, .12), transparent 24rem),
    linear-gradient(180deg, #fffaf3 0%, #fff 44%, #fffaf3 100%);
  line-height: 1.55;
}

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

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

p { margin: 0 0 1rem; }

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--white);
  z-index: 20;
}

.skip-link:focus { left: 12px; }

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

.header-inner {
  min-height: 108px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-logo {
  width: auto;
  height: 92px;
  max-width: 205px;
  object-fit: contain;
}

.footer-brand .brand-logo {
  filter: brightness(0) invert(1);
  height: 86px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: .95rem;
}

.nav a {
  color: var(--muted);
  font-weight: 700;
}

.nav a.button {
  color: #ffffff;
}

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

.nav a.button:hover,
.nav a.button:focus {
  color: #ffffff;
}

.menu-button {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius);
  width: 44px;
  height: 44px;
  font-size: 1.3rem;
}

.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 0;
  border-radius: var(--radius);
  background: var(--orange);
  color: var(--white);
  font-weight: 800;
  cursor: pointer;
  box-shadow: none;
}

.button:hover,
.button:focus { background: #df5e00; }

.button.secondary {
  background: var(--white);
  color: var(--ink);
  border: 1px solid #d9d0c4;
}

.button.secondary:hover,
.button.secondary:focus { background: #fff4e8; }

.button.gold {
  background: var(--charcoal);
  color: var(--white);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 56px 0 42px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.96) 0%, rgba(255,246,235,.94) 52%, rgba(255,231,206,.86) 100%);
}

.hero-photo {
  min-height: calc(100svh - 92px);
  padding: 0;
  display: grid;
  align-items: stretch;
  background: var(--charcoal);
}

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

.hero-bg {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(12, 13, 13, .86) 0%, rgba(12, 13, 13, .68) 38%, rgba(12, 13, 13, .22) 68%, rgba(12, 13, 13, .06) 100%),
    linear-gradient(0deg, rgba(12, 13, 13, .38), rgba(12, 13, 13, .08) 42%);
}

.hero-photo-inner {
  position: relative;
  z-index: 1;
  min-height: calc(100svh - 92px);
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(280px, .34fr);
  gap: 34px;
  align-items: end;
  padding-top: 72px;
  padding-bottom: 54px;
}

.hero-copy {
  max-width: 760px;
  color: var(--white);
}

.hero-copy .eyebrow {
  background: rgba(255, 117, 12, .16);
  border-color: rgba(255, 179, 108, .55);
  color: #ffd7b8;
}

.hero-copy h1 {
  max-width: 760px;
  text-wrap: balance;
  text-shadow: 0 3px 22px rgba(0,0,0,.35);
}

.hero-copy .hero-subtitle {
  max-width: 650px;
  color: rgba(255,255,255,.88);
  font-size: clamp(1.12rem, 2vw, 1.42rem);
  text-shadow: 0 2px 14px rgba(0,0,0,.35);
}

.button.secondary.light {
  background: rgba(255,255,255,.12);
  color: var(--white);
  border-color: rgba(255,255,255,.52);
}

.button.secondary.light:hover,
.button.secondary.light:focus {
  background: rgba(255,255,255,.22);
}

.hero-proof {
  display: grid;
  gap: 10px;
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.66);
  box-shadow: 0 24px 55px rgba(0,0,0,.28);
}

.hero-proof div {
  display: grid;
  gap: 2px;
  padding: 13px 14px;
  border-radius: var(--radius);
  background: #fff8f0;
  border: 1px solid #f1dfcf;
}

.hero-proof strong {
  color: var(--orange);
  font-size: 1.28rem;
  line-height: 1.05;
}

.hero-proof span {
  color: var(--ink);
  font-weight: 700;
  font-size: .95rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: 46px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid #ffd2aa;
  background: rgba(255,255,255,.7);
  color: #aa4700;
  font-weight: 800;
  font-size: .88rem;
  margin-bottom: 16px;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.1;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.5rem, 5vw, 5.15rem);
  letter-spacing: 0;
}

.hero-subtitle {
  margin: 18px 0 24px;
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
  max-width: 740px;
}

.trust-item {
  padding: 16px;
  background: rgba(255,255,255,.86);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.trust-item strong {
  display: block;
  color: var(--ink);
  font-size: 1.25rem;
}

.hero-media {
  position: relative;
  border-radius: var(--radius);
  overflow: visible;
  box-shadow: none;
  background: transparent;
}

.hero-media img {
  width: 100%;
  aspect-ratio: 14 / 9;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 8px solid var(--white);
}

.hero-note {
  position: absolute;
  left: -18px;
  bottom: 22px;
  width: min(280px, 60%);
  padding: 16px;
  border-radius: var(--radius);
  background: var(--charcoal);
  color: var(--white);
  box-shadow: 0 18px 36px rgba(0,0,0,.2);
}

.hero-note strong {
  display: block;
  color: var(--orange-2);
  font-size: 1.55rem;
}

.order-card {
  position: absolute;
  right: -14px;
  top: 18px;
  width: min(260px, 56%);
  padding: 14px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 36px rgba(0,0,0,.12);
}

.order-card small {
  color: var(--muted);
  font-weight: 800;
}

.order-card ul {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--ink);
  font-size: .92rem;
}

section { padding: 70px 0; }

.operation-strip {
  padding: 0;
  background: var(--charcoal);
  color: var(--white);
}

.operation-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid rgba(255,255,255,.14);
  border-right: 1px solid rgba(255,255,255,.14);
}

.operation-grid div {
  min-height: 150px;
  padding: 26px;
  border-right: 1px solid rgba(255,255,255,.14);
  display: grid;
  align-content: center;
  gap: 6px;
}

.operation-grid div:last-child { border-right: 0; }

.operation-grid span {
  color: var(--orange-2);
  font-weight: 900;
  text-transform: uppercase;
  font-size: .78rem;
}

.operation-grid strong {
  font-size: 1.25rem;
}

.operation-grid p {
  color: rgba(255,255,255,.72);
  margin: 0;
}

.heritage-section {
  padding: 64px 0;
  background: #fffaf3;
}

.heritage-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  gap: 34px;
  align-items: center;
}

.heritage-grid h2 {
  max-width: 720px;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
}

.heritage-grid p {
  max-width: 640px;
  color: var(--muted);
  margin-top: 14px;
}

.heritage-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.heritage-stats article {
  min-height: 145px;
  padding: 22px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(32,32,32,.06);
}

.heritage-stats strong {
  display: block;
  color: var(--orange);
  font-size: clamp(1.55rem, 3vw, 2.3rem);
  line-height: 1;
  margin-bottom: 10px;
}

.heritage-stats span {
  color: var(--muted);
  font-weight: 700;
}

.veiling-context {
  background: var(--white);
}

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

.context-grid article {
  min-height: 178px;
  padding: 26px 24px;
  border-radius: var(--radius);
  background: #fffaf3;
  border: 1px solid var(--line);
  box-shadow: 0 10px 26px rgba(32,32,32,.05);
  display: grid;
  align-content: start;
}

.context-grid strong {
  display: block;
  color: var(--green);
  font-size: clamp(1.8rem, 2.7vw, 2.55rem);
  line-height: 1.05;
  margin-bottom: 14px;
  max-width: 9ch;
}

.context-grid span {
  color: var(--muted);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.45;
  max-width: 20ch;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .75fr);
  gap: 56px;
  align-items: start;
  margin-bottom: 32px;
}

.section-head h2 {
  max-width: 760px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.section-head p {
  max-width: 520px;
  color: var(--muted);
  margin: 8px 0 0;
  font-size: 1.04rem;
}

.section-head > div + p {
  margin-top: 52px;
}

.grid-4,
.grid-3,
.grid-2 {
  display: grid;
  gap: 16px;
}

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

.buyer-map-section {
  background: var(--white);
}

.buyer-map {
  display: grid;
  grid-template-columns: 1.15fr .85fr .85fr;
  grid-template-areas:
    "feature garden flower"
    "feature market decor";
  gap: 16px;
  align-items: stretch;
}

.buyer-feature {
  grid-area: feature;
  padding: 34px;
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255,242,228,.98), rgba(255,250,243,.98));
  color: var(--ink);
  display: grid;
  align-content: center;
  gap: 18px;
  min-height: 420px;
  position: relative;
  overflow: hidden;
  border: 1px solid #ffd7b5;
  box-shadow: 0 18px 46px rgba(32,32,32,.07);
}

.buyer-feature::before {
  content: "";
  position: absolute;
  right: -84px;
  bottom: -84px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255,111,15,.12);
}

.buyer-feature > * {
  position: relative;
  z-index: 1;
}

.buyer-feature h3 {
  font-size: clamp(1.75rem, 2.7vw, 2.65rem);
  margin: 0;
  line-height: 1.08;
}

.buyer-feature p {
  color: var(--muted);
  max-width: 520px;
}

.buyer-feature-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.buyer-feature-list li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  font-weight: 700;
}

.buyer-feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}

.buyer-tile {
  padding: 26px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fffaf3;
  min-height: 210px;
  display: grid;
  align-content: space-between;
  gap: 16px;
  box-shadow: 0 10px 28px rgba(32,32,32,.045);
}

.buyer-tile.garden {
  grid-area: garden;
  background: #fff2e4;
}

.buyer-tile.decor {
  grid-area: decor;
  background: #f1f8ef;
}

.buyer-tile h3 {
  margin: 0 0 8px;
  font-size: 1.45rem;
}

.buyer-tile p {
  color: var(--muted);
}

.buyer-tile a {
  color: #bd4f00;
  font-weight: 900;
}

.tile-kicker {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 30px;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(255,111,15,.11);
  color: #a94800;
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.buyer-map .buyer-tile:nth-of-type(3) { grid-area: flower; }
.buyer-map .buyer-tile:nth-of-type(4) { grid-area: market; }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  min-height: 100%;
  box-shadow: 0 10px 26px rgba(32, 32, 32, .05);
}

.card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.card p,
.card li { color: var(--muted); }

.content-stack {
  display: grid;
  gap: 18px;
}

.content-block {
  display: grid;
  gap: 12px;
}

.content-block h2,
.content-block h3 {
  max-width: 760px;
}

.content-block p {
  max-width: 820px;
  color: var(--muted);
}

.service-matrix {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.service-card {
  min-height: 190px;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 10px 26px rgba(32,32,32,.05);
}

.service-card strong {
  display: block;
  color: var(--green);
  font-size: 1.05rem;
  line-height: 1.2;
  margin-bottom: 10px;
}

.service-card span {
  color: var(--muted);
  display: block;
}

.service-note {
  margin-top: 18px;
  padding: 20px 22px;
  border-left: 5px solid var(--orange);
  background: #fffaf3;
  border-radius: var(--radius);
  color: var(--muted);
}

.compact-list {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
}

.compact-list li {
  margin: 7px 0;
}

.faq-section {
  background: #fffaf3;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.faq-item {
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(32,32,32,.05);
}

.faq-item h3 {
  font-size: 1.08rem;
  margin-bottom: 8px;
}

.faq-item p {
  color: var(--muted);
  margin: 0;
}

.band {
  background:
    linear-gradient(135deg, rgba(31,32,34,.98), rgba(44,47,43,.96)),
    var(--charcoal);
  color: var(--white);
}

.logistics-section {
  padding: 86px 0;
  background:
    linear-gradient(180deg, #fff 0%, #fff7ed 100%);
  color: var(--ink);
}

.logistics-section .section-head p {
  color: var(--muted);
}

.process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.process-timeline::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 37px;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), #ffc28d);
}

.process-timeline article {
  position: relative;
  padding: 84px 26px 28px;
  min-height: 250px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 42px rgba(32,32,32,.08);
}

.process-timeline article::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 26px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 10px #fff3e8;
}

.process-time {
  position: absolute;
  top: 20px;
  right: 22px;
  padding: 8px 11px;
  border-radius: 999px;
  background: #1f2022;
  color: var(--white);
  font-weight: 900;
  font-size: .86rem;
}

.process-timeline h3 {
  font-size: 1.45rem;
  margin-bottom: 12px;
}

.process-timeline p {
  color: var(--muted);
  margin: 0;
}

.express-teaser {
  padding: 34px 0;
  background: #fffaf3;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.express-teaser-grid {
  display: grid;
  grid-template-columns: 150px 1fr auto;
  gap: 24px;
  align-items: center;
}

.express-teaser img {
  width: 138px;
  height: auto;
}

.express-teaser h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  margin: 10px 0 8px;
}

.express-teaser p {
  max-width: 740px;
  color: var(--muted);
  margin: 0;
}

.express-teaser .button { white-space: nowrap; }

.band .section-head p,
.band .card p,
.band .card li { color: rgba(255,255,255,.82); }

.band .card {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.22);
}

.step {
  position: relative;
  padding-top: 26px;
}

.step-number {
  position: absolute;
  top: -15px;
  left: 22px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-weight: 900;
}

.quote {
  border-left: 5px solid var(--orange);
}

.quote blockquote {
  margin: 0 0 18px;
  font-size: 1.16rem;
  color: var(--ink);
  line-height: 1.55;
}

.quote cite {
  color: var(--muted);
  font-style: normal;
  font-weight: 700;
}

.calculator {
  background:
    linear-gradient(145deg, #1f2022 0%, #2a2724 100%);
  border: 1px solid #1f2022;
  color: var(--white);
}

.proof-layout {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  grid-template-areas:
    "number quote1"
    "number quote2";
  gap: 16px;
}

.proof-number {
  grid-area: number;
  min-height: 360px;
  display: grid;
  align-content: center;
  padding: 34px;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}

.proof-number::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(255,117,12,.18);
}

.proof-number strong {
  position: relative;
  z-index: 1;
  font-size: clamp(3.4rem, 7vw, 6.5rem);
  line-height: .9;
}

.proof-number h3,
.proof-number p {
  position: relative;
  z-index: 1;
}

.proof-quote {
  padding: 30px 34px 28px 28px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(32,32,32,.05);
  position: relative;
  overflow: hidden;
}

.proof-quote::before {
  content: "\201C";
  position: absolute;
  right: 20px;
  bottom: -22px;
  color: #ffd6b5;
  font-size: 6.2rem;
  line-height: 1;
  font-weight: 900;
  pointer-events: none;
  opacity: .48;
  z-index: 0;
}

.proof-quote blockquote,
.proof-quote cite {
  position: relative;
  z-index: 1;
}

.proof-layout .proof-quote:nth-of-type(2) { grid-area: quote1; }
.proof-layout .proof-quote:nth-of-type(3) { grid-area: quote2; }

.calculator strong {
  color: var(--orange-2);
  font-size: 2.2rem;
}

.calculator p {
  color: rgba(255,255,255,.78);
}

.form-panel {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 24px;
  align-items: start;
  background: var(--white);
  border: 1px solid #f3d4b8;
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}

.cta-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-self: center;
}

.guide-panel {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 0;
  align-items: stretch;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid #f3d4b8;
  box-shadow: var(--shadow);
}

.guide-copy {
  padding: 34px;
  background:
    linear-gradient(145deg, rgba(31,32,34,.96), rgba(47,43,39,.96)),
    var(--charcoal);
  color: var(--white);
}

.guide-copy .eyebrow {
  background: rgba(255,117,12,.16);
  border-color: rgba(255,179,108,.55);
  color: #ffd7b8;
}

.guide-copy h2 {
  font-size: clamp(1.9rem, 3vw, 3rem);
  max-width: 620px;
}

.guide-copy p {
  color: rgba(255,255,255,.78);
  max-width: 600px;
}

.tips-list {
  display: grid;
  gap: 10px;
  margin: 26px 0 22px;
}

.tips-list article {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: start;
  padding: 12px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
}

.tips-list strong {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-size: .9rem;
}

.tips-list span {
  color: rgba(255,255,255,.86);
}

.guide-form {
  padding: 34px;
  background: #fffaf3;
}

.form-title {
  margin-bottom: 6px;
}

.form-title span {
  color: #bd4f00;
  font-weight: 900;
  text-transform: uppercase;
  font-size: .78rem;
}

.form-title h3 {
  margin-top: 4px;
  font-size: 1.55rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.lead-form {
  display: grid;
  gap: 12px;
}

label {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #cfdacf;
  border-radius: var(--radius);
  padding: 11px 12px;
  font: inherit;
  color: var(--ink);
  background: var(--white);
}

textarea { min-height: 100px; resize: vertical; }

.fine-print {
  color: var(--muted);
  font-size: .9rem;
}

.page-hero {
  padding: 58px 0;
  background: linear-gradient(135deg, #fff4e6, #fffaf3);
}

.page-hero h1 { font-size: clamp(2.1rem, 4vw, 3.8rem); }

.express-page-hero {
  background: linear-gradient(180deg, #fffaf3 0%, #fff 100%);
}

.express-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(260px, .88fr);
  gap: 34px;
  align-items: center;
}

.express-logo-panel {
  min-height: 360px;
  padding: 26px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 85% 15%, rgba(255,111,15,.12), transparent 34%),
    linear-gradient(145deg, #fffaf3 0%, #ffffff 58%, #f6fbf4 100%);
  border: 1px solid #ffd9bc;
  box-shadow: 0 22px 54px rgba(32,32,32,.09);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.express-logo-panel::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255,111,15,.16);
  border-radius: calc(var(--radius) - 4px);
  pointer-events: none;
}

.express-logo-card {
  position: relative;
  z-index: 1;
  width: min(100%, 430px);
  display: grid;
  gap: 22px;
  justify-items: center;
  padding: 30px 28px 24px;
  border-radius: calc(var(--radius) - 2px);
  background: rgba(255,255,255,.76);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
}

.express-logo-panel img {
  width: min(100%, 310px);
}

.express-logo-points {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.express-logo-points span {
  min-height: 44px;
  display: grid;
  place-items: center;
  padding: 7px 8px;
  border-radius: 10px;
  background: #fff4e8;
  color: #944000;
  border: 1px solid #ffd8ba;
  font-size: .78rem;
  line-height: 1.15;
  font-weight: 900;
  text-align: center;
}

.list {
  padding-left: 1.1rem;
  margin: 12px 0 0;
}

.list li { margin: 8px 0; }

.site-footer {
  padding: 44px 0 28px;
  background: #171717;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 24px;
}

.site-footer a,
.site-footer p,
.site-footer li {
  color: rgba(255,255,255,.78);
}

.site-footer h2,
.site-footer h3 {
  font-size: 1rem;
  margin-bottom: 12px;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.copyright {
  border-top: 1px solid rgba(255,255,255,.16);
  margin-top: 28px;
  padding-top: 18px;
  color: rgba(255,255,255,.64);
  font-size: .9rem;
}

.footer-seals {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 18px;
  align-items: center;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.16);
}

.footer-seals h2 {
  margin-bottom: 6px;
}

.footer-seals p {
  margin: 0;
}

.footer-seals figure {
  margin: 0;
  min-width: 150px;
  display: grid;
  place-items: center;
  gap: 8px;
  padding: 12px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
}

.footer-seals .anniversary-seal {
  min-width: 168px;
}

.footer-seals img {
  max-height: 78px;
  width: auto;
  object-fit: contain;
}

.footer-seals .anniversary-seal img {
  max-height: 112px;
  border-radius: 4px;
}

.footer-seals figure:last-child img {
  max-height: 54px;
}

.footer-seals figcaption {
  color: rgba(255,255,255,.68);
  font-size: .82rem;
  font-weight: 800;
  text-align: center;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #078d4f;
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(0,0,0,.22);
}

.whatsapp-icon {
  width: 31px;
  height: 31px;
  display: block;
  overflow: visible;
}

.whatsapp-icon path,
.whatsapp-icon circle {
  vector-effect: non-scaling-stroke;
}

.whatsapp-float:hover,
.whatsapp-float:focus {
  background: #067d47;
  color: #ffffff;
  transform: translateY(-2px);
}

.whatsapp-float span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

@media (max-width: 900px) {
  .menu-button { display: inline-grid; place-items: center; }
  .nav {
    position: absolute;
    top: 108px;
    left: 0;
    right: 0;
    display: none;
    grid-template-columns: 1fr;
    padding: 16px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }
  .nav.is-open { display: grid; }
  .hero-grid,
  .form-panel,
  .guide-panel,
  .footer-grid { grid-template-columns: 1fr; }
  .hero-photo,
  .hero-photo-inner {
    min-height: auto;
  }
  .hero-photo-inner {
    grid-template-columns: 1fr;
    align-items: end;
    padding-top: 220px;
    padding-bottom: 34px;
  }
  .hero-shade {
    background:
      linear-gradient(180deg, rgba(12, 13, 13, .18) 0%, rgba(12, 13, 13, .58) 38%, rgba(12, 13, 13, .9) 100%);
  }
  .hero-media { order: -1; }
  .hero-media img { aspect-ratio: 16 / 9; }
  .grid-4,
  .grid-3,
  .grid-2,
  .service-matrix,
  .faq-list { grid-template-columns: repeat(2, 1fr); }
  .operation-grid,
  .heritage-grid,
  .express-page-grid,
  .buyer-map,
  .process-timeline,
  .proof-layout {
    grid-template-columns: 1fr;
    grid-template-areas: none;
  }
  .buyer-feature,
  .buyer-tile,
  .proof-number,
  .proof-quote {
    grid-area: auto;
  }
  .buyer-feature { min-height: 320px; }
  .process-timeline::before { display: none; }
  .process-timeline article { min-height: 0; }
  .operation-grid div {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.14);
  }
  .operation-grid div:last-child { border-bottom: 0; }
  .heritage-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .context-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .express-teaser-grid {
    grid-template-columns: 120px 1fr;
  }
  .express-teaser .button {
    grid-column: 2;
    justify-self: start;
  }
  .footer-seals {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .section-head {
    display: block;
  }
  .section-head p {
    margin-top: 12px;
  }
  .hero-note,
  .order-card {
    position: static;
    width: auto;
    margin-top: 12px;
  }
}

@media (max-width: 620px) {
  .container { width: min(100% - 24px, 1120px); }
  .header-inner { min-height: 92px; }
  .brand-logo {
    height: 78px;
    max-width: 176px;
  }
  .nav { top: 92px; }
  .hero { padding-top: 24px; }
  .hero-photo { padding-top: 0; }
  .hero-photo-inner { padding-top: 180px; }
  h1 { font-size: clamp(2.05rem, 10vw, 3rem); }
  .hero-subtitle { font-size: 1.04rem; }
  section { padding: 48px 0; }
  .grid-4,
  .grid-3,
  .grid-2,
  .service-matrix,
  .faq-list,
  .trust-row { grid-template-columns: 1fr; }
  .hero-actions .button,
  .actions .button { width: 100%; }
  .trust-row { margin-top: 16px; }
  .trust-item { padding: 12px 14px; }
  .trust-item strong { font-size: 1.05rem; }
  .hero-note,
  .order-card { display: none; }
  .card { padding: 18px; }
  .express-logo-panel {
    min-height: 260px;
    padding: 24px;
  }
  .express-logo-card {
    padding: 24px 18px 18px;
  }
  .express-logo-points {
    grid-template-columns: 1fr;
  }
  .form-panel { padding: 18px; }
  .guide-copy,
  .guide-form { padding: 22px; }
  .form-row { grid-template-columns: 1fr; }
  .heritage-stats { grid-template-columns: 1fr; }
  .context-grid { grid-template-columns: 1fr; }
  .express-teaser-grid { grid-template-columns: 1fr; }
  .express-teaser img { width: 112px; }
  .express-teaser .button {
    grid-column: auto;
    width: 100%;
  }
  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 66px;
    height: 66px;
  }

  .whatsapp-icon {
    width: 29px;
    height: 29px;
  }
}
