@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Poppins:wght@400;500;600;700&display=swap");

:root {
  color-scheme: light;
  --ink: #1f2722;
  --muted: #68736b;
  --paper: #f7f5ef;
  --surface: #ffffff;
  --line: #d9d5cb;
  --accent: #2d6a4f;
  --accent-dark: #1b4332;
  --copper: #b26b43;
  --clay: #d9b08c;
  --blue: #8fb6c8;
  --shadow: 0 18px 45px rgba(31, 39, 34, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(31, 39, 34, 0.08);
  background: rgba(247, 245, 239, 0.92);
  backdrop-filter: blur(16px);
}

.brand,
.topnav a,
.nav-button {
  color: var(--ink);
  text-decoration: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.brand-mark {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
}

.topnav {
  display: flex;
  gap: 10px;
}

.topnav a,
.nav-button {
  padding: 10px 12px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 0.94rem;
}

.topnav a:hover,
.nav-button:hover {
  color: var(--accent-dark);
}

.workspace {
  display: grid;
  grid-template-columns: minmax(320px, 1.1fr) minmax(340px, 0.9fr);
  min-height: 100vh;
}

.preview-panel {
  position: sticky;
  top: 0;
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 100vh;
  overflow: hidden;
  background: #dfe9e6;
}

.house-stage {
  position: relative;
  display: grid;
  min-height: 560px;
  place-items: end start;
  padding: clamp(42px, 8vh, 88px) clamp(24px, 6vw, 80px) clamp(24px, 6vw, 80px);
}

.house-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.house-image[hidden] {
  display: none;
}

.house-image[hidden] + .house-hero-card {
  position: relative;
}

.house-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31, 39, 34, 0.08), rgba(31, 39, 34, 0.72));
}

.house-hero-card {
  position: relative;
  z-index: 1;
  display: grid;
  max-width: 680px;
  gap: 10px;
  color: #fff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.26);
}

.house-hero-card .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.house-hero-card h2 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.house-meta,
.house-description {
  margin: 0;
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.5;
}

.house-meta {
  font-size: 1.05rem;
  font-weight: 800;
}

.skyline {
  position: absolute;
  inset: auto 0 0;
  z-index: 0;
  height: 34%;
  background:
    linear-gradient(135deg, transparent 30%, rgba(45, 106, 79, 0.18) 31% 40%, transparent 41%),
    linear-gradient(165deg, transparent 25%, rgba(31, 39, 34, 0.12) 26% 34%, transparent 35%);
  opacity: 0.9;
}

.house {
  position: relative;
  z-index: 1;
  width: min(72vw, 600px);
  aspect-ratio: 1.45;
  filter: drop-shadow(0 26px 28px rgba(31, 39, 34, 0.23));
}

.roof {
  position: absolute;
  inset: 10% 6% auto;
  height: 26%;
  clip-path: polygon(10% 100%, 50% 0, 90% 100%);
  background: #2f3330;
}

.body {
  position: absolute;
  inset: 33% 12% 22%;
  display: grid;
  grid-template-columns: 1fr 0.58fr 1fr;
  align-items: end;
  gap: 9%;
  padding: 9% 10% 0;
  border: 1px solid rgba(31, 39, 34, 0.18);
  background: #c79461;
}

.house[data-facade="plaster"] .body {
  background: #ece8df;
}

.house[data-facade="metal"] .body {
  background: linear-gradient(90deg, #7c8580 0 12%, #9da6a1 12% 24%, #737c77 24% 36%, #aab2ad 36% 48%, #7d8681 48% 60%, #a1aaa5 60% 72%, #717a75 72% 84%, #aab2ad 84%);
}

.window,
.door {
  display: block;
  background: linear-gradient(145deg, #d9edf2, #7b9baa);
  border: 5px solid #26312b;
}

.window {
  height: 46%;
  margin-bottom: 14%;
}

.door {
  height: 72%;
  background: #2d3b35;
}

.deck {
  position: absolute;
  inset: auto 4% 14%;
  height: 8%;
  border-radius: 2px;
  background: repeating-linear-gradient(90deg, #8c684a 0 32px, #76543a 32px 36px);
}

.estimate-strip {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 22px clamp(18px, 4vw, 56px);
  background: rgba(31, 39, 34, 0.9);
  color: #fff;
}

.estimate-strip span {
  color: rgba(255, 255, 255, 0.72);
}

.estimate-strip strong {
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  letter-spacing: 0;
}

.config-panel {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: clamp(28px, 5vw, 72px);
  background: var(--paper);
}

.section-heading {
  max-width: 720px;
}

.section-description {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-weight: 750;
  line-height: 1.06;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 5rem);
}

h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.option-groups {
  display: grid;
  gap: 24px;
}

.option-group {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.option-group legend {
  margin-bottom: 12px;
  font-weight: 750;
}

.choices {
  display: grid;
  gap: 10px;
}

.choice {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 5px 16px rgba(31, 39, 34, 0.04);
}

.choice:has(input:checked),
.choice.is-selected {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.12);
}

.choice input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--accent);
}

.quantity-choice {
  grid-template-columns: auto 1fr;
}

.quantity-stepper {
  display: grid;
  grid-template-columns: 36px minmax(52px, auto) 36px;
  align-items: center;
  gap: 4px;
}

.quantity-stepper-button {
  width: 36px;
  height: 36px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 800;
}

.quantity-stepper-button:disabled {
  opacity: 0.42;
}

.quantity-stepper-value {
  min-width: 52px;
  color: var(--ink);
  font-weight: 760;
  text-align: center;
}

.choice-content {
  display: grid;
  gap: 5px;
}

.choice-title {
  font-weight: 720;
}

.choice-description,
.muted {
  color: var(--muted);
}

.choice-note {
  color: var(--accent-dark);
  font-size: 0.88rem;
  font-weight: 760;
}

.choice-price {
  color: var(--accent-dark);
  font-weight: 760;
}

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

.primary-action,
.secondary-action,
.icon-action {
  min-height: 42px;
  border: 0;
  border-radius: 8px;
  font-weight: 760;
  transition: transform 120ms ease, box-shadow 120ms ease, background 120ms ease, border-color 120ms ease;
}

.primary-action:active,
.secondary-action:active,
.icon-action:active {
  transform: translateY(1px);
  box-shadow: inset 0 2px 6px rgb(0 0 0 / 14%);
}

.primary-action:disabled,
.secondary-action:disabled,
.icon-action:disabled {
  cursor: wait;
  opacity: 0.78;
}

.primary-action {
  padding: 0 18px;
  background: var(--accent-dark);
  color: #fff;
}

.secondary-action {
  padding: 0 18px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}

.secondary-action.compact {
  width: fit-content;
}

.icon-action {
  padding: 0 12px;
  border: 1px solid #e2beb0;
  background: #fff8f5;
  color: #7b3425;
}

.customer-page {
  --abodes-dark: #20251e;
  --abodes-ink: #31361d;
  --abodes-cream: #f2e8e2;
  --abodes-blush: #ffe5d4;
  --abodes-gold: #c9823b;
  --abodes-line: rgba(49, 54, 29, 0.16);
  --abodes-white: #fffaf6;
  min-height: 100vh;
  background: var(--abodes-cream);
  color: var(--abodes-ink);
  font-family: Poppins, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.customer-page .abodes-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(22px, 6vw, 78px);
  color: var(--abodes-blush);
}

.customer-page .abodes-logo,
.customer-page .abodes-nav a {
  color: var(--abodes-blush);
  text-decoration: none;
}

.customer-page .abodes-logo {
  display: inline-grid;
  gap: 6px;
  justify-items: center;
  color: var(--abodes-gold);
  font-size: 0.82rem;
  font-weight: 700;
}

.customer-page .abodes-logo-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(201, 130, 59, 0.72);
  border-radius: 50%;
  color: var(--abodes-gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-weight: 700;
}

.customer-page .abodes-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 38px);
  font-weight: 600;
}

.customer-page .abodes-nav a:last-child {
  padding: 12px 24px;
  border: 1px solid rgba(255, 229, 212, 0.82);
  border-radius: 999px;
}

.customer-page .abodes-nav a:hover {
  color: #fff;
}

.customer-page .abodes-hero {
  display: grid;
  min-height: 360px;
  place-items: end center;
  padding: 128px clamp(22px, 6vw, 78px) 70px;
  background: var(--abodes-dark);
  color: var(--abodes-blush);
  text-align: center;
}

.customer-page .abodes-hero.has-fanart {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(31, 39, 34, 0.2) 0%, rgba(31, 39, 34, 0.74) 100%),
    var(--house-fanart-image),
    var(--abodes-dark);
  background-position: center;
  background-size: cover;
}

.customer-page .abodes-hero.has-fanart::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 46%;
  background: linear-gradient(180deg, rgba(244, 231, 223, 0), rgba(244, 231, 223, 0.12));
  pointer-events: none;
}

.customer-page .eyebrow {
  margin: 0 0 16px;
  color: var(--abodes-gold);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}

.customer-page h1,
.customer-page h2 {
  color: var(--abodes-ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  letter-spacing: 0;
}

.customer-page .abodes-hero h1 {
  max-width: 1080px;
  color: var(--abodes-blush);
  font-size: clamp(3.8rem, 8vw, 6.5rem);
  line-height: 0.95;
}

.customer-page .abodes-detail {
  display: grid;
  gap: clamp(54px, 7vw, 96px);
  width: min(100%, 1240px);
  margin: 0 auto;
  padding: clamp(32px, 5vw, 58px) clamp(20px, 4vw, 42px) clamp(68px, 8vw, 110px);
}

.customer-page .abodes-media-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 28px;
  align-items: stretch;
}

.customer-page .house-image {
  position: static;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  max-height: 520px;
  border-radius: 28px;
  object-fit: cover;
}

.customer-page .house-image[hidden] {
  display: none;
}

.customer-page .house-summary-panel {
  display: grid;
  align-content: center;
  gap: 24px;
  min-height: 360px;
  padding: clamp(26px, 4vw, 46px);
  border-radius: 28px;
  background: var(--abodes-white);
}

.customer-page .house-meta {
  margin: 0;
  color: var(--abodes-ink);
  font-size: 1.18rem;
  font-weight: 600;
  line-height: 1.55;
}

.customer-page .house-description {
  margin: 0;
  color: rgba(49, 54, 29, 0.82);
  font-size: 1.02rem;
  line-height: 1.8;
}

.customer-page .price-line {
  display: grid;
  gap: 4px;
  padding-top: 4px;
  color: var(--abodes-ink);
}

.customer-page .price-line span,
.customer-page .estimate-card span {
  color: rgba(49, 54, 29, 0.72);
  font-size: 0.9rem;
  font-weight: 600;
}

.customer-page .price-line strong {
  font-size: 1.25rem;
}

.customer-page .config-panel {
  display: grid;
  gap: 30px;
  padding: 0;
  background: transparent;
}

.customer-page .section-heading {
  max-width: 860px;
}

.customer-page .section-heading h2 {
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 0.98;
}

.customer-page .section-description {
  max-width: 740px;
  color: rgba(49, 54, 29, 0.76);
  font-size: 1.02rem;
  line-height: 1.7;
}

.customer-page .config-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  gap: 28px;
  align-items: start;
}

.customer-page .option-group legend {
  margin-bottom: 18px;
  color: var(--abodes-ink);
  font-size: 1.1rem;
}

.customer-page .config-step-indicator {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 18px;
}

.customer-page .config-step-indicator span {
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid var(--abodes-line);
  border-radius: 999px;
  background: rgba(255, 250, 246, 0.56);
  color: rgba(49, 54, 29, 0.64);
  font-weight: 700;
  text-align: center;
}

.customer-page .config-step-indicator span.is-active {
  border-color: rgba(201, 130, 59, 0.68);
  background: rgba(201, 130, 59, 0.14);
  color: var(--abodes-ink);
}

.customer-page .config-step-actions {
  margin-top: 20px;
}

.customer-page .config-step-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.customer-page .config-complete-panel {
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid rgba(201, 130, 59, 0.32);
  border-radius: 18px;
  background: rgba(255, 250, 246, 0.78);
}

.customer-page .config-complete-panel span {
  color: var(--abodes-gold);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.customer-page .config-complete-panel h3 {
  margin: 0;
  color: var(--abodes-ink);
  font-size: 1.35rem;
}

.customer-page .config-complete-panel p {
  margin: 0;
  color: rgba(49, 54, 29, 0.74);
  line-height: 1.55;
}

.customer-page .choices {
  gap: 14px;
}

.customer-page .choice {
  padding: 18px;
  border: 1px solid var(--abodes-line);
  border-radius: 18px;
  background: rgba(255, 250, 246, 0.78);
  box-shadow: none;
}

.customer-page .choice:has(input:checked),
.customer-page .choice.is-selected {
  border-color: rgba(201, 130, 59, 0.7);
  box-shadow: 0 0 0 3px rgba(201, 130, 59, 0.13);
}

.customer-page .choice input {
  accent-color: var(--abodes-gold);
}

.customer-page .choice-title {
  color: var(--abodes-ink);
  font-weight: 600;
}

.customer-page .choice-description {
  color: rgba(49, 54, 29, 0.72);
  line-height: 1.55;
}

.customer-page .choice-price,
.customer-page .choice-note {
  color: var(--abodes-gold);
  font-weight: 700;
}

.customer-page .quantity-stepper-button {
  border-color: var(--abodes-line);
  border-radius: 50%;
  background: var(--abodes-white);
  color: var(--abodes-ink);
}

.customer-page .estimate-card {
  position: sticky;
  top: 22px;
  display: grid;
  gap: 14px;
  padding: 24px;
  border-radius: 22px;
  background: var(--abodes-dark);
  color: var(--abodes-blush);
}

.customer-page .estimate-card span {
  color: rgba(255, 229, 212, 0.76);
}

.customer-page .estimate-card strong {
  color: var(--abodes-blush);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
}

.customer-page .selected-items-summary {
  display: grid;
  gap: 10px;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 229, 212, 0.18);
  border-bottom: 1px solid rgba(255, 229, 212, 0.18);
}

.customer-page .selected-items-summary[hidden] {
  display: none;
}

.customer-page .selected-items-title {
  color: rgba(255, 229, 212, 0.76);
  font-size: 0.9rem;
  font-weight: 700;
}

.customer-page .selected-items-empty {
  margin: 0;
  color: rgba(255, 229, 212, 0.62);
  font-size: 0.92rem;
  line-height: 1.45;
}

.customer-page .selected-items-summary ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.customer-page .selected-items-summary li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
}

.customer-page .selected-items-summary li span {
  display: grid;
  gap: 2px;
}

.customer-page .selected-items-summary li strong {
  color: var(--abodes-blush);
  font-size: 0.95rem;
  line-height: 1.25;
}

.customer-page .selected-items-summary li small {
  color: rgba(255, 229, 212, 0.62);
  font-size: 0.78rem;
}

.customer-page .selected-items-summary li b {
  color: var(--abodes-gold);
  font-size: 0.9rem;
  white-space: nowrap;
}

.customer-page .estimate-card .muted {
  color: rgba(255, 229, 212, 0.76);
}

.customer-page .estimate-card .muted a {
  color: var(--abodes-blush);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.customer-page .estimate-actions {
  display: grid;
  gap: 10px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 229, 212, 0.18);
}

.customer-page .estimate-actions[hidden] {
  display: none;
}

.customer-page .primary-action {
  width: fit-content;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--abodes-gold);
  color: #fff;
}

.customer-page .primary-action:disabled {
  opacity: 0.55;
}

.customer-page .secondary-action {
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid rgba(49, 54, 29, 0.28);
  border-radius: 999px;
  background: transparent;
  color: var(--abodes-ink);
}

.has-open-modal {
  overflow: hidden;
}

.customer-page .inquiry-modal[hidden] {
  display: none;
}

.customer-page .inquiry-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 24px;
}

.customer-page .inquiry-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(27, 34, 25, 0.58);
}

.customer-page .inquiry-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  width: min(620px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  padding: 30px;
  border-radius: 22px;
  background: var(--abodes-blush);
  color: var(--abodes-ink);
  box-shadow: 0 30px 90px rgba(27, 34, 25, 0.28);
}

.customer-page .inquiry-dialog h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.customer-page .inquiry-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(49, 54, 29, 0.18);
  border-radius: 50%;
  background: rgba(255, 250, 246, 0.84);
  color: var(--abodes-ink);
  font-size: 1.5rem;
  line-height: 1;
}

.customer-page .inquiry-form {
  display: grid;
  gap: 14px;
}

.customer-page .inquiry-form .field {
  display: grid;
  gap: 7px;
  color: var(--abodes-ink);
  font-weight: 700;
}

.customer-page .inquiry-form input,
.customer-page .inquiry-form textarea {
  width: 100%;
  border: 1px solid rgba(49, 54, 29, 0.18);
  border-radius: 14px;
  background: rgba(255, 250, 246, 0.96);
  color: var(--abodes-ink);
  padding: 12px 14px;
  font: inherit;
}

.customer-page .inquiry-form input {
  min-height: 46px;
}

.customer-page .inquiry-form textarea {
  resize: vertical;
}




.customer-page .inquiry-form[data-completed="true"] .field,
.customer-page .inquiry-form[data-completed="true"] #sendInquiry {
  display: none;
}

.customer-page .inquiry-website-link {
  justify-self: start;
  text-align: center;
  text-decoration: none;
}

.customer-page .inquiry-website-link[hidden] {
  display: none;
}

.customer-page .inquiry-status {
  margin: 0;
  padding: 13px 14px;
  border: 1px solid #d9d5cb;
  border-radius: 8px;
  background: #f7f5ef;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.45;
}

.customer-page .inquiry-status[data-type="saving"] {
  border-color: #d9aa72;
  background: #fff6e8;
  color: #83501d;
}

.customer-page .inquiry-status[data-type="success"] {
  border-color: #8dbd98;
  background: #eef7ed;
  color: #17643d;
}

.customer-page .inquiry-status[data-type="warning"] {
  border-color: #d9aa72;
  background: #fff7e8;
  color: #755322;
}

.customer-page .inquiry-status[data-type="error"] {
  border-color: #df9c8d;
  background: #fff4ef;
  color: #9f2f1f;
}

.customer-page .inquiry-form .field[data-invalid="true"] span {
  color: #9f2f1f;
}

.customer-page .inquiry-form .field[data-invalid="true"] input,
.customer-page .inquiry-form .field[data-invalid="true"] textarea {
  border-color: #9f2f1f;
  background: #fff7f3;
}

.customer-page .inquiry-form input:focus,
.customer-page .inquiry-form textarea:focus {
  border-color: var(--abodes-gold);
  outline: 3px solid rgba(201, 130, 59, 0.18);
}

.customer-page .placeholder-panel {
  border-color: var(--abodes-line);
  border-radius: 18px;
  background: var(--abodes-white);
  box-shadow: none;
}

.admin-band {
  padding: clamp(32px, 6vw, 82px) clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  background: #eef2ee;
}

.admin-page {
  background: #eef2ee;
}

.admin-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  min-height: 100vh;
}

.admin-sidebar {
  position: sticky;
  top: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 28px;
  height: 100vh;
  padding: 22px 18px;
  border-right: 1px solid rgba(31, 39, 34, 0.1);
  background: #18221d;
  color: #fff;
}

.admin-sidebar .brand {
  color: #fff;
}

.admin-sidebar .brand-mark {
  background: #fff;
  color: #18221d;
}

.admin-sidebar-head {
  display: grid;
  gap: 10px;
}

.admin-context {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.side-nav {
  display: grid;
  align-content: start;
  gap: 6px;
}

.side-nav a,
.sidebar-link {
  display: grid;
  align-items: center;
  min-height: 44px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.side-nav a {
  grid-template-columns: 34px 1fr;
  gap: 10px;
  padding: 6px 10px;
}

.side-nav a:hover,
.side-nav a.is-active {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.side-nav a.is-active {
  box-shadow: inset 3px 0 0 #8fb6c8;
}

.side-nav-icon {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  font-weight: 800;
}

.admin-sidebar-footer {
  display: grid;
  gap: 6px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.sidebar-link {
  width: 100%;
  padding: 0 10px;
  border: 0;
  background: transparent;
  text-align: left;
}

.sidebar-link:hover {
  color: #fff;
}

.admin-main {
  min-width: 0;
  padding: clamp(28px, 5vw, 64px);
}

.admin-shell {
  display: grid;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.admin-heading-row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
}

.admin-page h1,
.login-page h1 {
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.admin-editor {
  display: grid;
  gap: 18px;
}

#saveStatus {
  min-height: 44px;
  width: fit-content;
  max-width: 100%;
  margin: 0;
  padding: 11px 14px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
}

#saveStatus:empty {
  display: none;
}

#saveStatus[data-type="saving"] {
  border-color: #d9d5cb;
  background: #fff;
  color: var(--muted);
}

#saveStatus[data-type="success"] {
  border-color: #b9d4c1;
  background: #eff8f1;
  color: #1f6b3a;
}

#saveStatus[data-type="error"] {
  border-color: #e7b7a9;
  background: #fff3ee;
  color: #8f3324;
}

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

.stat-card {
  display: grid;
  gap: 10px;
  min-height: 118px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.stat-card span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.stat-card strong {
  font-size: 1.9rem;
  line-height: 1;
}

.admin-category {
  display: grid;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.admin-category-header,
.admin-option-row {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto;
  gap: 12px;
  align-items: end;
}

.admin-options {
  display: grid;
  gap: 10px;
}

.admin-option-row {
  grid-template-columns: minmax(150px, 1fr) minmax(220px, 1.5fr) minmax(120px, 0.6fr) auto;
  padding: 12px;
  border-radius: 8px;
  background: #f7f5ef;
}

.one-time-card {
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.42fr) auto;
  align-items: start;
}

.one-time-card[data-save-state="saving"] {
  outline: 2px solid #d9d5cb;
  background: #fffdf8;
}

.one-time-card[data-save-state="success"] {
  outline: 2px solid #8dbd98;
  background: #f1f8f0;
}

.one-time-card[data-save-state="error"] {
  outline: 2px solid #df9c8d;
  background: #fff4ef;
}

.one-time-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(130px, 0.4fr) auto auto;
  gap: 12px;
}

.one-time-grid .field:has(textarea) {
  grid-column: 1 / -1;
}

.one-time-actions {
  display: grid;
  gap: 10px;
  justify-items: end;
  min-width: 146px;
}

.one-time-save-item {
  white-space: nowrap;
}

.one-time-save-item[data-state="saving"] {
  border-color: #d0c7b7;
  background: #f2eee5;
  color: var(--muted);
}

.one-time-save-item[data-state="success"] {
  border-color: #8dbd98;
  background: #eff8f1;
  color: #1f6b3a;
}

.one-time-inline-status {
  min-height: 20px;
  font-size: 0.82rem;
  font-weight: 800;
  text-align: right;
}

.one-time-inline-status:empty {
  display: none;
}

.one-time-inline-status[data-type="saving"] {
  color: var(--muted);
}

.one-time-inline-status[data-type="success"] {
  color: #1f6b3a;
}

.one-time-inline-status[data-type="error"] {
  color: #8f3324;
}

.dependency-picker {
  display: grid;
  gap: 8px;
  padding: 12px;
  border-radius: 8px;
  background: #f7f5ef;
}

.dependency-option {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px;
  align-items: center;
  min-height: 32px;
  color: var(--ink);
  font-weight: 650;
}

.dependency-option input {
  width: 16px;
  height: 16px;
  accent-color: var(--accent);
}

.user-card {
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.35fr) auto;
  align-items: start;
}

.user-grid {
  display: grid;
  grid-template-columns: minmax(160px, 1fr) minmax(220px, 1.2fr) minmax(180px, 1fr);
  gap: 12px;
}

.user-meta {
  display: grid;
  gap: 6px;
  padding: 12px;
  border-radius: 8px;
  background: #f7f5ef;
}

.user-meta span {
  font-weight: 760;
}

.user-meta small {
  color: var(--muted);
  line-height: 1.35;
}

.offer-card {
  gap: 16px;
}

.offer-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: start;
}

.offer-header div {
  display: grid;
  gap: 5px;
}

.offer-header div:last-child {
  text-align: right;
}


.offer-delete {
  justify-self: end;
  white-space: nowrap;
}

.offer-header span,
.offer-meta {
  color: var(--muted);
}

.offer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.offer-meta span {
  padding: 6px 9px;
  border-radius: 8px;
  background: #f7f5ef;
  font-size: 0.9rem;
  font-weight: 700;
}

.offer-meta .offer-error {
  background: #fff3ee;
  color: #8f3324;
}

.offer-details {
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.offer-details summary {
  cursor: pointer;
  font-weight: 800;
}

.offer-details pre {
  overflow: auto;
  margin: 12px 0 0;
  padding: 14px;
  border-radius: 8px;
  background: #f7f5ef;
  white-space: pre-wrap;
}

.field {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.field span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-width: 0;
  min-height: 42px;
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
}

.field textarea {
  resize: vertical;
  line-height: 1.45;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--accent);
  outline: 3px solid rgba(45, 106, 79, 0.13);
}

.generated-url-controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.settings-card {
  max-width: 760px;
}

.settings-card-header {
  display: grid;
  gap: 6px;
}

.settings-card-header h2 {
  margin: 0;
  font-size: 1.2rem;
}

.settings-card-header p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.settings-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(140px, 180px);
  gap: 14px;
}


.settings-test-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
}

.settings-test-status {
  flex: 1 1 280px;
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.settings-test-status[data-type="saving"] {
  color: #755322;
}

.settings-test-status[data-type="success"] {
  color: #17643d;
  font-weight: 800;
}

.settings-test-status[data-type="error"] {
  color: #9f2f1f;
  font-weight: 800;
}

.secondary-action.is-saving {
  transform: translateY(1px);
  box-shadow: inset 0 2px 4px rgba(31, 39, 34, 0.18);
}

.settings-grid .check-field {
  padding-top: 23px;
}

.settings-sample {
  display: grid;
  gap: 6px;
  padding: 14px;
  border-radius: 8px;
  background: #f7f5ef;
}

.settings-sample span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.settings-sample strong {
  overflow-wrap: anywhere;
}

.settings-sample p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.settings-sample code {
  color: var(--ink);
  font-weight: 800;
}

@media (max-width: 720px) {
  .settings-grid {
    grid-template-columns: 1fr;
  }

  .settings-grid .check-field {
    padding-top: 0;
  }
}

.check-field {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding-top: 23px;
  color: var(--ink);
  font-weight: 700;
}

.check-field input {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
}

.table-shell {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.admin-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
}

.admin-table th {
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.admin-table tr:last-child td {
  border-bottom: 0;
}

.audit-filter-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(150px, 1fr)) auto;
  gap: 12px;
  align-items: end;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.audit-filter-bar .compact {
  min-height: 42px;
}

.audit-table td:first-child {
  white-space: nowrap;
}

.audit-badge {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 4px 9px;
  border-radius: 8px;
  background: #edf4ef;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 800;
}

.audit-detail {
  min-width: 280px;
  color: var(--ink);
}

.audit-empty {
  color: var(--muted);
  text-align: center;
}

.house-cell {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.house-cell img {
  width: 84px;
  aspect-ratio: 1.45;
  border-radius: 8px;
  object-fit: cover;
}

.house-cell div {
  display: grid;
  gap: 4px;
}

.house-cell span {
  color: var(--muted);
  font-size: 0.9rem;
}

.editor-summary {
  width: fit-content;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--muted);
  font-weight: 700;
}

.house-editor-card {
  grid-template-columns: 240px minmax(0, 1fr) auto;
  align-items: start;
}

.house-preview-box {
  display: grid;
  gap: 12px;
}

.house-preview-box img {
  width: 100%;
  aspect-ratio: 1.45;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #eef2ee;
  object-fit: cover;
}

.house-preview-box img:not([src]) {
  min-height: 150px;
}

.house-preview-box div {
  display: grid;
  gap: 4px;
}

.house-preview-box span {
  color: var(--muted);
  font-size: 0.9rem;
}

.house-editor-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(130px, 1fr));
  gap: 12px;
}

.house-editor-grid .field:nth-last-child(3),
.house-editor-grid .field:nth-last-child(2),
.house-editor-grid .field:has(textarea) {
  grid-column: span 2;
}

.house-editor-grid .field:has(textarea) {
  grid-column: 1 / -1;
}

.house-category-card {
  gap: 20px;
}

.house-category-header {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(130px, 0.35fr);
  gap: 12px;
}

.house-category-header .field:has(textarea) {
  grid-column: 1 / -1;
}

.field-title {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.house-picker {
  display: grid;
  grid-template-columns: repeat(4, minmax(160px, 1fr));
  gap: 8px;
  padding: 12px;
  border-radius: 8px;
  background: #f7f5ef;
}

.house-picker .field-title {
  grid-column: 1 / -1;
}

.house-picker-row {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 7px 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-size: 0.9rem;
}

.house-picker-row input {
  width: 16px;
  height: 16px;
  accent-color: var(--accent);
}

.category-item-list {
  display: grid;
  gap: 10px;
}

.category-item-row {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(120px, 0.3fr) auto minmax(146px, auto);
  gap: 12px;
  align-items: start;
  padding: 12px;
  border-radius: 8px;
  background: #f7f5ef;
}

.category-item-row[data-save-state="saving"] {
  outline: 2px solid #d9d5cb;
  background: #fffdf8;
}

.category-item-row[data-save-state="success"] {
  outline: 2px solid #8dbd98;
  background: #f1f8f0;
}

.category-item-row[data-save-state="error"] {
  outline: 2px solid #df9c8d;
  background: #fff4ef;
}

.category-item-row .field:has(textarea) {
  grid-column: 1 / 4;
}

.category-item-actions {
  display: grid;
  gap: 10px;
  justify-items: end;
  min-width: 146px;
}

.category-save-item {
  white-space: nowrap;
}

.category-save-item[data-state="saving"] {
  border-color: #d0c7b7;
  background: #f2eee5;
  color: var(--muted);
}

.category-save-item[data-state="success"] {
  border-color: #8dbd98;
  background: #eff8f1;
  color: #1f6b3a;
}

.category-item-inline-status {
  min-height: 20px;
  font-size: 0.82rem;
  font-weight: 800;
  text-align: right;
}

.category-item-inline-status:empty {
  display: none;
}

.category-item-inline-status[data-type="saving"] {
  color: var(--muted);
}

.category-item-inline-status[data-type="success"] {
  color: #1f6b3a;
}

.category-item-inline-status[data-type="error"] {
  color: #8f3324;
}

.placeholder-panel {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.placeholder-panel h2 {
  font-size: 1.5rem;
}

.placeholder-panel p {
  margin: 10px 0 0;
  color: var(--muted);
}

.error {
  color: #9b2c1d;
  font-weight: 700;
}

.login-page {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(223, 233, 230, 0.82), rgba(247, 245, 239, 0.95)),
    var(--paper);
}

.login-shell {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
}

.login-panel {
  display: grid;
  width: min(100%, 430px);
  gap: 20px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}



.house-catalog {
  padding-bottom: 80px;
}

.catalog-hero {
  position: relative;
  display: grid;
  min-height: 380px;
  align-items: end;
  padding: clamp(96px, 14vw, 180px) clamp(20px, 8vw, 120px) 56px;
  overflow: hidden;
  color: #ffe5d4;
  background:
    linear-gradient(90deg, rgb(32 37 30 / 86%), rgb(32 37 30 / 42%) 58%, rgb(32 37 30 / 18%)),
    url("https://www.abodes.cz/wp-content/uploads/2023/05/home-predlozka-abodes.webp") center / cover;
}

.catalog-hero-content {
  width: min(760px, 100%);
}

.catalog-hero h1 {
  max-width: 760px;
  margin: 8px 0 16px;
  color: #ffe5d4;
  font-family: var(--display-font);
  font-size: clamp(3.1rem, 8vw, 6.8rem);
  line-height: 0.94;
}

.catalog-hero p:not(.eyebrow) {
  max-width: 620px;
  margin: 0;
  color: rgb(255 229 212 / 86%);
  font-size: 1.06rem;
  line-height: 1.7;
}

.catalog-section {
  display: grid;
  gap: 28px;
  width: min(1180px, calc(100% - 40px));
  margin: 56px auto 0;
}

.house-catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.house-catalog-card {
  display: grid;
  overflow: hidden;
  min-height: 100%;
  border: 1px solid var(--abodes-line);
  border-radius: 8px;
  color: var(--abodes-ink);
  background: var(--abodes-white);
  text-decoration: none;
  box-shadow: 0 18px 36px rgb(32 37 30 / 8%);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.house-catalog-card:hover {
  transform: translateY(-3px);
  border-color: rgb(201 130 59 / 48%);
  box-shadow: 0 22px 42px rgb(32 37 30 / 13%);
}

.house-catalog-image {
  display: block;
  aspect-ratio: 1.45;
  background: #eadfd8;
}

.house-catalog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.house-catalog-image.is-empty::after {
  display: grid;
  height: 100%;
  place-items: center;
  color: var(--abodes-muted);
  content: "Bez fotografie";
}

.house-catalog-content {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.house-catalog-content strong {
  color: var(--abodes-ink);
  font-size: 1.1rem;
}

.house-catalog-meta {
  color: var(--abodes-muted);
  font-weight: 760;
  line-height: 1.45;
}

.house-catalog-description {
  color: var(--abodes-muted);
  line-height: 1.6;
}

.house-catalog-action {
  width: fit-content;
  margin-top: 4px;
  padding: 10px 18px;
  border-radius: 999px;
  color: #ffe5d4;
  background: var(--abodes-gold);
  font-weight: 850;
}

@media (max-width: 980px) {
  .house-catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .catalog-hero {
    min-height: 330px;
    padding: 110px 20px 42px;
  }

  .house-catalog-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  .workspace {
    grid-template-columns: 1fr;
  }

  .preview-panel {
    position: relative;
    top: auto;
    min-height: auto;
  }

  .house-stage {
    min-height: 420px;
  }

  .config-panel {
    padding-top: 42px;
  }

  .admin-layout {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: relative;
    height: auto;
    gap: 16px;
    padding: 18px;
  }

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

  .side-nav a {
    grid-template-columns: 1fr;
    gap: 6px;
    justify-items: center;
    min-height: 70px;
    text-align: center;
  }

  .admin-sidebar-footer {
    grid-template-columns: 1fr 1fr;
  }

  .admin-main {
    padding: 28px 18px 42px;
  }

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

  .one-time-card,
  .one-time-grid,
  .one-time-actions,
  .category-item-actions,
  .audit-filter-bar,
  .generated-url-controls,
  .user-card,
  .user-grid,
  .offer-header,
  .house-editor-card,
  .house-editor-grid,
  .house-category-header,
  .category-item-row {
    grid-template-columns: 1fr;
  }

  .house-picker {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-item-row .field:has(textarea) {
    grid-column: 1;
  }

  .check-field {
    padding-top: 0;
  }
}

@media (max-width: 720px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .topnav {
    width: 100%;
  }

  .admin-heading-row {
    align-items: start;
    flex-direction: column;
  }

  .topnav a {
    padding-left: 0;
  }

  .admin-category-header,
  .admin-option-row {
    grid-template-columns: 1fr;
  }

  .side-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .house-picker {
    grid-template-columns: 1fr;
  }

  .icon-action {
    width: fit-content;
  }

  .offer-header div:last-child {
    text-align: left;
  }
}

@media (max-width: 920px) {
  .customer-page .abodes-header {
    position: relative;
    padding: 22px 20px;
    background: var(--abodes-dark);
  }

  .customer-page .abodes-hero {
    min-height: auto;
    padding: 34px 20px 52px;
  }

  .customer-page .abodes-media-grid,
  .customer-page .config-layout {
    grid-template-columns: 1fr;
  }

  .customer-page .estimate-card {
    position: relative;
    top: auto;
  }

  .customer-page .house-image,
  .customer-page .house-summary-panel {
    min-height: 300px;
  }
}

@media (max-width: 720px) {
  .customer-page .abodes-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .customer-page .abodes-nav {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
  }

  .customer-page .abodes-nav a:last-child {
    padding: 10px 18px;
  }

  .customer-page .abodes-hero h1 {
    font-size: clamp(3rem, 16vw, 4.6rem);
  }

  .customer-page .abodes-detail {
    gap: 42px;
    padding: 24px 16px 56px;
  }

  .customer-page .house-image,
  .customer-page .house-summary-panel {
    min-height: 260px;
    border-radius: 20px;
  }

  .customer-page .section-heading h2 {
    font-size: clamp(2.5rem, 13vw, 3.7rem);
  }

  .customer-page .choice,
  .customer-page .quantity-choice,
  .customer-page .config-step-indicator {
    grid-template-columns: 1fr;
  }

  .customer-page .quantity-stepper {
    width: fit-content;
  }
}
