:root {
  --bg: #fbf9f5;
  --surface: rgba(255, 255, 255, 0.86);
  --surface-strong: #ffffff;
  --surface-soft: #f4f0e8;
  --surface-deep: #ebe5db;
  --text: #1b1c1a;
  --muted: #5d534a;
  --navy: #1b263b;
  --navy-soft: #46536b;
  --copper: #b87333;
  --copper-deep: #8c4f10;
  --line: rgba(82, 68, 57, 0.12);
  --line-strong: rgba(27, 38, 59, 0.14);
  --shadow: 0 28px 80px -44px rgba(17, 27, 45, 0.36);
  --shadow-soft: 0 18px 48px -32px rgba(17, 27, 45, 0.24);
  --radius-xl: 36px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --header-offset: 18px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at left top, rgba(184, 115, 51, 0.16), transparent 28%),
    radial-gradient(circle at right 10%, rgba(27, 38, 59, 0.12), transparent 26%),
    linear-gradient(180deg, #fcfaf7 0%, #f5efe6 100%);
}

body.is-gated {
  overflow: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: -1;
  filter: blur(14px);
}

body::before {
  top: 7%;
  right: -120px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(184, 115, 51, 0.1);
}

body::after {
  bottom: 10%;
  left: -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(27, 38, 59, 0.1);
}

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

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

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

.page-shell {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 44px;
}

body.is-gated .page-shell {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  max-height: 0;
  overflow: hidden;
}

body.is-gated .owner-dialog,
body.is-gated .cart-fab {
  display: none;
}

.magic-gate {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(17, 24, 39, 0.46);
  backdrop-filter: blur(18px);
}

body.is-gated .magic-gate {
  display: flex;
}

.magic-gate-card {
  width: min(560px, 100%);
  padding: 34px;
  border-radius: 34px;
  background: rgba(251, 249, 245, 0.94);
  box-shadow: 0 28px 80px -44px rgba(7, 11, 20, 0.5);
}

.magic-gate-card h1 {
  margin-top: 18px;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
}

.magic-gate-card p {
  margin: 16px 0 0;
  line-height: 1.8;
  color: var(--muted);
}

.magic-gate-note {
  font-size: 14px;
}

.site-header {
  position: sticky;
  top: var(--header-offset);
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 18px;
  margin-bottom: 30px;
  border-radius: 999px;
  background: rgba(251, 249, 245, 0.72);
  box-shadow: 0 14px 40px -28px rgba(27, 38, 59, 0.36);
  backdrop-filter: blur(16px);
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
}

.brand-name {
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-meta,
.footer-copy,
.section-header p,
.hero-text,
.service-card p,
.review-card p,
.review-feature p,
.map-copy p,
.contact-copy p,
.process-item p,
.detail-list span,
.activation-note,
.offer-copy,
.form-output,
.summary-list,
.activation-list,
.review-meta {
  color: var(--muted);
}

.brand-meta,
.footer-copy {
  margin: 4px 0 0;
  font-size: 14px;
}

.nav-links,
.header-actions,
.footer-links,
.hero-actions,
.signal-row,
.map-actions,
.trust-items {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.nav-links {
  justify-content: center;
}

.nav-links a {
  position: relative;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy-soft);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--copper), rgba(184, 115, 51, 0));
  transition: transform 180ms ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.availability-pill,
.eyebrow,
.platform-pill,
.panel-badge,
.signal-pill,
.offer-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5); }
  50% { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
}

.icon-sm {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.icon-xs {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.availability-pill,
.eyebrow,
.panel-badge {
  background: rgba(27, 38, 59, 0.08);
  color: var(--navy);
}

.platform-pill,
.signal-pill {
  background: rgba(255, 255, 255, 0.8);
  box-shadow: inset 0 0 0 1px rgba(27, 38, 59, 0.08);
  color: var(--navy);
}

.offer-kicker {
  background: rgba(184, 115, 51, 0.16);
  color: var(--copper-deep);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
  cursor: pointer;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -16px rgba(17, 27, 45, 0.3);
}

.button:active {
  transform: translateY(0);
}

.button-lg {
  min-height: 56px;
  padding: 0 28px;
  gap: 10px;
  font-size: 1.02rem;
}

.header-cta {
  gap: 8px;
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--copper) 0%, var(--copper-deep) 100%);
  box-shadow: var(--shadow-soft);
}

.button-secondary {
  color: var(--navy);
  background: rgba(27, 38, 59, 0.08);
}

.button-ghost {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 0 0 1px rgba(27, 38, 59, 0.08);
}

.section {
  padding: 54px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 30px;
  align-items: start;
}

.hero-copy {
  padding-top: 28px;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--text);
}

h1,
h2 {
  font-family: "Noto Serif", serif;
  letter-spacing: -0.04em;
}

h1 {
  margin-top: 18px;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1;
}

h2 {
  margin-top: 18px;
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  line-height: 1.1;
}

h3 {
  font-size: 1.05rem;
  line-height: 1.25;
}

.hero-text {
  margin: 22px 0 0;
  font-size: 1.06rem;
  line-height: 1.8;
  max-width: 62ch;
}

.hero-actions {
  margin-top: 32px;
}

.signal-row {
  margin-top: 28px;
}

.quote-strip {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.6);
  box-shadow: inset 0 0 0 1px rgba(82, 68, 57, 0.08);
}

.quote-strip p,
.review-quote {
  margin: 0;
  font-family: "Noto Serif", serif;
  font-size: 1.08rem;
  line-height: 1.55;
}

.hero-stage {
  display: grid;
  gap: 18px;
}

.card {
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-visual {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  padding: 22px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 24px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, rgba(27, 38, 59, 0.08), rgba(184, 115, 51, 0.08));
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 576px;
  object-fit: cover;
  border-radius: 26px;
}

.floating-card {
  position: absolute;
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(251, 249, 245, 0.9);
  box-shadow: var(--shadow-soft);
  max-width: 270px;
}

.floating-card strong {
  color: var(--navy);
  font-size: 0.98rem;
}

.floating-card span {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--muted);
}

.floating-card-top {
  top: 44px;
  left: 42px;
}

.floating-card-bottom {
  right: 36px;
  bottom: 38px;
}

.floating-label,
.detail-label,
.summary-label {
  color: var(--navy-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-panel {
  padding: 28px;
}

.hero-panel h2 {
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
}

.detail-list {
  display: grid;
  gap: 16px;
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
}

.detail-list li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(82, 68, 57, 0.1);
}

.detail-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.detail-list a,
.footer-links a:first-child {
  color: var(--copper-deep);
  font-weight: 800;
}

.trust-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 8px 0 20px;
  padding: 18px 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  box-shadow: inset 0 0 0 1px rgba(82, 68, 57, 0.08);
}

.trust-line p {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}

.trust-items span {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy-soft);
}

.section-header {
  display: grid;
  gap: 18px;
  max-width: 70ch;
}

.section-header p {
  margin: 0;
  line-height: 1.85;
}

.services-grid,
.reputation-grid {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

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

.reputation-grid {
  grid-template-columns: 1.2fr repeat(2, minmax(0, 0.9fr));
  align-items: stretch;
}

.service-card,
.review-card,
.review-feature,
.activation-copy,
.activation-funnel,
.map-card,
.contact-form {
  padding: 26px;
}

.service-card {
  display: grid;
  gap: 14px;
  min-height: 228px;
  transition: transform 320ms cubic-bezier(.22,.68,0,1.2), box-shadow 320ms ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 64px -32px rgba(17, 27, 45, 0.28);
}

.service-icon-wrap {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(184, 115, 51, 0.12), rgba(184, 115, 51, 0.04));
  color: var(--copper);
}

.service-icon-wrap svg {
  width: 24px;
  height: 24px;
}

.service-index,
.metric-number {
  font-family: "Noto Serif", serif;
  font-size: 1.8rem;
  letter-spacing: -0.05em;
  color: rgba(27, 38, 59, 0.22);
}

.service-card p,
.review-card p,
.review-feature p {
  margin: 0;
  line-height: 1.8;
}

.service-card-featured {
  background: linear-gradient(160deg, rgba(255, 220, 194, 0.7), rgba(255, 255, 255, 0.82));
}

.review-feature {
  display: grid;
  gap: 18px;
}

.review-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.metric-card {
  display: grid;
  place-content: center;
  text-align: center;
}

.metric-card p {
  max-width: 22ch;
}

.map-grid,
.contact-grid,
.activation-grid {
  display: grid;
  gap: 24px;
  align-items: start;
}

.map-grid {
  grid-template-columns: 0.88fr 1.12fr;
}

.contact-grid {
  grid-template-columns: 0.9fr 1.1fr;
}

.activation-grid {
  grid-template-columns: 0.86fr 1.14fr;
  margin-top: 30px;
}

.map-copy {
  display: grid;
  gap: 18px;
  align-content: start;
}

.map-copy p,
.contact-copy p {
  margin: 0;
  line-height: 1.85;
}

.zones-list,
.activation-list,
.summary-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.zones-list li,
.activation-list li,
.summary-list li {
  position: relative;
  padding-left: 24px;
  line-height: 1.7;
}

.zones-list li::before,
.activation-list li::before,
.summary-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--copper), var(--copper-deep));
}

.map-card {
  position: relative;
  overflow: hidden;
  padding: 72px 16px 16px;
  background:
    linear-gradient(180deg, rgba(238, 244, 250, 0.98), rgba(255, 255, 255, 0.95)),
    rgba(255, 255, 255, 0.92);
}

.map-card iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
  border-radius: 28px;
}

.map-card iframe:not(.google-map-embed) {
  filter: saturate(0.82) contrast(1.03) brightness(1.02) hue-rotate(-4deg);
}

.google-map-embed {
  filter: saturate(0.9) contrast(1.02) brightness(1.01);
}

.map-search {
  position: absolute;
  top: 18px;
  left: 18px;
  right: 92px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow:
    0 10px 24px -18px rgba(20, 30, 45, 0.45),
    inset 0 0 0 1px rgba(27, 38, 59, 0.08);
  font-weight: 700;
  color: #32404f;
}

.map-search-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ea4335;
  box-shadow: 0 0 0 4px rgba(234, 67, 53, 0.16);
}

.map-controls {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  display: grid;
  gap: 8px;
}

.map-controls span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow:
    0 10px 24px -18px rgba(20, 30, 45, 0.45),
    inset 0 0 0 1px rgba(27, 38, 59, 0.08);
  color: #32404f;
  font-size: 1.35rem;
  font-weight: 700;
}

.map-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 18px;
  color: var(--muted);
}

.map-caption strong {
  color: var(--navy);
}

.star-row {
  display: flex;
  align-items: center;
  gap: 4px;
}

.icon-star {
  width: 20px;
  height: 20px;
  color: #d4d0c8;
}

.icon-star.filled {
  color: #f59e0b;
  fill: #f59e0b;
}

.icon-star.half {
  color: #f59e0b;
  fill: none;
}

.score-highlight {
  color: var(--copper);
  font-size: 1.3rem;
}

.review-card,
.review-feature {
  transition: transform 320ms cubic-bezier(.22,.68,0,1.2), box-shadow 320ms ease;
}

.review-card:hover,
.review-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px -32px rgba(17, 27, 45, 0.3);
}

.contact-copy {
  display: grid;
  gap: 18px;
}

.process-list {
  display: grid;
  gap: 18px;
  margin-top: 12px;
}

.process-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.56);
  box-shadow: inset 0 0 0 1px rgba(82, 68, 57, 0.08);
}

.process-item span {
  font-family: "Noto Serif", serif;
  font-size: 2rem;
  line-height: 1;
  color: rgba(27, 38, 59, 0.24);
}

.process-item strong {
  display: block;
  margin-bottom: 6px;
}

.process-item p {
  margin: 0;
}

.contact-form h3 {
  margin-top: 18px;
  margin-bottom: 18px;
  font-size: 1.15rem;
}

#quote-form,
.activation-form {
  display: grid;
  gap: 14px;
}

#quote-form label,
.activation-form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
}

input,
select,
textarea {
  min-height: 54px;
  padding: 0 16px;
  border: 0;
  border-radius: 18px;
  background: var(--surface-soft);
  color: var(--text);
}

textarea {
  min-height: 130px;
  padding-top: 14px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(184, 115, 51, 0.28);
}

.form-output {
  min-height: 30px;
  margin-top: 14px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(27, 38, 59, 0.06);
  line-height: 1.7;
}

.activation-copy h3,
.summary-panel h3 {
  font-size: 1.15rem;
}

.activation-note {
  margin: 22px 0 0;
  font-size: 14px;
  line-height: 1.8;
}

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

.offer-card {
  display: grid;
  gap: 12px;
  padding: 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: inset 0 0 0 1px rgba(82, 68, 57, 0.08);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.offer-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.offer-card.is-active {
  background: rgba(255, 220, 194, 0.66);
  box-shadow:
    inset 0 0 0 1px rgba(184, 115, 51, 0.22),
    0 18px 46px -34px rgba(140, 79, 16, 0.34);
}

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

.offer-card strong {
  font-size: 1.2rem;
}

.offer-price,
.summary-price {
  font-family: "Noto Serif", serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.04em;
  color: var(--navy);
}

.offer-price small,
.summary-price small {
  font-size: 0.55em;
  font-weight: 600;
  opacity: 0.65;
}

.summary-panel {
  display: grid;
  gap: 16px;
  margin-top: 22px;
  padding: 24px;
  border-radius: 28px;
  background: rgba(27, 38, 59, 0.06);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 26px;
  margin-top: 24px;
  border-top: 1px solid rgba(82, 68, 57, 0.12);
}

.footer-links a {
  font-weight: 700;
}

.owner-dialog {
  width: min(1080px, calc(100% - 28px));
  padding: 54px 16px 16px;
  border: 0;
  border-radius: 36px;
  background: rgba(247, 242, 235, 0.96);
  box-shadow: 0 42px 90px -44px rgba(7, 11, 20, 0.54);
}

.owner-dialog::backdrop {
  background: rgba(10, 15, 24, 0.54);
  backdrop-filter: blur(18px);
}

.dialog-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(27, 38, 59, 0.08);
  color: var(--navy);
  font-size: 1.6rem;
  cursor: pointer;
}

.owner-dialog-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 18px;
  align-items: start;
}

.owner-dialog .activation-copy,
.owner-dialog .activation-funnel {
  box-shadow: none;
  background: rgba(255, 255, 255, 0.82);
}

.cart-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--copper) 0%, var(--copper-deep) 100%);
  box-shadow: var(--shadow-soft);
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.cart-fab:hover {
  transform: translateY(-1px);
}

.cart-fab svg {
  width: 21px;
  height: 21px;
}

@media (max-width: 1120px) {
  .site-header {
    border-radius: 30px;
    padding: 18px;
  }

  .hero,
  .services-grid,
  .reputation-grid,
  .map-grid,
  .contact-grid,
  .activation-grid,
  .owner-dialog-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-top: 10px;
  }

  .hero-visual {
    min-height: 520px;
  }

  .hero-visual img {
    min-height: 476px;
  }

  .map-caption,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .owner-dialog {
    width: min(780px, calc(100% - 20px));
  }
}

@media (max-width: 860px) {
  :root {
    --header-offset: 10px;
  }

  .page-shell {
    width: min(100% - 18px, 1240px);
    padding-top: 12px;
  }

  .site-header {
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-links {
    order: 3;
  }

  .header-actions {
    justify-content: center;
  }

  h1 {
    font-size: clamp(1.8rem, 8vw, 2.6rem);
  }

  h2 {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .quote-strip,
  .trust-line {
    border-radius: 28px;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-visual {
    min-height: 440px;
    padding: 18px;
  }

  .hero-visual img {
    min-height: 404px;
  }

  .floating-card {
    position: static;
    max-width: none;
    margin-top: 14px;
  }

  .offer-selector {
    grid-template-columns: 1fr;
  }

  .map-search {
    right: 76px;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: calc(100% - 14px);
  }

  .section {
    padding: 42px 0;
  }

  .site-header,
  .hero-panel,
  .service-card,
  .review-card,
  .review-feature,
  .activation-copy,
  .activation-funnel,
  .map-card,
  .contact-form,
  .summary-panel,
  .magic-gate-card,
  .owner-dialog {
    border-radius: 24px;
  }

  .site-header {
    padding: 14px;
  }

  .brand-mark {
    width: 52px;
    height: 52px;
  }

  .button {
    width: 100%;
  }

  .owner-dialog {
    width: calc(100% - 12px);
    padding: 48px 10px 10px;
  }

  .dialog-close {
    top: 10px;
    right: 10px;
  }

  .cart-fab {
    right: 12px;
    bottom: 12px;
    left: 12px;
    justify-content: center;
  }

  .hero-actions,
  .map-actions,
  .footer-links,
  .header-actions {
    width: 100%;
  }

  .quote-strip,
  .trust-line,
  .process-item,
  .map-caption,
  .detail-list li {
    gap: 12px;
  }

  .map-search {
    right: 70px;
    left: 14px;
    min-height: 42px;
    padding: 0 14px;
  }

  .map-controls {
    top: 14px;
    right: 14px;
  }

  .map-controls span {
    width: 40px;
    height: 40px;
    border-radius: 14px;
  }
}

/* ── Scroll-reveal animations ── */
.fade-in-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms cubic-bezier(.22,.68,0,1.2), transform 600ms cubic-bezier(.22,.68,0,1.2);
}

.fade-in-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Stripe / loading button states ── */
.button.is-loading {
  pointer-events: none;
  opacity: 0.7;
  position: relative;
}

.button.is-loading::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2.5px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: btn-spin 0.6s linear infinite;
  right: 18px;
}

@keyframes btn-spin {
  to { transform: rotate(360deg); }
}

/* ── Footer upgrade ── */
.site-footer {
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--copper), transparent);
}

/* ── Smooth section dividers ── */
.section + .section {
  border-top: 1px solid rgba(82, 68, 57, 0.06);
}
