:root {
  color-scheme: light;
  --ink: #18222d;
  --text: #334150;
  --muted: #6f7b86;
  --paper: #f7f2e8;
  --surface: #ffffff;
  --line: #d9ded9;
  --forest: #2f5e4b;
  --steel: #345d70;
  --clay: #b1623d;
  --gold: #c99643;
  --shadow: 0 20px 60px rgba(24, 34, 45, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Arial, sans-serif;
  letter-spacing: 0;
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
  -webkit-hyphens: none;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(247, 242, 232, 0.9);
  border-bottom: 1px solid rgba(217, 222, 217, 0.86);
  backdrop-filter: blur(18px);
}

.brand,
.nav,
.hero-actions,
.footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 0;
  font-weight: 800;
}

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

.brand-logo,
.footer-logo {
  display: block;
  width: 184px;
  height: 52px;
}

.brand-logo text,
.footer-logo text {
  fill: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Arial, sans-serif;
  font-size: 24px;
  font-weight: 850;
  letter-spacing: 0;
}

.brand-roof,
.brand-house,
.brand-door,
.brand-swatch {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-roof,
.brand-house {
  stroke: var(--forest);
  stroke-width: 4;
}

.brand-door {
  stroke: var(--clay);
  stroke-width: 4;
}

.brand-swatch {
  stroke: var(--gold);
  stroke-width: 5;
}

.nav {
  gap: 20px;
  color: var(--text);
  font-size: 14px;
  font-weight: 650;
}

.mobile-menu {
  position: relative;
  display: none;
}

.mobile-menu summary {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(20, 31, 43, 0.16);
  border-radius: 8px;
  color: var(--text);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  list-style: none;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  display: grid;
  width: 190px;
  padding: 10px;
  border: 1px solid rgba(20, 31, 43, 0.12);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.mobile-menu-panel a {
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--text);
  font-size: 14px;
  font-weight: 750;
}

.mobile-menu-panel a:hover {
  background: rgba(47, 94, 75, 0.08);
}

.header-action,
.primary-button,
.secondary-button,
.quote-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 8px;
  font-weight: 800;
  white-space: nowrap;
}

.header-action {
  padding: 0 16px;
  background: var(--forest);
  color: var(--surface);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  padding: 120px clamp(20px, 5vw, 72px) 46px;
  overflow: hidden;
  color: var(--surface);
  background: #111a22;
}

.hero-media,
.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: heroFade 50s infinite;
  transform: scale(1.02);
}

.hero-image:nth-child(1) {
  animation-delay: 0s;
}

.hero-image:nth-child(2) {
  animation-delay: 10s;
}

.hero-image:nth-child(3) {
  animation-delay: 20s;
}

.hero-image:nth-child(4) {
  animation-delay: 30s;
}

.hero-image:nth-child(5) {
  animation-delay: 40s;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(16, 24, 32, 0.95) 0%, rgba(16, 24, 32, 0.72) 42%, rgba(16, 24, 32, 0.18) 78%),
    linear-gradient(0deg, rgba(16, 24, 32, 0.68) 0%, rgba(16, 24, 32, 0.04) 56%);
}

@keyframes heroFade {
  0%,
  4% {
    opacity: 0;
  }

  8%,
  20% {
    opacity: 1;
  }

  24%,
  100% {
    opacity: 0;
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 880px;
  padding-bottom: 23vh;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
  -webkit-hyphens: none;
}

a,
span,
strong,
button,
label,
input,
textarea,
select,
dt,
dd,
figcaption {
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
  -webkit-hyphens: none;
}

h1 {
  max-width: 860px;
  margin-bottom: 24px;
  font-size: clamp(42px, 6.6vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.24;
  text-wrap: balance;
}

.hero-content p,
.lead,
.section-head p,
.company-card p {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.62;
}

.section-head p,
.lead,
.company-card p {
  color: var(--text);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.primary-button,
.quote-form button {
  padding: 0 22px;
  border: 0;
  background: var(--clay);
  color: var(--surface);
  box-shadow: 0 14px 34px rgba(177, 98, 61, 0.24);
}

.secondary-button {
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  color: var(--surface);
}

.hero-note {
  position: absolute;
  right: clamp(20px, 5vw, 72px);
  bottom: 36px;
  z-index: 2;
  max-width: min(520px, calc(100% - 40px));
  padding: 14px 18px;
  border-left: 4px solid var(--gold);
  border-radius: 0 8px 8px 0;
  background: rgba(16, 24, 32, 0.42);
  backdrop-filter: blur(10px);
}

.hero-note span {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(17px, 1.5vw, 21px);
  font-weight: 800;
  line-height: 1.4;
}

.section {
  padding: 108px clamp(20px, 5vw, 72px);
}

.products-section,
.process-section,
.homeowners-section,
.gallery-section {
  background: var(--paper);
}

.custom-section {
  background: #eef3f0;
}

.company-section {
  background: #edf1f4;
}

.quote-section {
  background: #f5eee5;
}

.terms-section {
  background: #f8f6f0;
}

.refund-section {
  background: #eef3f0;
}

.section-head {
  max-width: 900px;
}

.section-head h2 {
  max-width: 820px;
  text-wrap: balance;
}

.product-grid,
.timeline,
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 54px;
}

.product-grid article,
.timeline article,
.audience-grid article,
.company-card,
.quote-form,
.spec-list {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.product-grid article {
  min-height: 390px;
  padding: 26px;
}

.product-grid p,
.timeline p,
.audience-grid p,
.spec-list p,
.facts dd {
  color: var(--text);
  font-size: 16px;
  line-height: 1.58;
}

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

.audience-grid article {
  min-height: 360px;
  padding: 18px 18px 24px;
}

.audience-photo {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  margin-bottom: 22px;
  border: 1px solid rgba(24, 34, 45, 0.1);
  border-radius: 8px;
  object-fit: cover;
  background: #e9e2d8;
}

.product-photo {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  margin-bottom: 24px;
  border-radius: 8px;
  border: 1px solid rgba(24, 34, 45, 0.12);
  object-fit: cover;
  background: #e9e2d8;
}

.panels {
  background:
    linear-gradient(90deg, rgba(24, 34, 45, 0.16) 0 2px, transparent 2px 18px),
    linear-gradient(135deg, #d1a26f, #f0dac0 54%, #9f7650);
}

.cabinetry {
  background:
    linear-gradient(90deg, transparent 49%, rgba(24, 34, 45, 0.2) 49% 51%, transparent 51%),
    linear-gradient(0deg, transparent 49%, rgba(24, 34, 45, 0.2) 49% 51%, transparent 51%),
    linear-gradient(135deg, #cfb596, #efe4d1);
}

.bath {
  background:
    radial-gradient(circle at 74% 26%, rgba(255, 255, 255, 0.72) 0 14px, transparent 15px),
    linear-gradient(90deg, rgba(24, 34, 45, 0.16) 0 2px, transparent 2px 24px),
    linear-gradient(135deg, #e7e0d7, #b9c8c8);
}

.storage {
  background:
    linear-gradient(90deg, transparent 33%, rgba(24, 34, 45, 0.16) 33% 35%, transparent 35% 66%, rgba(24, 34, 45, 0.16) 66% 68%, transparent 68%),
    linear-gradient(0deg, transparent 47%, rgba(24, 34, 45, 0.16) 47% 49%, transparent 49%),
    linear-gradient(135deg, #d9c4a4, #f2e6d2);
}

.materials {
  background:
    linear-gradient(135deg, rgba(47, 94, 75, 0.8), rgba(52, 93, 112, 0.55)),
    repeating-linear-gradient(90deg, #e6ded2 0 14px, #d5c8b7 14px 28px);
}

.custom {
  background:
    linear-gradient(135deg, rgba(177, 98, 61, 0.82), rgba(52, 93, 112, 0.7)),
    repeating-linear-gradient(135deg, #efe5d7 0 16px, #ceb79a 16px 32px);
}

.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr);
  gap: clamp(32px, 6vw, 82px);
  align-items: start;
}

.custom-layout {
  display: grid;
  gap: 44px;
}

.custom-copy {
  max-width: 980px;
}

.spec-list {
  padding: 30px;
}

.spec-list div {
  position: relative;
  padding: 22px 84px 22px 0;
  border-bottom: 1px solid var(--line);
}

.spec-list div:first-child {
  padding-top: 0;
}

.spec-list div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.spec-list span,
.timeline span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--steel);
  color: var(--surface);
  font-weight: 850;
}

.card-icon {
  position: absolute;
  top: 26px;
  right: 26px;
  width: 54px;
  height: 54px;
  padding: 12px;
  border: 1px solid rgba(52, 93, 112, 0.18);
  border-radius: 8px;
  color: var(--steel);
  background: #f7faf8;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.icon-mail-card {
  color: #2f5e4b;
  background: #edf6ef;
}

.icon-check-card {
  color: #345d70;
  background: #edf4f7;
}

.icon-file-card {
  color: #b1623d;
  background: #fbf0e9;
}

.icon-approve-card {
  color: #2f6f5a;
  background: #edf8f2;
}

.icon-package-card {
  color: #8f6725;
  background: #fbf5e8;
}

.icon-support-card {
  color: #4d5970;
  background: #f0f2f7;
}

.spec-list strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
}

.quote-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.quote-flow::before {
  position: absolute;
  top: 54px;
  right: 11%;
  left: 11%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--forest), var(--gold), var(--clay));
  content: "";
}

.quote-flow article {
  position: relative;
  z-index: 1;
  min-height: 238px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.quote-flow svg {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
  padding: 13px;
  border: 1px solid rgba(52, 93, 112, 0.18);
  border-radius: 50%;
  color: var(--steel);
  background: #f7faf8;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.quote-flow span {
  position: absolute;
  top: 34px;
  right: 24px;
  color: var(--clay);
  font-size: 13px;
  font-weight: 850;
}

.quote-flow strong {
  display: block;
  margin-bottom: 8px;
  color: var(--forest);
  font-size: 22px;
  line-height: 1.18;
}

.quote-flow p {
  margin: 0;
  color: var(--text);
  font-size: 16px;
  line-height: 1.5;
}

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

.timeline article {
  position: relative;
  min-height: 270px;
  padding: 26px 104px 26px 26px;
}

.timeline span {
  background: var(--forest);
}

.company-card {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
  gap: 46px;
  padding: clamp(28px, 5vw, 58px);
}

.support-grid {
  display: grid;
  gap: 14px;
}

.support-grid article {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 6px 18px;
  align-items: start;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf7;
}

.support-grid span {
  grid-row: span 2;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--forest);
  color: #fff;
  font-size: 13px;
  font-weight: 850;
}

.support-grid strong {
  color: var(--steel);
  font-size: 15px;
  font-weight: 850;
  text-transform: uppercase;
}

.support-grid p {
  margin: 0;
  color: var(--text);
  font-size: 16px;
  line-height: 1.58;
}

.quote-form {
  display: grid;
  gap: 18px;
  padding: 28px;
}

.condition-board {
  display: grid;
  grid-template-columns: minmax(320px, 0.74fr) minmax(420px, 1fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  padding: clamp(28px, 4.5vw, 54px);
  border: 1px solid rgba(47, 94, 75, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(246, 240, 229, 0.92)),
    radial-gradient(circle at 90% 12%, rgba(201, 150, 67, 0.14), transparent 30%);
  box-shadow: var(--shadow);
}

.condition-copy h2 {
  max-width: 520px;
  margin-bottom: 14px;
  font-size: clamp(32px, 3.2vw, 48px);
}

.condition-copy p {
  max-width: 560px;
  color: var(--text);
  font-size: 19px;
  line-height: 1.55;
}

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

.condition-list li {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 14px;
  align-items: baseline;
  padding: 14px 0;
  border-top: 1px solid rgba(47, 94, 75, 0.14);
}

.condition-list strong {
  color: var(--forest);
  font-size: 16px;
  font-weight: 850;
}

.condition-list span {
  color: var(--text);
  font-size: 15px;
  line-height: 1.45;
}

.condition-visual {
  position: relative;
  min-height: 330px;
  border-radius: 8px;
  background: linear-gradient(180deg, #eef3f0, #f9f6ef);
  overflow: hidden;
}

.visual-card {
  position: absolute;
  display: grid;
  justify-items: center;
  gap: 8px;
  min-width: 118px;
  padding: 16px 14px;
  border: 1px solid rgba(47, 94, 75, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 42px rgba(24, 34, 45, 0.1);
}

.visual-card svg,
.release-badge svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: var(--forest);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.visual-card span {
  color: var(--text);
  font-size: 14px;
  font-weight: 850;
}

.visual-card-specs {
  top: 44px;
  left: 8%;
}

.visual-card-quote {
  top: 44px;
  left: 38%;
}

.visual-card-payment {
  top: 44px;
  right: 8%;
}

.release-badge {
  position: absolute;
  right: 12%;
  bottom: 40px;
  left: 12%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 74px;
  padding: 16px;
  border-radius: 8px;
  background: var(--forest);
  color: #fff;
}

.release-badge svg {
  flex: 0 0 auto;
  stroke: #fff;
}

.release-badge span {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 850;
}

.terms-footnote {
  max-width: 900px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.refund-board {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(290px, 0.75fr);
  gap: 22px;
  align-items: stretch;
  margin-top: 42px;
}

.refund-path {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(47, 94, 75, 0.14);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.refund-path::before {
  position: absolute;
  top: 58px;
  right: 72px;
  left: 72px;
  height: 3px;
  background: linear-gradient(90deg, var(--forest), var(--gold), var(--copper));
  content: "";
}

.refund-path article {
  position: relative;
  display: grid;
  gap: 18px;
  align-content: start;
  min-height: 210px;
  padding: 10px;
}

.refund-path span {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border: 8px solid #fff;
  border-radius: 50%;
  background: var(--forest);
  color: #fff;
  box-shadow: 0 14px 30px rgba(47, 94, 75, 0.18);
  font-size: 20px;
  font-weight: 850;
}

.refund-path h3 {
  margin-bottom: 8px;
  color: var(--forest);
  font-size: 24px;
}

.refund-path p,
.refund-review li,
.refund-note {
  color: var(--text);
  font-size: 16px;
  line-height: 1.55;
}

.refund-review {
  display: grid;
  align-content: center;
  padding: 28px;
  border: 1px solid rgba(47, 94, 75, 0.16);
  border-radius: 8px;
  background: var(--forest);
  color: #fff;
  box-shadow: var(--shadow);
}

.refund-label {
  margin: 0 0 18px;
  color: var(--sand);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.refund-review ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.refund-review li {
  position: relative;
  padding-left: 28px;
  color: #fff;
}

.refund-review li::before {
  position: absolute;
  top: 0.48em;
  left: 0;
  display: block;
  width: 18px;
  height: 18px;
  box-sizing: border-box;
  border: 5px solid var(--copper);
  border-radius: 50%;
  background: #fff;
  content: "";
}

.refund-note {
  max-width: 900px;
  margin: 20px 0 0;
}

.gallery-section {
  padding-top: 24px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 54px;
}

.gallery-grid figure {
  position: relative;
  min-height: 420px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  opacity: 0.86;
}

.gallery-grid figcaption {
  position: absolute;
  inset: auto 0 0;
  display: grid;
  gap: 8px;
  padding: 24px;
  color: var(--surface);
  background: linear-gradient(0deg, rgba(16, 24, 32, 0.86), rgba(16, 24, 32, 0));
}

.gallery-grid strong {
  font-size: 22px;
  line-height: 1.22;
}

.gallery-grid span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.5;
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 28px;
}

.contact-cards a,
.contact-cards div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 74px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 14px 38px rgba(24, 34, 45, 0.08);
}

.contact-cards a {
  transition:
    border-color 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.contact-cards a:hover {
  border-color: rgba(47, 94, 75, 0.42);
  box-shadow: 0 18px 42px rgba(24, 34, 45, 0.12);
  transform: translateY(-1px);
}

.contact-cards span {
  flex: 0 0 auto;
  color: var(--steel);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.contact-cards strong {
  min-width: 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.35;
  text-align: right;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.contact-email-text {
  white-space: nowrap;
}

.map-card {
  height: 260px;
  margin-top: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 14px 38px rgba(24, 34, 45, 0.08);
}

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

.quote-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid #cbd2ce;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 500;
}

.quote-form input,
.quote-form select {
  min-height: 44px;
  padding: 0 12px;
}

.quote-form textarea {
  min-height: 126px;
  padding: 12px;
  resize: vertical;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.quote-form button {
  width: 100%;
  cursor: pointer;
  font: inherit;
}

.footer {
  display: grid;
  grid-template-columns: minmax(230px, 0.8fr) minmax(320px, 1.2fr) minmax(190px, 0.62fr);
  gap: clamp(22px, 4vw, 56px);
  align-items: start;
  padding: 28px clamp(20px, 5vw, 72px);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.footer a,
.footer strong {
  color: var(--surface);
  font-weight: 800;
}

.footer-logo {
  width: 170px;
  height: 48px;
  margin-bottom: 12px;
}

.footer-logo text {
  fill: var(--surface);
}

.footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.55;
}

.footer p + p {
  margin-top: 10px;
}

.footer-legal {
  max-width: 680px;
}

.footer-legal strong {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 10px;
  justify-items: end;
}

.footer-links a {
  line-height: 1.35;
  text-align: right;
}

@media (max-width: 980px) {
  .site-header {
    min-height: 78px;
  }

  .nav {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .hero {
    min-height: 100vh;
  }

  .hero-content {
    padding-bottom: 250px;
  }

  .hero-note,
  .product-grid,
  .timeline,
  .audience-grid,
  .refund-board,
  .refund-path,
  .quote-flow,
  .gallery-grid,
  .company-card,
  .quote-layout,
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .hero-note {
    left: 20px;
    right: 20px;
  }

  .section {
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .condition-board {
    grid-template-columns: 1fr;
  }

  .condition-visual {
    min-height: 310px;
  }

  .refund-path {
    padding: 18px 22px;
  }

  .refund-path::before {
    display: none;
  }

  .refund-path article {
    min-height: auto;
    grid-template-columns: auto 1fr;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(47, 94, 75, 0.12);
  }

  .refund-path article:last-child {
    border-bottom: 0;
  }

  .refund-path span {
    width: 58px;
    height: 58px;
    border-width: 6px;
    font-size: 17px;
  }

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

  .footer-links {
    justify-items: start;
  }

  .footer-links a {
    text-align: left;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 560px) {
  .site-header {
    gap: 6px;
    padding: 12px 16px;
  }

  .brand-logo {
    width: 124px;
    height: 36px;
  }

  .mobile-menu summary {
    min-height: 36px;
    padding: 0 10px;
    font-size: 12px;
  }

  .header-action {
    min-height: 38px;
    padding: 0 10px;
    font-size: 12px;
  }

  .hero {
    padding-right: 16px;
    padding-left: 16px;
  }

  h1 {
    font-size: 41px;
  }

  h2 {
    font-size: 32px;
  }

  .hero-content p,
  .lead,
  .section-head p,
  .company-card p {
    font-size: 17px;
  }

  .product-grid article,
  .timeline article,
  .audience-grid article,
  .quote-flow article,
  .quote-form,
  .company-card {
    padding: 22px;
  }

  .refund-path span {
    width: 56px;
    height: 56px;
  }

  .quote-flow::before {
    display: none;
  }

  .timeline article {
    padding-right: 82px;
  }

  .card-icon {
    top: 22px;
    right: 22px;
    width: 44px;
    height: 44px;
  }

  .condition-board {
    padding: 24px;
  }

  .condition-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .condition-visual {
    min-height: 440px;
  }

  .visual-card {
    left: 50%;
    transform: translateX(-50%);
  }

  .visual-card-specs {
    top: 30px;
  }

  .visual-card-quote {
    top: 140px;
  }

  .visual-card-payment {
    top: 250px;
    right: auto;
  }

  .release-badge {
    right: 24px;
    bottom: 24px;
    left: 24px;
  }

  .contact-cards a,
  .contact-cards div {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .contact-cards strong {
    text-align: left;
    overflow-wrap: normal;
  }

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

  .footer-links {
    justify-items: start;
  }

  .footer-links a {
    text-align: left;
  }
}
