:root {
  --ink: #201b15;
  --ink-2: #342a21;
  --brown: #8a5a32;
  --wood: #d09755;
  --amber: #f5a83e;
  --leaf: #b9d873;
  --cream: #f6e7c9;
  --paper: #fff9ec;
  --muted: #786f62;
  --line: rgba(32, 27, 21, .14);
  --shadow: 0 28px 80px rgba(32, 27, 21, .16);
  --radius: 34px;
  --max: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  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(245, 168, 62, .25), transparent 26%),
    radial-gradient(circle at 88% 0%, rgba(185, 216, 115, .25), transparent 25%),
    linear-gradient(135deg, #fff7e8 0%, #efe0bf 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: url("assets/pattern-dust.svg");
  background-size: 220px 220px;
  opacity: .48;
  mix-blend-mode: multiply;
  z-index: -2;
}

.page-texture {
  position: fixed;
  inset: auto -20vw -30vh auto;
  width: 62vw;
  height: 62vw;
  border-radius: 50%;
  background: rgba(255, 249, 236, .45);
  filter: blur(40px);
  pointer-events: none;
  z-index: -1;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }

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

.site-header {
  width: min(var(--max), calc(100% - 34px));
  margin: 18px auto 0;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .62);
  border-radius: 999px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  background: rgba(255, 249, 236, .74);
  backdrop-filter: blur(18px);
  position: sticky;
  top: 14px;
  z-index: 30;
  box-shadow: 0 20px 60px rgba(32, 27, 21, .11);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-weight: 950;
  letter-spacing: -.035em;
}
.brand img { width: 42px; height: 42px; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .42);
}
.main-nav a {
  padding: 10px 13px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
}
.main-nav a:hover { background: var(--ink); color: var(--cream); }

.header-actions, .hero-buttons, .contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.btn {
  border: 0;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 13px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 950;
  white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--ink); color: var(--cream); box-shadow: 0 16px 38px rgba(32, 27, 21, .25); }
.btn-paper { background: var(--cream); color: var(--ink); border: 1px solid var(--line); }
.btn-accent { background: var(--leaf); color: var(--ink); }
.btn-outline { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.hidden { display: none !important; }

.eyebrow {
  margin: 0 0 13px;
  color: var(--brown);
  text-transform: uppercase;
  letter-spacing: .17em;
  font-size: 12px;
  font-weight: 950;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(56px, 8vw, 112px);
  line-height: .82;
  letter-spacing: -.09em;
}
h2 {
  margin-bottom: 0;
  font-size: clamp(36px, 5.4vw, 72px);
  line-height: .9;
  letter-spacing: -.08em;
}
h3 {
  margin-bottom: 12px;
  font-size: 25px;
  line-height: 1.02;
  letter-spacing: -.05em;
}
p { line-height: 1.65; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(440px, 1.06fr);
  gap: 20px;
  align-items: stretch;
  padding-top: 58px;
}
.hero-copy {
  min-height: 590px;
  padding: clamp(30px, 5vw, 68px);
  border-radius: 48px 48px 120px 48px;
  border: 1px solid rgba(255, 255, 255, .65);
  background:
    radial-gradient(circle at 84% 18%, rgba(185, 216, 115, .58), transparent 20%),
    linear-gradient(135deg, rgba(255, 249, 236, .86), rgba(246, 231, 201, .72));
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero-copy::before {
  content: "";
  position: absolute;
  left: -70px;
  bottom: -92px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 40px solid rgba(245, 168, 62, .35);
}
.hero-copy > * { position: relative; z-index: 1; }
.hero-lead {
  max-width: 650px;
  color: var(--muted);
  font-size: 18px;
}
.hero-board {
  min-height: 590px;
  position: relative;
  border-radius: 48px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--ink);
}
.hero-art {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.board-chip {
  position: absolute;
  display: grid;
  gap: 5px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 24px;
  background: rgba(255, 249, 236, .84);
  backdrop-filter: blur(15px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .18);
}
.board-chip span {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-weight: 950;
}
.board-chip strong { font-size: 27px; letter-spacing: -.05em; }
.chip-top { top: 26px; right: 26px; }
.chip-bottom { left: 26px; bottom: 26px; }

.identity-strip {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 18px;
  align-items: stretch;
  padding-top: 70px;
}
.identity-title {
  border-radius: 34px;
  padding: 28px;
  background: var(--ink);
  color: var(--cream);
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.identity-title .eyebrow { color: rgba(246, 231, 201, .64); }
.identity-title h2 { font-size: clamp(34px, 4vw, 48px); }
.identity-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.identity-rail article {
  min-height: 220px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: rgba(255, 249, 236, .7);
  box-shadow: 0 18px 48px rgba(32, 27, 21, .08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateY(var(--lift, 0));
}
.identity-rail article:nth-child(2) { --lift: 18px; background: var(--cream); }
.identity-rail article:nth-child(3) { --lift: -12px; background: var(--leaf); }
.identity-rail article:nth-child(4) { --lift: 28px; background: var(--ink); color: var(--cream); }
.identity-rail span {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .15em;
  font-weight: 950;
}
.identity-rail article:nth-child(4) span { color: rgba(246, 231, 201, .62); }
.identity-rail strong {
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1;
  letter-spacing: -.06em;
}

.workbench {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 22px;
  padding-top: 98px;
}
.workbench-intro {
  position: sticky;
  top: 120px;
  align-self: start;
  padding: 28px;
  border-radius: 38px;
  background: rgba(255, 249, 236, .78);
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(32, 27, 21, .08);
}
.workbench-intro p:not(.eyebrow) { color: var(--muted); margin-bottom: 0; }
.workbench-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  grid-auto-rows: minmax(250px, auto);
  gap: 16px;
}
.service-tall, .service-wide, .service-note {
  border-radius: 42px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.service-tall {
  grid-row: span 2;
  background: rgba(255, 249, 236, .72);
  display: grid;
  gap: 0;
}
.service-tall img { width: 100%; height: 330px; object-fit: cover; }
.service-tall div { padding: 26px; }
.service-wide {
  padding: 34px;
  background: var(--ink);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}
.service-wide::after {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: var(--leaf);
  opacity: .32;
}
.service-wide > * { position: relative; z-index: 1; }
.service-note {
  padding: 30px;
  background: var(--wood);
  color: var(--paper);
}
.service-code {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 15px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--amber);
  color: var(--ink);
  font-weight: 950;
  font-size: 12px;
  letter-spacing: .13em;
}
.service-tall p, .service-wide p, .service-note p { margin-bottom: 0; }
.service-tall p { color: var(--muted); }
.service-wide p { color: rgba(246, 231, 201, .74); }
.service-note ul {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.service-note li {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(32, 27, 21, .22);
  font-weight: 800;
}

.item-gallery {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 18px;
  padding-top: 84px;
}
.side-title {
  padding: 30px;
  border-radius: 42px;
  background: linear-gradient(135deg, var(--leaf), #e4f5a2);
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: var(--shadow);
}
.item-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.item-card {
  min-height: 180px;
  padding: 24px;
  border-radius: 34px;
  background: rgba(255, 249, 236, .75);
  border: 1px solid var(--line);
  box-shadow: 0 16px 45px rgba(32, 27, 21, .07);
}
.item-card:nth-child(2), .item-card:nth-child(3) { background: var(--cream); }
.item-card h3 { margin-bottom: 10px; }
.item-card p { margin-bottom: 0; color: var(--muted); }

.proof {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 18px;
  padding-top: 84px;
}
.proof-lead {
  min-height: 540px;
  border-radius: 42px;
  padding: 34px;
  color: var(--cream);
  background:
    radial-gradient(circle at 72% 14%, rgba(245, 168, 62, .5), transparent 20%),
    linear-gradient(135deg, var(--ink), var(--ink-2));
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.proof-lead .eyebrow { color: rgba(246, 231, 201, .62); }
.proof-lead p:not(.eyebrow) { color: rgba(246, 231, 201, .72); margin-bottom: 0; }
.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.why-card {
  min-height: 260px;
  padding: 24px;
  border-radius: 34px;
  border: 1px solid var(--line);
  background: rgba(255, 249, 236, .76);
  box-shadow: 0 16px 46px rgba(32, 27, 21, .08);
  position: relative;
  overflow: hidden;
}
.why-card:nth-child(2) { transform: translateY(28px); background: var(--leaf); }
.why-card:nth-child(3) { background: var(--cream); }
.why-card:nth-child(4) { transform: translateY(28px); background: var(--ink); color: var(--cream); }
.why-card::before {
  content: attr(data-number);
  position: absolute;
  right: 18px;
  top: 12px;
  font-size: 74px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -.08em;
  opacity: .09;
}
.why-card .icon-dot {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 17px;
  background: var(--amber);
  color: var(--ink);
  font-weight: 950;
}
.why-card p { color: var(--muted); margin-bottom: 0; }
.why-card:nth-child(4) p { color: rgba(246, 231, 201, .74); }

.visual-break { padding-top: 94px; }
.visual-break img { width: 100%; border-radius: 48px; box-shadow: var(--shadow); }

.journey {
  padding-top: 84px;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 28px;
}
.journey-head {
  border-left: 10px solid var(--amber);
  padding-left: 24px;
  align-self: start;
}
.timeline {
  display: grid;
  gap: 20px;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 34px;
  top: 20px;
  bottom: 20px;
  width: 4px;
  border-radius: 999px;
  background: rgba(32, 27, 21, .14);
}
.route-card {
  position: relative;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 18px;
  align-items: start;
}
.route-card:nth-child(even) { margin-left: 74px; }
.route-card span {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--cream);
  box-shadow: 0 14px 36px rgba(32, 27, 21, .22);
  font-weight: 950;
  z-index: 1;
}
.route-card div {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 249, 236, .78);
  box-shadow: 0 16px 42px rgba(32, 27, 21, .07);
}
.route-card:nth-child(even) div { background: var(--cream); }
.route-card p { color: var(--muted); margin-bottom: 0; }

.location-zone { padding-top: 90px; }
.map-stage {
  min-height: 560px;
  border-radius: 48px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  background: var(--ink);
}
.map-stage iframe {
  width: 100%;
  height: 560px;
  border: 0;
  display: block;
  filter: saturate(.82) contrast(1.03);
}
.address-card {
  position: absolute;
  left: 24px;
  bottom: 24px;
  width: min(470px, calc(100% - 48px));
  padding: 28px;
  border-radius: 34px;
  background: rgba(32, 27, 21, .9);
  color: var(--cream);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 55px rgba(0, 0, 0, .22);
}
.address-card .eyebrow { color: rgba(246, 231, 201, .68); }
.address-card address {
  margin: 22px 0 24px;
  font-style: normal;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.04;
  font-weight: 950;
  letter-spacing: -.06em;
}

.request-zone {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  align-items: stretch;
  padding-top: 90px;
}
.request-form {
  order: 1;
  padding: clamp(24px, 4vw, 44px);
  border-radius: 48px;
  background: var(--ink);
  color: var(--cream);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, .18);
}
.form-heading {
  display: grid;
  grid-template-columns: 1fr .92fr;
  gap: 22px;
  align-items: end;
  margin-bottom: 24px;
}
.form-heading .eyebrow { color: rgba(246, 231, 201, .68); }
.form-heading p:not(.eyebrow) { color: rgba(246, 231, 201, .68); margin-bottom: 0; }
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.request-form label, .request-form fieldset {
  display: grid;
  gap: 8px;
  margin: 0 0 14px;
}
.request-form label span, .request-form legend {
  color: rgba(246, 231, 201, .74);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
  font-weight: 950;
}
input, select, textarea {
  width: 100%;
  border: 1px solid rgba(246, 231, 201, .18);
  border-radius: 18px;
  padding: 15px 16px;
  color: var(--cream);
  background: rgba(255, 255, 255, .08);
  outline: none;
}
select option { color: var(--ink); }
input::placeholder, textarea::placeholder { color: rgba(246, 231, 201, .42); }
input:focus, select:focus, textarea:focus {
  border-color: var(--leaf);
  box-shadow: 0 0 0 4px rgba(185, 216, 115, .13);
}
.form-row-extra {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.file-box {
  padding: 15px 16px;
  border: 1px dashed rgba(246, 231, 201, .26);
  border-radius: 20px;
}
.file-box input { padding: 0; border: 0; background: transparent; }
.file-box em { color: rgba(246, 231, 201, .54); font-style: normal; font-size: 13px; }
fieldset {
  border: 1px solid rgba(246, 231, 201, .2);
  border-radius: 20px;
  padding: 15px 16px 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
}
.radio-line {
  display: inline-flex !important;
  align-items: center;
  gap: 8px !important;
  margin: 0 !important;
  color: rgba(246, 231, 201, .86);
}
.radio-line input { width: auto; accent-color: var(--leaf); }
.btn-submit {
  width: 100%;
  margin-top: 4px;
  background: var(--leaf);
  color: var(--ink);
}
.form-status {
  margin: 16px 0 0;
  min-height: 26px;
  color: var(--leaf);
  font-weight: 850;
}
.form-status.error { color: #ffc39b; }
.form-status.loading::before {
  content: "";
  width: 14px;
  height: 14px;
  display: inline-block;
  margin-right: 8px;
  border-radius: 50%;
  border: 2px solid rgba(185, 216, 115, .34);
  border-top-color: var(--leaf);
  vertical-align: -2px;
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.request-aside {
  order: 2;
  padding: 32px;
  border-radius: 48px;
  background:
    radial-gradient(circle at 85% 15%, rgba(185, 216, 115, .5), transparent 22%),
    linear-gradient(135deg, var(--cream), #fff5df);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 18px;
}
.request-aside strong {
  font-size: clamp(38px, 5vw, 62px);
  line-height: .9;
  letter-spacing: -.08em;
}
.request-aside span {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .44);
  color: var(--muted);
  font-weight: 800;
}
.request-aside b { color: var(--ink); }

.offer {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 22px;
  padding-top: 90px;
}
.offer-head {
  align-self: start;
  padding: 30px;
  border-radius: 38px;
  background: var(--wood);
  color: var(--paper);
  position: sticky;
  top: 120px;
}
.offer-head .eyebrow { color: rgba(255, 249, 236, .72); }
.offer-head p:not(.eyebrow) { color: rgba(255, 249, 236, .74); margin-bottom: 0; }
.offer-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.offer-item {
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 249, 236, .78);
  overflow: hidden;
  box-shadow: 0 14px 38px rgba(32, 27, 21, .06);
}
.offer-item button {
  width: 100%;
  padding: 20px 22px;
  border: 0;
  color: var(--ink);
  background: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  text-align: left;
  cursor: pointer;
  font-size: 18px;
  font-weight: 950;
  letter-spacing: -.035em;
}
.offer-item button span:last-child {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--cream);
}
.offer-item p {
  max-height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0 22px;
  color: var(--muted);
  line-height: 1.68;
  transition: max-height .28s ease, padding .28s ease;
}
.offer-item.is-open p {
  max-height: 340px;
  padding: 0 22px 22px;
}

.site-footer {
  width: min(var(--max), calc(100% - 34px));
  margin: 86px auto 24px;
  padding: 26px;
  border-radius: 34px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  color: var(--cream);
  background: var(--ink);
}
.site-footer p { margin: 8px 0 0; color: rgba(246, 231, 201, .62); }
.site-footer button {
  border: 0;
  cursor: pointer;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--leaf);
  color: var(--ink);
  font-weight: 950;
}
.back-top-btn {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  font-size: 22px;
  font-weight: 950;
  cursor: pointer;
  box-shadow: 0 16px 40px rgba(32, 27, 21, .26);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .2s ease, transform .2s ease;
}
.back-top-btn.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}


/* Added pricing and usefulness sections */
.workbench-intro {
  min-width: 0;
  overflow: hidden;
}
.workbench-intro h2 {
  font-size: clamp(36px, 4.4vw, 56px);
  line-height: .88;
  overflow-wrap: anywhere;
}

.pricing-zone {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 22px;
  align-items: start;
  padding-top: 96px;
}
.pricing-copy {
  position: sticky;
  top: 120px;
  min-height: 520px;
  padding: 32px;
  border-radius: 48px;
  background:
    radial-gradient(circle at 82% 20%, rgba(245, 168, 62, .45), transparent 24%),
    linear-gradient(145deg, var(--ink), #3b2a1c 66%, #5f3b22);
  color: var(--cream);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.pricing-copy::before,
.pricing-copy::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}
.pricing-copy::before {
  width: 360px;
  height: 96px;
  right: -130px;
  top: 62px;
  background: rgba(185, 216, 115, .35);
  transform: rotate(-24deg);
}
.pricing-copy::after {
  width: 270px;
  height: 270px;
  left: -120px;
  bottom: -120px;
  border: 34px solid rgba(255, 249, 236, .12);
}
.pricing-copy > * { position: relative; z-index: 1; }
.pricing-copy .eyebrow { color: rgba(246, 231, 201, .66); }
.pricing-copy p { color: rgba(246, 231, 201, .74); }
.price-note {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255, 249, 236, .12);
  color: rgba(246, 231, 201, .86);
  font-weight: 850;
  line-height: 1.45;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.price-card {
  min-height: 238px;
  padding: 24px;
  border-radius: 34px;
  border: 1px solid var(--line);
  background: rgba(255, 249, 236, .78);
  box-shadow: 0 16px 48px rgba(32, 27, 21, .08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.price-card::after {
  content: "";
  position: absolute;
  right: -46px;
  bottom: -54px;
  width: 140px;
  height: 140px;
  border-radius: 38px;
  background: rgba(245, 168, 62, .2);
  transform: rotate(22deg);
}
.price-card > * { position: relative; z-index: 1; }
.price-card:nth-child(2), .price-card:nth-child(5) { transform: translateY(22px); }
.price-card:nth-child(3) { background: var(--cream); }
.price-custom {
  grid-column: span 2;
  min-height: 210px;
  background: linear-gradient(135deg, var(--leaf), #edf8b7);
}
.price-kicker {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--cream);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .15em;
}
.price-card h3 { margin: 18px 0 8px; }
.price-card strong {
  display: block;
  margin-bottom: 12px;
  font-size: clamp(28px, 3vw, 44px);
  line-height: .95;
  letter-spacing: -.07em;
}
.price-card p { color: var(--muted); margin-bottom: 0; }

.estimate-zone {
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  gap: 18px;
  padding-top: 88px;
}
.estimate-card {
  padding: 26px;
  border-radius: 34px;
  border: 1px solid var(--line);
  background: rgba(255, 249, 236, .72);
  box-shadow: 0 16px 44px rgba(32, 27, 21, .07);
}
.main-estimate {
  min-height: 390px;
  border-radius: 48px;
  background:
    radial-gradient(circle at 84% 20%, rgba(185, 216, 115, .45), transparent 24%),
    linear-gradient(135deg, var(--cream), rgba(255, 249, 236, .72));
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.main-estimate p:not(.eyebrow), .estimate-card p { color: var(--muted); margin-bottom: 0; }
.estimate-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.estimate-list .estimate-card:nth-child(2),
.estimate-list .estimate-card:nth-child(3) {
  background: var(--cream);
}

.photo-guide {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 18px;
  align-items: stretch;
  padding-top: 88px;
}
.photo-ribbon {
  padding: 28px;
  border-radius: 42px;
  background: var(--ink);
  color: var(--cream);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.photo-ribbon .eyebrow { color: rgba(246, 231, 201, .66); }
.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.photo-card {
  min-height: 250px;
  padding: 24px;
  border-radius: 34px;
  background: rgba(255, 249, 236, .74);
  border: 1px solid var(--line);
  box-shadow: 0 16px 44px rgba(32, 27, 21, .07);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.photo-card:nth-child(2), .photo-card:nth-child(4) { transform: translateY(24px); background: var(--cream); }
.photo-card span {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--amber);
  color: var(--ink);
  font-weight: 950;
}
.photo-card p { color: var(--muted); margin-bottom: 0; }

.aftercare-zone {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 18px;
  padding-top: 90px;
}
.aftercare-head {
  padding: 30px;
  border-radius: 42px;
  background: var(--wood);
  color: var(--paper);
  box-shadow: var(--shadow);
}
.aftercare-head .eyebrow { color: rgba(255, 249, 236, .72); }
.aftercare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.aftercare-card {
  min-height: 190px;
  padding: 26px;
  border-radius: 34px;
  border: 1px solid var(--line);
  background: rgba(255, 249, 236, .76);
  box-shadow: 0 16px 44px rgba(32, 27, 21, .07);
}
.aftercare-card:nth-child(1), .aftercare-card:nth-child(4) { background: var(--cream); }
.aftercare-card p { color: var(--muted); margin-bottom: 0; }

@media (max-width: 1040px) {
  .main-nav { display: none; }
  .hero, .identity-strip, .workbench, .pricing-zone, .estimate-zone, .item-gallery, .proof, .photo-guide, .journey, .aftercare-zone, .request-zone, .offer { grid-template-columns: 1fr; }
  .hero-board, .hero-copy { min-height: auto; }
  .hero-board { aspect-ratio: 1.08; }
  .identity-rail { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .identity-rail article { transform: none !important; }
  .workbench-intro, .pricing-copy, .offer-head { position: static; }
  .workbench-grid, .pricing-grid, .estimate-list, .proof-grid, .photo-grid, .aftercare-grid, .offer-list { grid-template-columns: 1fr 1fr; }
  .journey-head { border-left: 0; border-top: 10px solid var(--amber); padding: 24px 0 0; }
  .form-heading { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .site-header { border-radius: 28px; align-items: flex-start; }
  .brand span { max-width: 160px; }
  .header-actions { display: none; }
  .section-shell { width: min(100% - 22px, var(--max)); }
  .hero { padding-top: 36px; }
  h1 { font-size: 50px; }
  h2 { font-size: 40px; }
  .hero-copy { border-radius: 34px 34px 72px 34px; padding: 28px; }
  .hero-board, .side-title, .proof-lead, .request-form, .request-aside, .map-stage { border-radius: 34px; }
  .identity-strip, .workbench, .pricing-zone, .estimate-zone, .item-gallery, .proof, .visual-break, .photo-guide, .journey, .aftercare-zone, .location-zone, .request-zone, .offer { padding-top: 56px; }
  .identity-rail, .workbench-grid, .pricing-grid, .estimate-list, .item-grid, .proof-grid, .photo-grid, .aftercare-grid, .offer-list, .form-grid, .form-row-extra { grid-template-columns: 1fr; }
  .service-tall { grid-row: auto; }
  .workbench-intro h2 { font-size: 38px; overflow-wrap: normal; }
  .pricing-copy { min-height: 400px; }
  .price-card, .price-custom { grid-column: auto; transform: none !important; }
  .photo-card:nth-child(2), .photo-card:nth-child(4) { transform: none; }
  .service-tall img { height: 260px; }
  .why-card:nth-child(2), .why-card:nth-child(4), .route-card:nth-child(even) { transform: none; margin-left: 0; }
  .timeline::before { display: none; }
  .route-card { grid-template-columns: 1fr; }
  .route-card span { width: 58px; height: 58px; }
  .map-stage iframe { height: 660px; }
  .address-card { left: 12px; right: 12px; bottom: 12px; width: auto; padding: 22px; }
  .site-footer { flex-direction: column; align-items: flex-start; }
}

/* Mobile responsive polish: phone/tablet layout fixes */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

body, section, article, div, form, aside, header, footer,
h1, h2, h3, p, span, strong, address, li, a, button, input, select, textarea {
  min-width: 0;
}

h1, h2, h3, p, strong, address, li, .btn, .brand span {
  overflow-wrap: anywhere;
}

.offer-item.is-open p {
  max-height: 1200px;
}

@media (max-width: 920px) {
  .site-header {
    flex-wrap: wrap;
    border-radius: 30px;
    padding: 12px;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
  }

  .brand span {
    max-width: none;
  }

  .main-nav {
    order: 3;
    width: 100%;
    display: flex;
    overflow-x: auto;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .main-nav::-webkit-scrollbar { display: none; }

  .main-nav a {
    flex: 0 0 auto;
    padding: 10px 12px;
  }

  .header-actions {
    flex: 0 1 auto;
  }

  .hero {
    padding-top: 34px;
  }

  .hero-copy {
    min-height: 0;
  }

  .hero-board {
    min-height: 360px;
    aspect-ratio: 1.24;
  }

  .identity-rail article,
  .service-wide,
  .service-note,
  .item-card,
  .why-card,
  .photo-card,
  .aftercare-card,
  .price-card,
  .estimate-card {
    min-height: auto;
  }

  .pricing-copy,
  .proof-lead,
  .main-estimate {
    min-height: auto;
  }

  .price-card:nth-child(2),
  .price-card:nth-child(5),
  .why-card:nth-child(2),
  .why-card:nth-child(4),
  .photo-card:nth-child(2),
  .photo-card:nth-child(4) {
    transform: none;
  }
}

@media (max-width: 680px) {
  :root {
    --radius: 26px;
  }

  .section-shell,
  .site-header,
  .site-footer {
    width: calc(100% - 20px);
  }

  .site-header {
    margin-top: 10px;
    top: 8px;
    gap: 10px;
    border-radius: 24px;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .brand span {
    font-size: 15px;
    letter-spacing: -.02em;
  }

  .header-actions {
    order: 2;
    width: 100%;
    display: flex;
  }

  .header-actions .btn {
    flex: 1 1 0;
    padding: 11px 12px;
    white-space: normal;
    text-align: center;
  }

  .main-nav {
    padding: 4px;
    gap: 4px;
  }

  .main-nav a {
    font-size: 13px;
    padding: 9px 11px;
  }

  .hero,
  .identity-strip,
  .workbench,
  .pricing-zone,
  .estimate-zone,
  .item-gallery,
  .proof,
  .photo-guide,
  .journey,
  .aftercare-zone,
  .location-zone,
  .request-zone,
  .offer {
    padding-top: 48px;
  }

  h1 {
    font-size: clamp(42px, 13.4vw, 56px);
    line-height: .88;
    letter-spacing: -.075em;
  }

  h2,
  .workbench-intro h2 {
    font-size: clamp(31px, 10.5vw, 43px);
    line-height: .96;
    letter-spacing: -.07em;
  }

  h3 {
    font-size: clamp(21px, 6vw, 25px);
    line-height: 1.05;
  }

  p {
    line-height: 1.55;
  }

  .eyebrow {
    font-size: 11px;
    letter-spacing: .13em;
    margin-bottom: 10px;
  }

  .hero-copy,
  .workbench-intro,
  .identity-title,
  .side-title,
  .proof-lead,
  .photo-ribbon,
  .aftercare-head,
  .offer-head,
  .request-form,
  .request-aside,
  .pricing-copy,
  .main-estimate,
  .estimate-card,
  .service-wide,
  .service-note,
  .item-card,
  .why-card,
  .photo-card,
  .aftercare-card,
  .price-card {
    padding: 22px;
    border-radius: 26px;
  }

  .hero-copy {
    border-radius: 30px 30px 58px 30px;
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-buttons,
  .contact-row {
    width: 100%;
  }

  .hero-buttons .btn,
  .contact-row .btn {
    flex: 1 1 100%;
    white-space: normal;
    text-align: center;
  }

  .hero-board {
    min-height: 330px;
    aspect-ratio: auto;
    border-radius: 30px;
  }

  .board-chip {
    padding: 12px 13px;
    border-radius: 18px;
    max-width: calc(100% - 24px);
  }

  .board-chip strong {
    font-size: 19px;
    line-height: 1.05;
  }

  .chip-top {
    top: 12px;
    right: 12px;
  }

  .chip-bottom {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .identity-title,
  .identity-rail article {
    min-height: 150px;
  }

  .identity-rail strong {
    font-size: clamp(23px, 7vw, 30px);
    line-height: 1.03;
  }

  .workbench-grid,
  .pricing-grid,
  .estimate-list,
  .item-grid,
  .proof-grid,
  .photo-grid,
  .aftercare-grid,
  .offer-list,
  .form-grid,
  .form-row-extra {
    gap: 12px;
  }

  .service-tall img {
    height: 210px;
  }

  .service-tall div {
    padding: 22px;
  }

  .price-custom {
    grid-column: auto;
  }

  .price-card strong {
    font-size: clamp(27px, 9vw, 38px);
  }

  .photo-card span,
  .why-card .icon-dot {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    margin-bottom: 16px;
  }

  .visual-break {
    padding-top: 46px;
  }

  .visual-break img {
    border-radius: 26px;
  }

  .journey-head {
    padding-top: 18px;
  }

  .route-card {
    gap: 12px;
  }

  .route-card div {
    padding: 20px;
    border-radius: 24px;
  }

  .route-card span {
    width: 50px;
    height: 50px;
  }

  .map-stage {
    display: flex;
    flex-direction: column;
    min-height: 0;
    border-radius: 30px;
  }

  .map-stage iframe {
    height: 330px;
    min-height: 330px;
  }

  .address-card {
    position: static;
    width: auto;
    margin: 0;
    padding: 22px;
    border-radius: 0;
    box-shadow: none;
  }

  .address-card address {
    font-size: clamp(24px, 8vw, 32px);
    line-height: 1.08;
    margin: 16px 0 18px;
  }

  input,
  select,
  textarea {
    padding: 14px;
    border-radius: 16px;
    font-size: 16px;
  }

  .file-box input {
    font-size: 13px;
  }

  fieldset {
    display: grid;
    padding: 14px;
  }

  .radio-line {
    width: 100%;
  }

  .request-aside strong {
    font-size: clamp(34px, 11vw, 46px);
  }

  .request-aside span {
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
  }

  .offer-item button {
    padding: 17px 18px;
    font-size: 16px;
  }

  .offer-item p {
    padding-inline: 18px;
  }

  .offer-item.is-open p {
    padding: 0 18px 18px;
    max-height: 1600px;
  }

  .site-footer {
    margin-top: 56px;
    border-radius: 26px;
    padding: 22px;
  }

  .site-footer button {
    width: 100%;
  }

  .back-top-btn {
    width: 44px;
    height: 44px;
    right: 12px;
    bottom: 12px;
  }
}

@media (max-width: 420px) {
  .section-shell,
  .site-header,
  .site-footer {
    width: calc(100% - 16px);
  }

  .site-header {
    padding: 10px;
  }

  .brand span {
    font-size: 14px;
  }

  .main-nav a {
    font-size: 12px;
    padding: 8px 10px;
  }

  h1 {
    font-size: clamp(38px, 13vw, 48px);
  }

  h2,
  .workbench-intro h2 {
    font-size: clamp(29px, 10vw, 38px);
  }

  .btn {
    width: 100%;
    min-height: 46px;
    white-space: normal;
  }

  .hero-copy,
  .workbench-intro,
  .identity-title,
  .side-title,
  .proof-lead,
  .photo-ribbon,
  .aftercare-head,
  .offer-head,
  .request-form,
  .request-aside,
  .pricing-copy,
  .main-estimate,
  .estimate-card,
  .service-wide,
  .service-note,
  .item-card,
  .why-card,
  .photo-card,
  .aftercare-card,
  .price-card {
    padding: 19px;
  }

  .hero-board {
    min-height: 300px;
  }

  .board-chip strong {
    font-size: 17px;
  }

  .identity-rail article {
    min-height: 136px;
  }

  .service-tall img {
    height: 190px;
  }

  .map-stage iframe {
    height: 300px;
    min-height: 300px;
  }
}

/* V5: proper phone layout rebuild */
@media (max-width: 760px) {
  body {
    background:
      linear-gradient(180deg, #fff6df 0%, #f7e6bd 45%, #efddb5 100%);
  }

  body::before {
    background-size: 180px 180px;
    opacity: .25;
  }

  .page-texture { display: none; }

  .section-shell,
  .site-header,
  .site-footer {
    width: min(100% - 28px, 560px);
  }

  .site-header {
    position: relative;
    top: auto;
    margin-top: 14px;
    padding: 12px;
    border-radius: 24px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    background: rgba(255, 249, 236, .92);
    box-shadow: 0 14px 38px rgba(32, 27, 21, .13);
  }

  .brand {
    width: 100%;
    justify-content: flex-start;
    gap: 10px;
  }

  .brand img { width: 36px; height: 36px; }
  .brand span {
    font-size: 16px;
    line-height: 1.1;
    white-space: normal;
    overflow-wrap: normal;
  }

  .header-actions {
    order: 2;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .header-actions:empty { display: none; }

  .header-actions .btn {
    width: 100%;
    min-height: 44px;
    padding: 11px 14px;
    border-radius: 16px;
    font-size: 13px;
  }

  .main-nav {
    order: 3;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    overflow: visible;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .main-nav a {
    min-width: 0;
    width: 100%;
    padding: 9px 7px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255,255,255,.46);
    text-align: center;
    font-size: 11px;
    line-height: 1.1;
    color: var(--ink);
    white-space: nowrap;
  }

  .hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    padding-top: 22px;
  }

  .hero-copy {
    min-height: 0;
    padding: 26px 22px;
    border-radius: 30px;
    justify-content: flex-start;
    box-shadow: 0 16px 44px rgba(32,27,21,.12);
    background:
      radial-gradient(circle at 86% 12%, rgba(185, 216, 115, .38), transparent 23%),
      linear-gradient(135deg, rgba(255,249,236,.95), rgba(247,229,190,.82));
  }

  .hero-copy::before {
    width: 170px;
    height: 170px;
    left: auto;
    right: -70px;
    bottom: -82px;
    border-width: 28px;
  }

  h1 {
    max-width: 100%;
    margin-bottom: 16px;
    font-size: clamp(40px, 11.8vw, 54px);
    line-height: .92;
    letter-spacing: -.065em;
    overflow-wrap: normal;
    word-break: normal;
  }

  h2,
  .workbench-intro h2 {
    font-size: clamp(30px, 8.8vw, 40px);
    line-height: .98;
    letter-spacing: -.055em;
    overflow-wrap: normal;
    word-break: normal;
  }

  h3 {
    font-size: clamp(20px, 5.7vw, 24px);
    line-height: 1.08;
    letter-spacing: -.04em;
  }

  .hero-lead {
    max-width: 100%;
    font-size: 15.5px;
    line-height: 1.55;
    margin-bottom: 18px;
  }

  .eyebrow {
    font-size: 10px;
    letter-spacing: .14em;
    margin-bottom: 9px;
  }

  .hero-buttons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .hero-buttons .btn,
  .contact-row .btn,
  .btn {
    width: 100%;
    min-height: 46px;
    border-radius: 16px;
    padding: 12px 14px;
    white-space: normal;
    text-align: center;
  }

  .hero-board {
    min-height: 230px;
    aspect-ratio: auto;
    border-radius: 30px;
    padding: 16px;
    display: grid;
    align-content: end;
    gap: 10px;
    background:
      radial-gradient(circle at 80% 20%, rgba(185, 216, 115, .45), transparent 27%),
      linear-gradient(135deg, #201b15, #342619 70%);
    overflow: hidden;
  }

  .hero-art {
    position: absolute;
    right: -38px;
    top: 8px;
    width: 245px;
    height: 245px;
    object-fit: contain;
    opacity: .48;
  }

  .board-chip {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: min(100%, 300px);
    max-width: 100%;
    padding: 12px 14px;
    border-radius: 18px;
    z-index: 2;
  }

  .board-chip span { font-size: 9px; }
  .board-chip strong {
    font-size: 18px;
    line-height: 1.08;
    letter-spacing: -.035em;
    overflow-wrap: normal;
  }

  .identity-strip,
  .workbench,
  .pricing-zone,
  .estimate-zone,
  .item-gallery,
  .proof,
  .photo-guide,
  .journey,
  .aftercare-zone,
  .location-zone,
  .request-zone,
  .offer {
    padding-top: 34px;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .visual-break { display: none; }

  .identity-title {
    min-height: 0;
    padding: 20px;
    border-radius: 24px;
    background: #201b15;
  }

  .identity-title h2 { font-size: clamp(28px, 8vw, 36px); }

  .identity-rail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .identity-rail article {
    min-height: 118px;
    padding: 16px;
    border-radius: 22px;
    transform: none !important;
  }

  .identity-rail span { font-size: 9px; }
  .identity-rail strong {
    font-size: clamp(18px, 5.8vw, 25px);
    line-height: 1.05;
    letter-spacing: -.04em;
    overflow-wrap: normal;
  }

  .workbench-intro,
  .pricing-copy,
  .proof-lead,
  .photo-ribbon,
  .aftercare-head,
  .offer-head,
  .main-estimate,
  .request-form,
  .request-aside,
  .service-wide,
  .service-note,
  .item-card,
  .why-card,
  .photo-card,
  .aftercare-card,
  .estimate-card,
  .price-card {
    padding: 20px;
    border-radius: 24px;
    min-height: 0;
  }

  .workbench-intro,
  .pricing-copy,
  .offer-head {
    position: static;
  }

  .workbench-grid,
  .pricing-grid,
  .estimate-list,
  .item-grid,
  .proof-grid,
  .photo-grid,
  .aftercare-grid,
  .offer-list,
  .form-grid,
  .form-row-extra {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .service-tall {
    grid-row: auto;
    border-radius: 24px;
  }

  .service-tall img { height: 155px; object-fit: cover; }
  .service-tall div { padding: 20px; }

  .service-code,
  .price-kicker {
    padding: 7px 10px;
    font-size: 10px;
    margin-bottom: 10px;
  }

  .service-note ul { margin-top: 14px; gap: 8px; }
  .service-note li { padding: 10px 12px; border-radius: 14px; font-size: 14px; }

  .pricing-copy {
    min-height: 0;
    background:
      radial-gradient(circle at 90% 8%, rgba(245,168,62,.35), transparent 28%),
      linear-gradient(135deg, #201b15, #50351f);
  }

  .pricing-copy::before,
  .pricing-copy::after { display: none; }

  .price-note { margin-top: 12px; padding: 13px; border-radius: 16px; font-size: 14px; }
  .price-card,
  .price-card:nth-child(2),
  .price-card:nth-child(5),
  .price-custom { transform: none !important; grid-column: auto; }
  .price-card strong { font-size: clamp(26px, 8vw, 36px); }
  .price-card p,
  .estimate-card p,
  .item-card p,
  .why-card p,
  .photo-card p,
  .aftercare-card p { font-size: 14.5px; line-height: 1.55; }

  .side-title {
    min-height: 0;
    padding: 20px;
    border-radius: 24px;
  }

  .why-card:nth-child(2),
  .why-card:nth-child(4),
  .photo-card:nth-child(2),
  .photo-card:nth-child(4) {
    transform: none !important;
  }

  .why-card::before { font-size: 54px; top: 8px; right: 14px; }
  .why-card .icon-dot,
  .photo-card span {
    width: 40px;
    height: 40px;
    border-radius: 13px;
    margin-bottom: 12px;
  }

  .journey-head {
    border-left: 0;
    border-top: 7px solid var(--amber);
    padding: 16px 0 0;
  }

  .timeline { gap: 10px; }
  .timeline::before { display: none; }
  .route-card,
  .route-card:nth-child(even) {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 10px;
    margin-left: 0;
    align-items: stretch;
  }

  .route-card span {
    width: 48px;
    height: 48px;
    font-size: 13px;
  }

  .route-card div { padding: 16px; border-radius: 20px; }
  .route-card p { font-size: 14px; }

  .map-stage {
    min-height: 0;
    border-radius: 26px;
    display: flex;
    flex-direction: column;
  }

  .map-stage iframe {
    height: 260px;
    min-height: 260px;
  }

  .address-card {
    position: static;
    width: auto;
    padding: 20px;
    border-radius: 0 0 26px 26px;
    box-shadow: none;
  }

  .address-card address {
    margin: 14px 0 16px;
    font-size: clamp(22px, 6.8vw, 30px);
    line-height: 1.12;
    letter-spacing: -.045em;
    overflow-wrap: normal;
  }

  .request-zone { align-items: start; }
  .form-heading { grid-template-columns: 1fr; gap: 10px; margin-bottom: 18px; }

  input,
  select,
  textarea {
    min-height: 46px;
    padding: 13px 14px;
    border-radius: 15px;
    font-size: 16px;
  }

  textarea { min-height: 130px; }
  fieldset { display: grid; padding: 14px; border-radius: 16px; gap: 8px; }
  .radio-line { width: 100%; }

  .file-box { padding: 14px; border-radius: 16px; }
  .file-box input { font-size: 13px; }

  .request-aside strong {
    font-size: clamp(28px, 8.5vw, 40px);
    line-height: .96;
  }

  .request-aside span {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 12px 13px;
    border-radius: 15px;
    font-size: 14px;
  }

  .offer-item { border-radius: 20px; }
  .offer-item button { padding: 16px; font-size: 15px; line-height: 1.15; }
  .offer-item button span:first-child { overflow-wrap: normal; }
  .offer-item p { padding-inline: 16px; font-size: 14px; }
  .offer-item.is-open p { padding: 0 16px 16px; max-height: 1800px; }

  .site-footer {
    margin: 44px auto 18px;
    padding: 20px;
    border-radius: 24px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .site-footer button { width: 100%; min-height: 44px; }
  .back-top-btn { width: 44px; height: 44px; right: 12px; bottom: 12px; }
}

@media (max-width: 390px) {
  .section-shell,
  .site-header,
  .site-footer { width: calc(100% - 20px); }
  .main-nav { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  h1 { font-size: clamp(36px, 11.2vw, 44px); }
  h2, .workbench-intro h2 { font-size: clamp(28px, 8.6vw, 36px); }
  .identity-rail { grid-template-columns: 1fr; }
}
