:root {
  --navy: #00194d;
  --navy-2: #061947;
  --teal: #008b9a;
  --teal-dark: #007580;
  --orange: #ff6c0a;
  --ink: #06133e;
  --muted: #5a6480;
  --line: #d9dfec;
  --soft: #f6f9fc;
  --panel: #ffffff;
  --shadow: 0 18px 48px rgba(3, 19, 62, 0.13);
  --shadow-soft: 0 12px 30px rgba(3, 19, 62, 0.09);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--ink);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: #fff;
  color: var(--ink);
}

body:has(.site-footer) {
  padding-bottom: 96px;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 116px;
  padding: 22px clamp(22px, 3.2vw, 40px);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 24px rgba(3, 19, 62, 0.07);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
}

.brand-logo {
  width: 268px;
  height: 72px;
  object-fit: contain;
  object-position: left center;
}

.site-footer .brand-logo {
  width: 268px;
  height: 68px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2vw, 28px);
  color: var(--navy);
  font-size: 15px;
  font-weight: 750;
}

.main-nav a {
  white-space: nowrap;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-size: 17px;
  font-weight: 900;
  white-space: nowrap;
}

.phone-icon {
  font-size: 24px;
}

.nav-cta,
.footer-cta,
.card-cta.dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  border-radius: 12px;
  background: var(--navy);
  color: #fff;
  box-shadow: 0 10px 22px rgba(0, 25, 77, 0.22);
  font-weight: 850;
  padding: 0 22px;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
  place-items: center;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px 0;
  border-radius: 999px;
  background: var(--navy);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(560px, 1.06fr) minmax(420px, 0.94fr);
  min-height: 660px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, #fff 0%, #fff 34%, rgba(255, 255, 255, 0.96) 46%, rgba(255, 255, 255, 0.72) 58%, rgba(255, 255, 255, 0.22) 76%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 72%, rgba(255, 255, 255, 0.78) 100%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 38px 0 34px clamp(28px, 4.2vw, 56px);
}

.trust-pill {
  display: inline-flex;
  margin: 0 0 14px;
  border-radius: 999px;
  background: rgba(228, 247, 248, 0.74);
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.04em;
  padding: 7px 15px;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 620px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(50px, 5.4vw, 72px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
  color: var(--teal-dark);
}

.hero-subtitle {
  max-width: 650px;
  margin: 16px 0 22px;
  color: var(--navy);
  font-size: 22px;
  font-weight: 850;
  line-height: 1.36;
}

.hero-info-card {
  position: absolute;
  top: 135px;
  left: clamp(520px, 29vw, 610px);
  z-index: 4;
  width: 360px;
  border: 1px solid rgba(220, 228, 238, 0.9);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 34px rgba(3, 19, 62, 0.12);
  padding: 16px;
}

.hero-info-icon {
  display: grid;
  width: 32px;
  height: 32px;
  margin-bottom: 10px;
  place-items: center;
  border-radius: 10px;
  background: #e4f7f8;
  color: var(--teal-dark);
  font-size: 21px;
  font-weight: 900;
}

.hero-info-card strong {
  display: block;
  color: var(--navy);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.25;
}

.hero-info-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.42;
}

.quote-bar {
  position: relative;
  display: grid;
  grid-template-columns: minmax(230px, 1fr) minmax(280px, 0.9fr) auto;
  width: 100%;
  min-height: 58px;
  overflow: visible;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #fff;
  box-shadow: none;
  z-index: 20;
}

.hero-quote-choice {
  width: min(860px, calc(100vw - 108px));
  border: 1px solid rgba(220, 228, 238, 0.96);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 38px rgba(3, 19, 62, 0.11);
  padding: 20px;
}

.hero-quote-choice h2 {
  margin: 0;
  color: var(--navy);
  font-size: 25px;
  line-height: 1.12;
}

.quote-card-copy {
  margin: 4px 0 14px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.45;
}

.quote-choice-label {
  margin: 10px 0 0;
  color: var(--teal-dark);
  font-size: 16px;
  font-weight: 950;
  letter-spacing: 0.02em;
}

.quote-input {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 0 16px;
}

.suburb-input {
  position: relative;
  border-left: 1px solid var(--line);
}

.suburb-input::after {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  margin-left: -4px;
  transform: rotate(45deg) translateY(-2px);
  pointer-events: none;
}

.link-mark,
.suburb-mark {
  color: var(--muted);
  font-size: 20px;
}

.quote-input input,
.quote-input select {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-weight: 650;
}

.quote-input select {
  appearance: none;
  cursor: pointer;
}

.quote-input select:invalid {
  color: #6f7482;
}

.quote-input input::placeholder {
  color: #6f7482;
  opacity: 1;
}

.suburb-suggestions,
.address-suggestions {
  position: absolute;
  top: calc(100% + 10px);
  left: 10px;
  right: 10px;
  display: none;
  max-height: 310px;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 38px rgba(3, 19, 62, 0.16);
  padding: 6px;
  z-index: 40;
}

.suburb-suggestions.is-open,
.address-suggestions.is-open {
  display: grid;
}

.suburb-suggestions button,
.address-suggestions button {
  display: grid;
  align-items: center;
  min-width: 0;
  min-height: 42px;
  border: 0;
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  padding: 9px 10px;
  text-align: left;
}

.suburb-suggestions button:hover,
.suburb-suggestions button:focus-visible,
.address-suggestions button:hover,
.address-suggestions button:focus-visible {
  background: rgba(30, 178, 166, 0.1);
  outline: 0;
}

.suburb-suggestions span,
.address-suggestions span {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 850;
}

.suburb-suggestions small,
.suburb-empty,
.address-empty {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.suburb-empty,
.address-empty {
  padding: 12px;
  line-height: 1.45;
}

.quote-bar button {
  border: 0;
  background: var(--orange);
  color: #fff;
  min-width: 190px;
  font-size: 17px;
  font-weight: 900;
  padding: 0 20px;
  white-space: nowrap;
}

.quote-bar button:hover,
.quote-bar button:focus-visible {
  background: #e85f05;
  color: #fff;
  outline: 0;
}

.manual-quote-choice {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  border-top: 1px solid #e6eaf0;
  padding-top: 14px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 750;
}

.manual-quote-choice span {
  letter-spacing: 0;
}

.manual-quote-choice a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid #b7e2e5;
  border-radius: 8px;
  background: #f4fbfc;
  color: var(--teal-dark);
  padding: 0 14px;
  font-size: 14px;
  font-weight: 850;
  box-shadow: none;
}

.manual-quote-choice a:hover,
.manual-quote-choice a:focus-visible {
  border-color: var(--orange);
  background: var(--orange);
  color: #fff;
  outline: 0;
}

.quote-hint {
  width: min(860px, calc(100vw - 108px));
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 850;
}

.hero-service-label {
  width: min(860px, calc(100vw - 108px));
  margin: 18px 0 0;
  color: var(--navy);
  font-size: 16px;
  font-weight: 900;
}

.hero-service-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: min(860px, calc(100vw - 108px));
  margin-top: 10px;
}

.hero-service-strip a {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 4px 10px;
  align-items: center;
  min-height: 92px;
  border: 1px solid #dce4ee;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--navy);
  padding: 14px;
  box-shadow: 0 8px 18px rgba(3, 19, 62, 0.06);
}

.hero-service-strip a:hover,
.hero-service-strip a:focus-visible {
  border-color: var(--teal);
  outline: 0;
}

.hero-service-strip span {
  display: grid;
  grid-row: span 2;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 8px;
  background: #e4f7f8;
  color: var(--teal-dark);
  font-size: 20px;
}

.hero-service-strip strong {
  min-width: 0;
  font-size: 15px;
}

.hero-service-strip small {
  min-width: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.35;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  width: min(760px, 100%);
  margin-top: 34px;
}

.hero-stats div {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 4px 12px;
  min-width: 170px;
  padding: 0 24px;
  border-right: 1px solid #cfd6e2;
}

.hero-stats div:first-child {
  padding-left: 0;
}

.hero-stats div:last-child {
  border-right: 0;
}

.hero-stats strong,
.hero-stats small {
  display: block;
}

.hero-stats small {
  color: var(--navy);
  font-size: 12px;
  font-weight: 650;
  grid-column: 2;
}

.star {
  color: #ff9e0b;
  font-size: 38px;
  grid-row: span 2;
}

.airtasker {
  color: var(--teal-dark);
  font-size: 22px;
  line-height: 1.08;
}

.people-mark {
  color: var(--navy);
  font-size: 34px;
  grid-row: span 2;
}

.hero-visual {
  position: relative;
  min-height: 660px;
  margin-left: -240px;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 660px;
  object-fit: cover;
  object-position: center;
}

.hero-fade {
  position: absolute;
  inset: 0;
  background: none;
  pointer-events: none;
}

.benefit-panel {
  position: absolute;
  right: 28px;
  bottom: 28px;
  z-index: 20;
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  width: min(620px, calc(100% - 56px));
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(210, 220, 232, 0.95);
  background: #fff;
  box-shadow: 0 20px 42px rgba(3, 19, 62, 0.2);
}

.benefit-panel div {
  display: grid;
  gap: 7px;
  min-height: 132px;
  align-content: center;
  justify-items: center;
  border-right: 1px solid #d7e0eb;
  padding: 16px 12px;
  text-align: center;
}

.benefit-panel div:last-child {
  border-right: 0;
}

.benefit-panel span {
  color: var(--navy);
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.benefit-panel strong {
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}

.benefit-panel small {
  max-width: 150px;
  color: #243656;
  font-size: 12px;
  font-weight: 750;
  line-height: 1.45;
}

.services-section,
.process-section {
  padding: 24px clamp(22px, 4vw, 48px) 0;
  background: #fff;
}

.section-heading {
  margin-bottom: 34px;
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: 28px;
  line-height: 1.1;
}

.section-heading p {
  margin: 8px 0 0;
  color: var(--navy);
  font-size: 17px;
}

.section-heading .section-eyebrow {
  margin-top: 10px;
  color: var(--teal-dark);
  font-size: 20px;
  font-weight: 900;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  max-width: 1120px;
  margin: 0 auto;
}

.service-card {
  position: relative;
  display: grid;
  grid-template-rows: 176px 1fr;
  scroll-margin-top: 128px;
  overflow: hidden;
  border: 1px solid #dfe5ef;
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.service-card img {
  width: 100%;
  height: 176px;
  object-fit: cover;
}

.service-icon {
  position: absolute;
  top: 135px;
  left: 26px;
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  border: 4px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-size: 34px;
  box-shadow: 0 10px 20px rgba(3, 19, 62, 0.18);
}

.service-icon.navy {
  background: var(--navy);
}

.service-icon.teal {
  background: var(--teal);
}

.service-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 38px 26px 22px;
}

.service-kicker {
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
}

.service-body h3 {
  margin: 0;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.1;
}

.service-body p {
  margin: 0;
  color: var(--navy);
  font-size: 16px;
  line-height: 1.5;
}

.service-body ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-body li {
  position: relative;
  color: var(--navy);
  font-size: 15px;
  line-height: 1.35;
  padding-left: 28px;
}

.service-body li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  display: grid;
  width: 16px;
  height: 16px;
  place-items: center;
  border: 2px solid var(--teal);
  border-radius: 50%;
  color: var(--teal);
  font-size: 10px;
  font-weight: 950;
}

.card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 50px;
  border-radius: 9px;
  font-weight: 900;
  padding: 0 24px;
}

.service-card .card-cta {
  align-self: end;
  width: 100%;
  margin-top: auto;
}

.card-cta.outline {
  border: 1.5px solid var(--teal);
  color: var(--teal-dark);
}

.fit-check-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1120px;
  margin: 26px auto 0;
  border: 1px solid #dfe5ef;
  border-radius: 12px;
  background: #f8fbfc;
  box-shadow: 0 12px 26px rgba(3, 19, 62, 0.06);
  padding: 22px 26px;
}

.fit-check-banner > div {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.service-icon-mini {
  display: grid;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 10px;
  background: #e4f7f8;
  color: var(--teal-dark);
  font-size: 22px;
  font-weight: 950;
}

.fit-check-banner h3 {
  margin: 0;
  color: var(--navy);
  font-size: 21px;
  line-height: 1.2;
}

.fit-check-banner p {
  max-width: 720px;
  margin: 6px 0 0;
  color: var(--navy);
  font-size: 15px;
  line-height: 1.45;
}

.fit-check-banner .card-cta {
  flex: 0 0 auto;
  width: auto;
  margin-top: 0;
}

.service-page {
  background: #fff;
}

.service-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  height: 585px;
  border-bottom: 1px solid #e6ecf4;
  overflow: hidden;
}

.service-hero-copy {
  display: grid;
  align-content: center;
  padding: 58px clamp(24px, 5vw, 72px);
}

.service-hero-copy h1 {
  max-width: 720px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1.04;
  letter-spacing: 0;
}

.service-hero-copy p:not(.trust-pill) {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--navy);
  font-size: 21px;
  font-weight: 800;
  line-height: 1.5;
}

.service-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.service-hero-media {
  height: 585px;
  overflow: hidden;
}

.service-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-page:not(.furniture-service-page) .service-hero-copy {
  padding-block: 42px;
}

.service-page:not(.furniture-service-page) .service-hero-copy h1 {
  font-size: clamp(38px, 4.1vw, 56px);
  line-height: 1.05;
}

.service-page:not(.furniture-service-page) .service-hero-copy p:not(.trust-pill) {
  font-size: 19px;
  line-height: 1.45;
}

.ikea-service-page .service-hero-copy {
  padding-block: 58px;
}

.ikea-service-page .service-hero-copy h1 {
  max-width: 720px;
  font-size: clamp(40px, 4.4vw, 58px);
  line-height: 1.04;
}

.ikea-service-page .service-hero-copy p:not(.trust-pill) {
  max-width: 680px;
  font-size: 20px;
  line-height: 1.45;
}

.ikea-service-page .service-hero-media img {
  object-position: center center;
}

.assembly-options {
  padding: 44px clamp(18px, 4vw, 48px) 62px;
  background: #f7f9fc;
}

.assembly-option-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 28px;
  max-width: 1240px;
  margin: 0 auto;
  align-items: stretch;
}

.single-option-grid {
  grid-template-columns: minmax(0, 860px);
  justify-content: center;
}

.assembly-option {
  display: flex;
  flex-direction: column;
  gap: 18px;
  border: 1px solid #dfe6ef;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  padding: 26px;
  scroll-margin-top: 128px;
}

.option-heading {
  display: flex;
  gap: 14px;
  align-items: center;
}

.option-number {
  display: grid;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 12px;
  background: var(--navy);
  color: #fff;
  font-size: 20px;
  font-weight: 950;
}

.manual-option .option-number {
  background: var(--teal);
}

.assembly-option h3 {
  margin: 0;
  color: var(--navy);
  font-size: 28px;
  line-height: 1.15;
}

.assembly-option p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.55;
}

.service-quote-bar {
  grid-template-columns: 1fr;
  width: 100%;
  min-height: 0;
  overflow: visible;
}

.service-quote-bar .quote-input {
  min-height: 58px;
}

.service-quote-bar .suburb-input {
  border-top: 1px solid var(--line);
  border-left: 0;
}

.service-quote-bar button {
  min-height: 58px;
  width: 100%;
}

.service-manual-form {
  flex: 1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-manual-form .time-slot-field {
  margin: 0;
}

.service-manual-form button {
  grid-column: 1 / -1;
  align-self: end;
  margin-top: auto;
}

.is-hidden {
  display: none !important;
}

[hidden] {
  display: none !important;
}

.quote-page {
  min-height: 100vh;
  background: #f7f8fa;
}

.quote-page a,
.quote-page p,
.quote-page dd,
.quote-page .summary-lines span,
.quote-page .summary-lines strong,
.admin-page a,
.admin-page p,
.admin-page dd {
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.quote-header {
  min-height: 96px;
  box-shadow: none;
}

.quote-review-shell {
  padding: 34px clamp(18px, 4vw, 56px) 70px;
}

.public-booking-page .quote-review-shell {
  padding-top: 28px;
}

.quote-review {
  max-width: 1240px;
  margin: 0 auto;
}

.quote-progress {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0 0 40px;
  padding: 0;
  list-style: none;
}

.quote-progress::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 17px;
  height: 6px;
  border-radius: 999px;
  background: #dfe3e7;
}

.quote-progress li {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 12px;
  color: #9a9fa7;
  font-size: 13px;
  font-weight: 850;
  text-align: center;
  text-transform: uppercase;
}

.quote-progress span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 5px solid #dfe3e7;
  border-radius: 50%;
  background: #fff;
  color: #8a9099;
  font-size: 15px;
  line-height: 1;
}

.quote-progress .is-active {
  color: var(--teal-dark);
}

.quote-progress .is-active span,
.quote-progress .is-complete span {
  border-color: var(--teal);
  background: var(--teal);
  color: #fff;
}

.quote-review-heading {
  margin-bottom: 18px;
  border-bottom: 1px solid #dfe3e7;
  padding-bottom: 10px;
}

.public-booking-page .quote-review-heading {
  margin-bottom: 8px;
}

.back-link {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--teal-dark);
  font-weight: 850;
}

.quote-review h1,
.quote-review h2 {
  margin: 0;
  color: #4b4f56;
}

.quote-review h1 {
  position: relative;
  padding-left: 16px;
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.12;
}

.quote-review h1::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 6px;
  height: calc(100% - 6px);
  border-radius: 999px;
  background: var(--teal);
}

.quote-review-heading p,
.booking-panel p,
.manual-quote-section p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
}

.quote-loading {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 22px;
  color: var(--navy);
  font-weight: 850;
  box-shadow: var(--shadow-soft);
}

.quote-result {
  display: block;
}

.quote-cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: start;
}

.quote-cart-main,
.cart-summary,
.quote-product-panel,
.booking-panel,
.manual-quote-section {
  border: 1px solid #e3e7ed;
  border-radius: 6px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.quote-cart-main {
  padding: 24px;
}

.quote-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid #e6eaf0;
  padding-bottom: 18px;
}

.quote-section-title h2,
.cart-summary h2 {
  font-size: 26px;
}

.compact-action {
  min-height: 42px;
  white-space: nowrap;
}

.add-item-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: end;
  margin-top: 18px;
  border: 1px solid #dfe6ee;
  border-radius: 6px;
  background: #fbfcfd;
  padding: 16px;
}

.add-item-form label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-weight: 850;
}

.add-item-form input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  padding: 13px 14px;
}

.add-item-actions {
  display: flex;
  gap: 10px;
}

.quote-items {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.quote-item {
  display: grid;
  grid-template-columns: 126px minmax(0, 1fr) 130px;
  gap: 18px;
  align-items: center;
  border: 1px solid #dfe6ee;
  border-left: 5px solid var(--teal);
  border-radius: 6px;
  background: #fff;
  padding: 14px;
}

.quote-item.needs-review {
  border-left-color: #ff9e0b;
}

.quote-item.is-loading {
  border-left-color: #8a9099;
}

.quote-item-media {
  display: grid;
  width: 126px;
  aspect-ratio: 1;
  place-items: center;
  overflow: hidden;
  border-radius: 6px;
  background: #eef2f6;
}

.quote-item.is-loading .quote-item-media::after {
  content: "";
  width: 42px;
  height: 42px;
  border: 4px solid #dce3eb;
  border-top-color: var(--teal);
  border-radius: 50%;
}

.quote-item-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quote-item-body {
  min-width: 0;
}

.item-status {
  display: inline-flex;
  margin-bottom: 8px;
  border-radius: 999px;
  background: #e4f7f8;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
  padding: 6px 10px;
  text-transform: uppercase;
}

.needs-review .item-status {
  background: #fff3df;
  color: #a45d00;
}

.quote-item h3 {
  margin: 0;
  color: var(--navy);
  font-size: 21px;
  line-height: 1.2;
}

.quote-item-body > p {
  margin: 7px 0 0;
  color: var(--muted);
  line-height: 1.4;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.quote-item-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 14px 0 0;
}

.quote-item-details div {
  border-top: 1px solid #e6eaf0;
  padding-top: 10px;
}

.quote-item-details dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.quote-item-details dd {
  margin: 4px 0 0;
  color: var(--navy);
  font-size: 15px;
  font-weight: 850;
}

.item-review-note {
  font-size: 14px;
}

.item-confirmation {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin-top: 14px;
  border: 1px solid #dfe6ee;
  border-radius: 6px;
  background: #fbfcfd;
  padding: 12px;
}

.item-confirmation p {
  margin: 0;
  color: var(--navy);
  font-weight: 850;
}

.item-confirmation div {
  display: flex;
  gap: 8px;
}

.mini-action {
  min-height: 34px;
  border: 0;
  border-radius: 7px;
  background: var(--teal);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  padding: 0 14px;
}

.mini-action.outline {
  border: 1px solid #d2dbe6;
  background: #fff;
  color: var(--navy);
}

.quote-item-actions {
  display: grid;
  justify-items: end;
  gap: 12px;
  min-width: 0;
}

.quote-item-actions strong {
  color: var(--teal-dark);
  font-size: 22px;
  overflow-wrap: anywhere;
  text-align: right;
}

.text-action {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  padding: 0;
  text-decoration: underline;
}

.cart-summary {
  position: sticky;
  top: 122px;
  display: grid;
  gap: 18px;
  padding: 24px;
}

.summary-lines {
  display: grid;
}

.summary-lines div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid #e6eaf0;
  padding: 14px 0;
}

.summary-lines span {
  color: var(--muted);
  font-weight: 800;
}

.summary-lines strong {
  color: var(--navy);
}

.summary-discount strong {
  color: var(--teal-dark);
}

.summary-lines .summary-total {
  align-items: baseline;
  border-top: 2px solid var(--navy);
  padding-bottom: 0;
}

.summary-total strong {
  color: var(--teal-dark);
  font-size: 28px;
}

.summary-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.quote-product-panel {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr) 330px;
  gap: 0;
  overflow: hidden;
}

.quote-product-image {
  min-height: 310px;
  background: #f1f3f6;
}

.quote-product-image img {
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
}

.quote-product-copy,
.quote-summary-panel {
  padding: 26px;
}

.quote-product-copy {
  border-right: 1px solid #e6eaf0;
}

.quote-retailer {
  display: inline-flex;
  margin-bottom: 14px;
  border-radius: 999px;
  background: #e4f7f8;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 900;
  padding: 7px 12px;
  text-transform: uppercase;
}

.quote-product-copy h2 {
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.15;
}

.product-details {
  display: grid;
  gap: 16px;
  margin: 24px 0 0;
}

.product-details div {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.product-details dt,
.quote-total span,
.mount-advice span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.product-details dd {
  margin: 5px 0 0;
  color: var(--navy);
  font-size: 18px;
  font-weight: 850;
}

.quote-summary-panel {
  display: grid;
  gap: 18px;
  align-content: start;
  background: #fbfcfd;
}

.quote-summary-panel h2 {
  font-size: 24px;
}

.quote-estimate-grid {
  display: grid;
  gap: 12px;
}

.quote-total {
  display: grid;
  gap: 7px;
  border: 1px solid #dfe6ee;
  border-radius: 6px;
  background: #fff;
  padding: 15px;
}

.quote-total strong {
  color: var(--teal-dark);
  font-size: 28px;
}

.mount-advice {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.mount-advice p,
.quote-check p {
  margin: 8px 0 0;
  color: var(--navy);
  line-height: 1.5;
}

.quote-actions {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 8px;
  font-weight: 900;
  padding: 0 18px;
}

.primary-action {
  border: 0;
  background: var(--orange);
  color: #fff;
}

.secondary-action {
  border: 1.5px solid var(--teal);
  background: #fff;
  color: var(--teal-dark);
}

.booking-panel,
.manual-quote-section {
  margin-top: 24px;
}

.booking-step {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: start;
}

.booking-panel {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
  gap: 22px;
  align-items: end;
  padding: 24px;
}

.booking-page-panel {
  max-width: 1320px;
}

.public-booking-layout {
  grid-template-columns: minmax(0, 1fr) 360px;
  margin-top: 26px;
  align-items: start;
}

.public-booking-layout .booking-panel {
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 0;
  align-items: start;
  padding: 28px;
}

.public-booking-layout .booking-panel > div:first-child {
  max-width: 720px;
}

.public-booking-layout .booking-panel > div:first-child p {
  margin-bottom: 0;
}

.public-booking-layout .booking-contact-grid {
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 16px;
}

.public-booking-layout .primary-action {
  justify-self: end;
  min-width: 260px;
}

.public-booking-page .contact-summary {
  position: sticky;
  top: 128px;
  margin-top: 0;
}

.public-booking-page .contact-summary p {
  color: var(--muted);
  line-height: 1.55;
}

.booking-actions {
  display: flex;
  gap: 12px;
  grid-column: 1 / -1;
  justify-content: flex-end;
}

.time-slot-field {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  min-width: 0;
  border: 0;
  margin: 0;
  padding: 0;
}

.time-slot-field legend {
  grid-column: 1 / -1;
  color: var(--navy);
  font-weight: 850;
}

.time-slot-field label {
  position: relative;
  min-width: 0;
}

.time-slot-field input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.time-slot-field span {
  display: grid;
  min-height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
}

.time-slot-field input:checked + span {
  border-color: var(--teal);
  background: rgba(30, 178, 166, 0.12);
  color: var(--teal-dark);
}

.time-slot-field input:focus-visible + span {
  outline: 3px solid rgba(30, 178, 166, 0.25);
  outline-offset: 2px;
}

.contact-summary {
  display: grid;
  gap: 18px;
  margin-top: 24px;
  border: 1px solid #e3e7ed;
  border-radius: 6px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  padding: 24px;
}

.contact-summary-items {
  display: grid;
  gap: 10px;
}

.contact-summary-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  border: 1px solid #e5ebf2;
  border-radius: 6px;
  padding: 12px;
}

.contact-summary-item span {
  min-width: 0;
  max-width: 100%;
  color: var(--navy);
  font-weight: 800;
  line-height: 1.3;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact-summary-item a {
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact-summary-item strong {
  min-width: 0;
  color: var(--teal-dark);
  overflow-wrap: anywhere;
  text-align: right;
}

.confirmation-panel {
  margin-top: 24px;
}

.confirmation-card {
  display: grid;
  gap: 18px;
  max-width: 760px;
  border: 1px solid #e3e7ed;
  border-radius: 6px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  padding: 28px;
}

.confirmation-card h2 {
  font-size: 30px;
}

.service-complete-view {
  display: grid;
  min-height: 520px;
  place-items: start center;
  padding-top: 56px;
}

.service-complete-card {
  width: min(100%, 760px);
}

.service-complete-card .link-action {
  width: max-content;
}

.confirmation-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.confirmation-details div {
  display: grid;
  gap: 6px;
  border: 1px solid #e5ebf2;
  border-radius: 6px;
  padding: 14px;
}

.confirmation-details span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.confirmation-details strong {
  color: var(--navy);
  font-size: 18px;
}

.compact-summary div:first-child {
  border-top: 0;
}

.section-kicker {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

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

.manual-review-only {
  display: none;
}

.is-compact-manual-review .manual-review-only {
  display: grid;
}

.manual-quote-form .manual-full-detail {
  display: none;
}

.booking-contact-grid label,
.manual-quote-form label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-weight: 850;
}

.address-field {
  position: relative;
}

.suburb-field {
  position: relative;
}

.suburb-field .suburb-suggestions {
  top: calc(100% + 6px);
  left: 0;
  right: 0;
}

.address-field .address-suggestions {
  top: calc(100% + 6px);
  left: 0;
  right: 0;
}

.booking-wide {
  grid-column: 1 / -1;
}

.link-action {
  width: max-content;
  min-width: 210px;
}

.manual-quote-section {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.5fr);
  gap: 24px;
  padding: 26px;
}

.manual-quote-intro h2 {
  font-size: 26px;
}

.manual-quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.booking-contact-grid input,
.booking-contact-grid textarea,
.manual-quote-form input,
.manual-quote-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  padding: 13px 14px;
}

.booking-contact-grid input[type="date"],
.manual-quote-form input[type="date"] {
  min-height: 52px;
  appearance: none;
  -webkit-appearance: none;
  line-height: 1.2;
  text-align: left;
}

.booking-contact-grid input[type="date"]::-webkit-date-and-time-value,
.manual-quote-form input[type="date"]::-webkit-date-and-time-value {
  min-height: 24px;
  margin: 0;
  text-align: left;
}

.booking-contact-grid textarea,
.manual-quote-form textarea {
  resize: vertical;
}

.manual-wide {
  grid-column: 1 / -1;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.45;
}

.admin-page {
  background: #f6f8fb;
}

.admin-page .site-header {
  border-bottom: 1px solid #e5ebf2;
  background: #fff;
}

.admin-shell {
  max-width: 1280px;
  margin: 0 auto;
  padding: 46px 28px 80px;
}

.admin-heading {
  display: grid;
  gap: 8px;
  margin-bottom: 24px;
}

.admin-heading h1 {
  color: var(--ink);
  font-size: 36px;
}

.admin-heading p {
  max-width: 720px;
  color: var(--muted);
}

.admin-dashboard {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: start;
}

.admin-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 24px;
  align-items: start;
}

.admin-panel {
  display: grid;
  gap: 18px;
  border: 1px solid #e3e7ed;
  border-radius: 6px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  padding: 24px;
}

.admin-panel-title h2 {
  color: var(--ink);
  font-size: 24px;
}

.admin-list-panel {
  overflow: visible;
}

.admin-list-panel .admin-panel-title {
  display: grid;
  gap: 4px;
}

.admin-list-panel .admin-panel-title p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.admin-list-toolbar {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) 220px;
  gap: 12px;
}

.admin-list-toolbar input,
.admin-list-toolbar select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  padding: 12px 13px;
}

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

.admin-request-header,
.admin-request-row {
  display: grid;
  grid-template-columns: 74px minmax(150px, 0.9fr) minmax(190px, 1.1fr) 180px minmax(190px, 0.95fr) 86px 112px;
  gap: 12px;
  align-items: center;
}

.admin-request-header {
  border-bottom: 1px solid #e5ebf2;
  color: #667085;
  font-size: 12px;
  font-weight: 900;
  padding: 0 14px 8px;
  text-transform: uppercase;
}

.admin-request-row {
  appearance: none;
  width: 100%;
  border: 1px solid #e5ebf2;
  border-radius: 6px;
  background: #fff;
  color: var(--navy);
  font: inherit;
  text-align: left;
  padding: 14px;
  cursor: pointer;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.admin-request-row:hover,
.admin-request-row.is-active {
  border-color: var(--teal);
  background: rgba(30, 178, 166, 0.08);
  box-shadow: 0 10px 22px rgba(3, 19, 62, 0.08);
}

.admin-request-row:focus-visible {
  outline: 3px solid rgba(30, 178, 166, 0.22);
  outline-offset: 2px;
}

.admin-request-row > * {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow-wrap: anywhere;
}

.admin-request-id,
.admin-request-total {
  color: var(--navy);
  font-weight: 950;
}

.admin-request-client {
  font-weight: 900;
}

.admin-request-suburb,
.admin-request-window,
.admin-request-items {
  color: #4f5f75;
  font-weight: 750;
}

.admin-request-status {
  display: flex;
  align-items: center;
}

.admin-request-total {
  text-align: right;
}

.admin-status-pill {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  border-radius: 999px;
  background: #eef2f7;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  padding: 5px 8px;
}

.admin-status-pill.booking_requested {
  background: rgba(30, 178, 166, 0.13);
  color: var(--teal-dark);
}

.admin-status-pill.final_quote_requested {
  background: #fff3d7;
  color: #8a5a00;
}

.admin-status-pill.final_quote_sent {
  background: #e8f0ff;
  color: #244c9a;
}

.admin-status-pill.confirmed {
  background: #e8f6eb;
  color: #24733b;
}

.admin-list-empty,
.admin-empty-state {
  border: 1px dashed #ccd5e2;
  border-radius: 6px;
  background: #fff;
  color: var(--muted);
  padding: 24px;
}

.admin-empty-state h2 {
  margin-bottom: 8px;
  color: var(--ink);
}

.admin-empty-state {
  min-height: 140px;
}

.admin-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.admin-detail-grid div {
  display: grid;
  gap: 6px;
  min-width: 0;
  border: 1px solid #e5ebf2;
  border-radius: 6px;
  padding: 12px;
}

.admin-detail-grid dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.admin-detail-grid dd {
  min-width: 0;
  margin: 0;
  color: var(--navy);
  font-weight: 850;
  overflow-wrap: anywhere;
}

.admin-detail-wide {
  grid-column: 1 / -1;
}

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

.admin-items .contact-summary-item span {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.admin-upload-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.admin-upload-links a {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border: 1px solid #b7dfdb;
  border-radius: 6px;
  padding: 4px 8px;
  color: var(--teal-dark);
  background: #eaf8f7;
  font-size: 0.82rem;
  font-weight: 850;
}

.admin-upload-links a:hover,
.admin-upload-links a:focus-visible {
  border-color: var(--teal);
  background: #d7f0ed;
}

.admin-confirm-form label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-weight: 850;
}

.admin-confirm-form input,
.admin-confirm-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  padding: 13px 14px;
}

.admin-confirm-form textarea {
  resize: vertical;
}

.admin-result {
  margin: 0;
  color: var(--navy);
  font-weight: 800;
}

.process-section {
  padding-top: 38px;
  padding-bottom: 30px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 52px;
  max-width: 1120px;
  margin: 0 auto 38px;
}

.process-steps article {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 18px;
  align-items: center;
}

.process-steps article:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -35px;
  top: 32px;
  color: #6fbec5;
  font-size: 20px;
  font-weight: 850;
}

.step-number {
  position: absolute;
  left: -7px;
  top: -4px;
  z-index: 1;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

.step-icon {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  border-radius: 50%;
  background: #e9f6f7;
  color: var(--teal);
  font-size: 32px;
  grid-row: span 2;
}

.process-steps strong {
  color: var(--navy);
  font-size: 18px;
  line-height: 1.2;
}

.process-steps p {
  margin: 0;
  color: var(--navy);
  font-size: 16px;
  line-height: 1.45;
}

.retailer-strip {
  display: grid;
  grid-template-columns: 1.2fr repeat(4, 1fr) 0.7fr;
  align-items: center;
  max-width: 1040px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 13px;
  background: #f4f5f8;
  box-shadow: inset 0 0 0 1px #e2e7ef;
}

.retailer-strip > * {
  display: grid;
  min-height: 66px;
  place-items: center;
  border-right: 1px solid #dbe1eb;
  color: var(--navy);
  text-align: center;
  padding: 10px 18px;
}

.retailer-strip > *:last-child {
  border-right: 0;
}

.retailer-strip span {
  font-size: 14px;
  font-weight: 760;
}

.retailer-strip strong {
  font-size: 20px;
}

.ikea {
  background: #ffdc00;
  color: #0b3a91;
  margin: 0 24px;
  min-height: 40px;
  border-radius: 4px;
}

.fantastic {
  color: #ec251e;
}

.amart {
  font-style: italic;
  font-size: 25px;
}

.temple {
  color: #58606e;
  text-transform: uppercase;
}

.review-band {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.6fr);
  align-items: start;
  gap: 34px;
  margin-top: 0;
  padding: 44px clamp(22px, 5vw, 66px);
  background: linear-gradient(90deg, #00194d, #022a68);
  color: #fff;
}

.reviews-heading {
  display: grid;
  gap: 14px;
  align-content: start;
}

.reviews-heading .section-kicker {
  color: #72d6cb;
}

.reviews-heading h2 {
  margin: 0;
  max-width: 360px;
  font-size: 34px;
  line-height: 1.1;
}

.reviews-heading p {
  max-width: 380px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}

.review-carousel {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.review-viewport {
  min-width: 0;
  overflow: hidden;
}

.review-track {
  display: flex;
  gap: 14px;
  transition: transform 420ms ease;
  will-change: transform;
}

.review-card {
  flex: 0 0 calc((100% - 28px) / 3);
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 14px;
  min-height: 270px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  padding: 18px;
}

.review-controls {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.review-control {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.review-control:hover,
.review-control:focus-visible {
  background: rgba(255, 255, 255, 0.18);
  outline: 0;
}

@media (prefers-reduced-motion: reduce) {
  .review-track {
    transition: none;
  }
}

.review-meta {
  display: grid;
  gap: 4px;
}

.review-meta strong {
  color: #fff;
  font-size: 16px;
}

.review-meta span {
  color: #ffac18;
  font-size: 17px;
  letter-spacing: 0;
}

.review-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: 14px;
  line-height: 1.5;
}

.review-card small {
  align-self: end;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 800;
}

.about-page {
  background: #f6f8fb;
}

.about-hero {
  padding: 34px clamp(22px, 5vw, 66px) 46px;
  background: #fff;
}

.about-content {
  display: grid;
  grid-template-columns: minmax(240px, 0.85fr) minmax(0, 1.55fr);
  gap: 34px;
  max-width: 1120px;
  margin: 0 auto;
  border-top: 1px solid #e3e7ed;
  padding-top: 38px;
}

.about-content h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1.12;
}

.about-copy {
  display: grid;
  gap: 15px;
}

.about-copy p {
  margin: 0;
  color: #4f5f75;
  font-size: 17px;
  line-height: 1.65;
}

.rating-lockup {
  display: grid;
  justify-items: start;
  width: max-content;
  border-left: 3px solid #72d6cb;
  padding-left: 14px;
}

.rating-lockup span {
  color: #ffac18;
  font-size: 31px;
  line-height: 1;
  letter-spacing: 0;
}

.rating-lockup strong {
  font-size: 48px;
  line-height: 1;
}

.rating-lockup small {
  max-width: 140px;
  font-size: 15px;
  font-weight: 750;
  line-height: 1.25;
}

.site-footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 19;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 96px;
  padding: 18px clamp(22px, 4vw, 48px);
  background: #fff;
  color: var(--navy);
  box-shadow: 0 -5px 20px rgba(3, 19, 62, 0.05);
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  border-left: 1px solid #d8deea;
  padding: 0 0 0 34px;
  font-size: 16px;
  font-weight: 750;
}

.footer-cta {
  min-height: 52px;
  border-radius: 10px;
}

.toast {
  position: fixed;
  right: 22px;
  bottom: 118px;
  z-index: 30;
  max-width: min(420px, calc(100vw - 44px));
  border-radius: 12px;
  background: var(--navy);
  color: #fff;
  box-shadow: var(--shadow);
  font-weight: 760;
  padding: 16px 18px;
  transform: translateY(22px);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.toast.is-visible {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 1200px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: grid;
    justify-self: end;
  }

  .main-nav,
  .header-actions {
    display: none;
  }

  body.nav-open .main-nav,
  body.nav-open .header-actions {
    display: flex;
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  body.nav-open .main-nav {
    flex-wrap: wrap;
  }

  body.nav-open .header-actions {
    align-items: flex-start;
  }

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

  .service-hero {
    grid-template-columns: 1fr;
    height: auto;
  }

  .service-hero-copy {
    padding: 44px clamp(22px, 4vw, 48px);
  }

  .service-hero-media,
  .service-hero-media img {
    height: auto;
    min-height: 360px;
  }

  .assembly-option-grid {
    grid-template-columns: 1fr;
    max-width: 760px;
  }

  .hero::before {
    display: none;
  }

  .hero-copy {
    padding-right: clamp(22px, 4vw, 48px);
    background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.98) 86%, rgba(255, 255, 255, 0.28) 100%);
  }

  .hero-subtitle {
    position: static;
    max-width: 650px;
    margin: 18px 0 26px;
    font-size: 21px;
  }

  .hero-info-card {
    display: none;
  }

  .hero-visual {
    min-height: 430px;
    margin-left: 0;
    margin-top: -80px;
  }

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

  .benefit-panel {
    left: 28px;
  }

  .service-grid {
    grid-template-columns: 1fr;
    max-width: 640px;
  }

  .fit-check-banner {
    max-width: 640px;
    flex-direction: column;
    align-items: stretch;
  }

  .fit-check-banner .card-cta {
    width: 100%;
  }

  .process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 720px;
  }

  .process-steps article:nth-child(2)::after {
    display: none;
  }

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

  .review-band {
    grid-template-columns: 1fr;
  }

  .review-card {
    flex-basis: calc((100% - 14px) / 2);
  }

  .about-content {
    grid-template-columns: 1fr;
  }

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

  body:has(.site-footer) {
    padding-bottom: 184px;
  }

  .footer-contact {
    border: 0;
    padding: 0;
  }

  .quote-result,
  .quote-cart-layout,
  .quote-product-panel {
    grid-template-columns: 1fr;
  }

  .cart-summary {
    position: static;
  }

  .quote-product-copy {
    border-right: 0;
    border-bottom: 1px solid #e6eaf0;
  }

  .quote-summary-panel {
    position: static;
  }

  .booking-panel,
  .booking-step,
  .manual-quote-section {
    grid-template-columns: 1fr;
  }

  .public-booking-page .contact-summary {
    position: static;
  }

  .booking-panel {
    align-items: start;
  }

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

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

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

@media (max-width: 720px) {
  .public-booking-layout .booking-contact-grid {
    grid-template-columns: 1fr;
  }

  .public-booking-layout .primary-action {
    justify-self: stretch;
    width: 100%;
    min-width: 0;
  }

  .site-header {
    min-height: 86px;
    padding: 14px 18px;
  }

  .brand-logo {
    width: 210px;
    height: 54px;
  }

  body.nav-open .main-nav,
  body.nav-open .header-actions {
    flex-direction: column;
  }

  .hero {
    min-height: 0;
  }

  .hero-copy {
    padding: 28px 18px 30px;
  }

  .trust-pill {
    font-size: 12px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .service-hero-copy h1 {
    font-size: 40px;
  }

  .service-hero-copy p:not(.trust-pill) {
    font-size: 18px;
  }

  .service-hero-actions,
  .service-hero-actions .link-action {
    width: 100%;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .quote-bar {
    grid-template-columns: 1fr;
    width: 100%;
    border-radius: 12px;
  }

  .hero-quote-choice {
    width: 100%;
    padding: 16px;
  }

  .quote-choice-label {
    font-size: 15px;
  }

  .hero-quote-choice h2 {
    font-size: 22px;
  }

  .quote-card-copy {
    font-size: 14px;
  }

  .quote-hint,
  .hero-service-label,
  .hero-service-strip {
    width: 100%;
  }

  .hero-service-strip {
    grid-template-columns: 1fr;
  }

  .quote-input {
    min-height: 64px;
    gap: 14px;
    padding: 0 18px;
  }

  .quote-input input {
    font-size: 19px;
    line-height: 1.2;
  }

  .link-mark,
  .suburb-mark {
    font-size: 24px;
  }

  .suburb-input {
    min-height: 64px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .quote-bar button {
    min-height: 66px;
    width: 100%;
    font-size: 18px;
  }

  .manual-quote-choice {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    font-size: 16px;
  }

  .manual-quote-choice a {
    width: 100%;
    min-height: 54px;
    font-size: 16px;
  }

  .hero-stats {
    display: grid;
    gap: 18px;
    margin-top: 32px;
  }

  .hero-stats div {
    min-width: 0;
    border-right: 0;
    padding: 0;
  }

  .hero-visual {
    display: grid;
    min-height: 0;
    margin-top: -20px;
  }

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

  .hero-fade {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.1));
  }

  .benefit-panel {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: auto;
    grid-template-columns: 1fr 1fr;
    margin: 16px 18px 0;
    background: #fff;
    box-shadow: 0 12px 28px rgba(3, 19, 62, 0.12);
  }

  .benefit-panel div {
    min-height: 116px;
  }

  .benefit-panel div:nth-child(2) {
    border-right: 0;
  }

  .benefit-panel div:nth-child(-n + 2) {
    border-bottom: 1px solid #d7e0eb;
  }

  .services-section,
  .process-section,
  .assembly-options {
    padding-inline: 18px;
  }

  .assembly-option {
    padding: 20px;
  }

  .option-heading {
    align-items: flex-start;
  }

  .assembly-option h3 {
    font-size: 23px;
  }

  .service-body {
    padding-inline: 22px;
  }

  .service-body h3 {
    font-size: 22px;
  }

  .fit-check-banner {
    padding: 18px;
  }

  .fit-check-banner > div {
    align-items: flex-start;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .process-steps article::after {
    display: none;
  }

  .retailer-strip {
    grid-template-columns: 1fr;
  }

  .retailer-strip > * {
    border-right: 0;
    border-bottom: 1px solid #dbe1eb;
  }

  .retailer-strip > *:last-child {
    border-bottom: 0;
  }

  .review-band {
    padding: 28px 18px;
  }

  .reviews-heading h2 {
    font-size: 28px;
  }

  .review-card {
    flex-basis: 100%;
  }

  .review-controls {
    justify-content: start;
  }

  .site-footer {
    position: fixed;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    min-height: 0;
    padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
  }

  body:has(.site-footer) {
    padding-bottom: 164px;
  }

  .toast {
    bottom: 174px;
  }

  .site-footer .brand {
    display: none;
  }

  .footer-contact {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: 8px 12px;
    border: 0;
    padding: 0;
    font-size: 12px;
    line-height: 1.2;
  }

  .footer-contact a {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .footer-contact a[href="https://www.assemblego.com.au"] {
    display: none;
  }

  .footer-cta {
    width: 100%;
    min-height: 48px;
  }

  .quote-review-shell {
    padding: 28px 16px 52px;
  }

  .quote-header {
    grid-template-columns: 1fr;
  }

  .quote-progress {
    margin-bottom: 28px;
  }

  .quote-progress::before {
    left: 15%;
    right: 15%;
    top: 15px;
    height: 4px;
  }

  .quote-progress li {
    gap: 9px;
    font-size: 11px;
  }

  .quote-progress span {
    width: 34px;
    height: 34px;
    border-width: 4px;
  }

  .quote-product-image,
  .quote-product-image img {
    min-height: 260px;
  }

  .quote-cart-main,
  .cart-summary {
    padding: 18px;
  }

  .quote-section-title {
    align-items: stretch;
    flex-direction: column;
  }

  .compact-action {
    width: 100%;
  }

  .add-item-form {
    grid-template-columns: 1fr;
  }

  .add-item-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .quote-item {
    grid-template-columns: 82px minmax(0, 1fr);
    align-items: start;
  }

  .quote-item-media {
    width: 82px;
  }

  .quote-item-actions {
    grid-column: 1 / -1;
    grid-template-columns: 1fr auto;
    align-items: center;
    justify-items: start;
  }

  .item-confirmation,
  .item-confirmation div {
    display: grid;
    grid-template-columns: 1fr;
  }

  .quote-item-details {
    grid-template-columns: 1fr;
  }

  .quote-product-copy,
  .quote-summary-panel,
  .booking-panel,
  .confirmation-card,
  .manual-quote-form {
    padding: 20px;
  }

  .booking-contact-grid,
  .time-slot-field,
  .confirmation-details {
    grid-template-columns: 1fr;
  }

  .quote-total strong {
    font-size: 24px;
  }

  .link-action,
  .manual-quote-form button {
    width: 100%;
  }

  .booking-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .contact-summary {
    padding: 20px;
  }

  .contact-summary-item {
    grid-template-columns: 1fr;
  }

  .booking-contact-grid,
  .manual-quote-form,
  .service-manual-form {
    grid-template-columns: 1fr;
  }

  .manual-wide {
    grid-column: auto;
  }

  .admin-shell {
    padding: 28px 16px 52px;
  }

  .admin-panel {
    padding: 20px;
  }

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

  .admin-detail-wide {
    grid-column: auto;
  }

  .admin-list-toolbar,
  .admin-request-row {
    grid-template-columns: 1fr;
  }

  .admin-request-header {
    display: none;
  }

  .admin-request-row {
    gap: 8px;
    padding: 16px;
  }

  .admin-request-row > * {
    display: grid;
    grid-template-columns: 98px minmax(0, 1fr);
    gap: 10px;
    white-space: normal;
  }

  .admin-request-row > *::before {
    content: attr(data-label);
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
  }

  .admin-request-status {
    display: grid;
    align-items: center;
  }

  .admin-request-total {
    text-align: left;
  }

  .admin-status-pill {
    width: max-content;
  }
}
