:root {
  --green: #214f3b;
  --green-dark: #17392c;
  --green-light: #edf2eb;
  --ink: #26392e;
  --muted: #606d5d;
  --line: #dfe4db;
  --paper: #fff;
  --wash: #f7f8f4;
  --accent: #c5d09d;
  --error: #a33629;
  --radius: 6px;
  --font: "DM Sans", sans-serif;
  --display: "Manrope", sans-serif;
}
* {
  box-sizing: border-box;
  letter-spacing: 0;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 28px;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font);
  font-size: 14px;
  line-height: 1.6;
}
button,
input,
select {
  font: inherit;
}
button,
a,
input,
select,
summary {
  -webkit-tap-highlight-color: transparent;
}
button,
a {
  touch-action: manipulation;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  cursor: pointer;
}
button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
button {
  color: inherit;
}
svg {
  width: 19px;
  height: 19px;
  stroke-width: 1.6;
  flex-shrink: 0;
}
button svg,
a svg {
  pointer-events: none;
}
img {
  display: block;
  max-width: 100%;
}
h1,
h2,
h3,
h4,
p {
  margin: 0;
}
h1,
h2,
h3,
h4 {
  font-family: var(--display);
  font-weight: 600;
}
h2 {
  font-size: 38px;
  line-height: 1.25;
}
h3 {
  font-size: 17px;
}
p {
  color: var(--muted);
}
[hidden] {
  display: none !important;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid #b2c18a;
  outline-offset: 4px;
}
input:focus,
select:focus {
  outline: 2px solid #719a7b;
  outline-offset: 1px;
}
.shell {
  width: min(1320px, calc(100% - 96px));
  margin-inline: auto;
}
.eyebrow {
  font-size: 10px;
  font-weight: 700;
  color: var(--green);
  line-height: 1.4;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: var(--green);
  color: white;
  border: 1px solid var(--green);
  padding: 15px 23px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 550;
  line-height: 1.4;
  min-height: 48px;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}
.button-small {
  padding: 12px 19px;
  min-height: 43px;
}
.button-outline {
  color: var(--green);
  background: transparent;
  border-color: #b9c6b5;
}
.button-outline:hover {
  background: #edf2e9;
}
.button-light {
  color: var(--green);
  background: #f4f6e9;
  border-color: #f4f6e9;
}
.button-light:hover {
  background: white;
}
.text-link {
  display: inline-flex;
  gap: 13px;
  align-items: center;
  font-size: 12px;
  font-weight: 650;
}
.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.plain-button {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  background: none;
  border: 0;
  padding: 0;
  font-size: 11px;
  font-weight: 550;
}
.plain-button:hover {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.plain-button svg {
  width: 15px;
  height: 15px;
}
.icon-button {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 0;
}
.icon-button:hover {
  background: var(--green-light);
  border-color: var(--line);
}
.muted {
  color: var(--muted);
  font-size: 10px;
}
.skip-link {
  position: fixed;
  top: -60px;
  left: 16px;
  z-index: 100;
  padding: 10px;
  background: white;
}
.skip-link:focus {
  top: 10px;
}
.announcement {
  height: 32px;
  background: var(--green);
  color: #ecf0e7;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 10px;
}
.announcement span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #d4debb;
}
.announcement svg {
  width: 12px;
  height: 12px;
}
.site-header {
  background: white;
  position: relative;
  z-index: 5;
}
.nav-wrap {
  height: 87px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  color: var(--green);
  font-family: var(--display);
  font-weight: 800;
  font-size: 33px;
  line-height: 1;
}
.brand-sub {
  display: block;
  font-family: var(--font);
  font-size: 8px;
  font-weight: 650;
  margin-top: 6px;
}
.brand-mark {
  display: grid;
  grid-template-columns: repeat(2, 12px);
  grid-template-rows: repeat(2, 16px);
  gap: 3px;
  transform: skewY(-9deg);
}
.brand-mark span {
  background: var(--green);
}
.brand-mark span:nth-child(2) {
  opacity: 0.5;
}
.brand-mark span:nth-child(4) {
  opacity: 0.72;
}
.desktop-nav {
  display: flex;
  gap: 36px;
  font-size: 12px;
}
.desktop-nav a {
  padding: 12px 0;
}
.desktop-nav a:hover {
  color: #6b8957;
}
.menu-toggle {
  display: none;
}
#mobile-nav {
  padding: 5px 24px 20px;
  border-top: 1px solid var(--line);
}
#mobile-nav a {
  display: block;
  padding: 10px;
}
.hero {
  height: 590px;
  position: relative;
  overflow: hidden;
  background: #e8e8df;
}
.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
  animation: hero-arrive 1.4s ease-out;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(241, 243, 233, 0.94),
    rgba(241, 243, 233, 0.78) 29%,
    rgba(241, 243, 233, 0.22) 53%,
    rgba(241, 243, 233, 0) 75%
  );
}
.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-bottom: 18px;
}
.hero .eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
}
.short-line {
  width: 28px;
  height: 1px;
  background: var(--green);
}
h1 {
  font-size: 68px;
  line-height: 1.12;
  font-weight: 500;
  margin: 22px 0 20px;
  max-width: 620px;
}
.hero p {
  font-size: 15px;
  line-height: 1.85;
  color: #526252;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 29px;
}
.hero-caption {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 8px;
  font-weight: 600;
  margin-top: 55px;
  color: #62725d;
}
.caption-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
}
.hero-spec {
  position: absolute;
  right: 48px;
  bottom: 33px;
  padding: 19px 22px;
  width: 183px;
  background: rgba(250, 251, 244, 0.91);
  backdrop-filter: blur(8px);
  border-left: 2px solid var(--green);
}
.hero-spec > span {
  display: block;
  font-size: 8px;
  font-weight: 650;
}
.hero-spec strong {
  font-family: var(--display);
  font-size: 52px;
  line-height: 1.25;
  font-weight: 500;
}
.hero-spec div {
  font-size: 10px;
  margin-top: 12px;
  border-top: 1px solid #cdd3c2;
  padding-top: 10px;
}
.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-block: 29px;
}
.benefits > div {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  border-right: 1px solid var(--line);
}
.benefits > div:first-child {
  justify-content: flex-start;
}
.benefits > div:last-child {
  border: 0;
}
.benefits svg {
  width: 27px;
  height: 27px;
  color: var(--green);
}
.benefits p {
  display: flex;
  flex-direction: column;
}
.benefits strong {
  font-weight: 550;
  font-size: 12px;
  color: var(--ink);
}
.benefits span {
  font-size: 10px;
  margin-top: 2px;
}
.config-section {
  padding: 70px 0 27px;
  background: var(--wash);
  border-top: 1px solid var(--line);
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 29px;
}
.section-heading h2 {
  margin-top: 12px;
}
.section-heading p {
  margin-top: 12px;
  font-size: 13px;
}
.step-indicator {
  display: flex;
  gap: 22px;
  font-size: 11px;
  color: #8c9488;
  padding-bottom: 4px;
  white-space: nowrap;
}
.step-indicator span {
  display: flex;
  align-items: center;
  gap: 7px;
}
.step-indicator b {
  width: 25px;
  height: 25px;
  border: 1px solid #d4dace;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 9px;
  font-weight: 500;
}
.step-indicator .active {
  color: var(--green);
}
.step-indicator .active b {
  background: var(--green);
  color: white;
  border-color: var(--green);
}
.estimate-notice {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f0f1e8;
  border: 1px solid #e2e5d7;
  padding: 11px 15px;
  font-size: 10px;
  line-height: 1.65;
  color: #687058;
  margin-bottom: 19px;
  border-radius: 4px;
}
.estimate-notice > svg {
  width: 16px;
  height: 16px;
}
.estimate-notice > span {
  flex: 1;
}
.estimate-notice strong {
  font-weight: 650;
  color: #505d45;
}
.estimate-notice button {
  white-space: nowrap;
}
.builder {
  display: grid;
  grid-template-columns: 205px minmax(0, 1fr) 286px;
  align-items: start;
  border: 1px solid var(--line);
  background: white;
  border-radius: 6px;
  overflow: clip;
}
.project-panel {
  padding: 23px 16px;
  align-self: stretch;
  background: #fcfcf9;
}
.panel-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2px;
}
.panel-heading h3 {
  font-size: 13px;
}
.count-badge {
  height: 22px;
  min-width: 22px;
  display: grid;
  place-items: center;
  background: #edf0e6;
  border-radius: 4px;
  font-size: 10px;
}
.save-status {
  font-size: 9px;
  color: #858d7d;
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 7px 2px 23px;
}
.save-status > span:first-child {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #839770;
}
.window-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.window-item {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  width: 100%;
  text-align: left;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 12px 9px;
  transition: border-color 0.2s;
}
.window-item.active {
  border-color: var(--green);
  background: #edf3e9;
}
.window-item .mini-window {
  width: 25px;
  height: 36px;
  flex-shrink: 0;
}
.window-item-text {
  min-width: 0;
  flex: 1;
}
.window-item strong {
  display: block;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.window-item small {
  display: block;
  font-size: 9px;
  color: var(--muted);
  margin-top: 3px;
}
.window-item em {
  font-style: normal;
  font-size: 9px;
  color: var(--green);
  font-weight: 550;
}
.window-item .item-index {
  position: absolute;
  top: 7px;
  right: 7px;
  font-size: 8px;
  color: var(--muted);
}
.add-window {
  width: 100%;
  font-size: 11px;
  gap: 7px;
  padding: 12px 6px;
  margin-top: 13px;
  min-height: 40px;
  border-style: dashed;
}
.add-window svg {
  width: 15px;
  height: 15px;
}
.project-note {
  margin: 42px 0 22px;
  padding: 20px 10px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 11px;
}
.project-note svg {
  width: 25px;
  height: 25px;
  color: #839277;
}
.project-note p {
  font-size: 11px;
  color: #849079;
  line-height: 1.65;
}
.reset-project {
  color: #7d8774;
  font-size: 9px;
  margin-left: 9px;
}
.editor-panel {
  border-inline: 1px solid var(--line);
  min-width: 0;
}
.editor-heading {
  padding: 20px 23px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.editor-heading .eyebrow {
  font-size: 8px;
  color: #89927f;
}
.editor-heading h3 {
  font-size: 18px;
  margin-top: 4px;
  overflow-wrap: anywhere;
}
.editor-tools {
  display: flex;
  gap: 3px;
}
.editor-tools svg {
  width: 16px;
  height: 16px;
}
.window-stage {
  height: 290px;
  background: radial-gradient(ellipse at 50% 42%, #eef0e6, #dce2d5);
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-block: 1px solid #d7dfcf;
  perspective: 800px;
}
.stage-label {
  position: absolute;
  top: 14px;
  left: 20px;
  right: 20px;
  display: flex;
  justify-content: space-between;
  font-size: 8px;
  color: #78846d;
}
.stage-label span:first-child {
  font-weight: 600;
}
.preview-assembly {
  position: relative;
  width: var(--preview-width, 122px);
  height: var(--preview-height, 206px);
  margin-top: 6px;
  transition:
    width 0.25s,
    height 0.25s;
}
.window-render {
  --frame: #f1f1e9;
  position: relative;
  width: 100%;
  height: 100%;
  border: 7px solid var(--frame);
  /* What you see through the window: sky, a hazy ridge, a treeline and a
     meadow, all in gradients so it stays sharp at any preview size and costs
     no request. It lives on the frame rather than on the glass, so sliding a
     sash open reveals more of the same view instead of a flat panel. */
  background:
    /* sun and the haze it throws across the sky */
    radial-gradient(30% 20% at 77% 18%, #fff4d6b0 0%, #fff4d600 74%),
    radial-gradient(70% 14% at 60% 30%, #ffffff4d 0%, #ffffff00 76%),
    /* two clouds, kept faint so they read as sky and not as shapes */
    radial-gradient(15% 5% at 25% 27%, #ffffff9e 0%, #ffffff00 74%),
    radial-gradient(11% 4% at 34% 30%, #ffffff85 0%, #ffffff00 74%),
    radial-gradient(19% 5% at 66% 38%, #ffffff7a 0%, #ffffff00 76%),
    /* a soft band of trees on the horizon: wide, overlapping and low in
       contrast, so it reads as distance rather than as a row of shapes */
    radial-gradient(46% 7% at 16% 59%, #5d7c5580 0%, #5d7c5500 78%),
    radial-gradient(38% 6% at 45% 59.6%, #56735080 0%, #56735000 78%),
    radial-gradient(42% 6.5% at 74% 59.2%, #58765180 0%, #58765100 78%),
    radial-gradient(30% 5% at 95% 59.6%, #5f7f5766 0%, #5f7f5700 78%),
    /* near meadow rise and the hollow behind it */
    radial-gradient(120% 19% at 16% 68%, #9cb691 0 62%, #9cb69100 63%),
    radial-gradient(88% 15% at 88% 71%, #86a37a 0 62%, #86a37a00 63%),
    /* far ridge, blue with distance */
    radial-gradient(130% 13% at 30% 56%, #a9bcc4 0 64%, #a9bcc400 65%),
    radial-gradient(80% 10% at 84% 57%, #b3c3c8 0 64%, #b3c3c800 65%),
    /* sky into meadow */
    linear-gradient(
      #a6cae6 0%,
      #c5dbec 32%,
      #dfeaea 50%,
      #e6ece0 56%,
      #b0c78f 61%,
      #94b273 77%,
      #7b9a60 100%
    );
  box-shadow:
    0 1px 0 1px #aeb4a8,
    2px 4px 5px #71816a40,
    12px 13px 25px #6d7c6750,
    inset 0 0 0 1px #869088;
  display: flex;
  isolation: isolate;
}
.window-render::after {
  content: "";
  position: absolute;
  left: -11px;
  right: -11px;
  height: 5px;
  bottom: -11px;
  background: var(--frame);
  box-shadow: 0 3px 4px #6c7c6655;
}
.window-pane {
  flex: 1;
  position: relative;
  border: 3px solid var(--frame);
  /* The glass only reflects and tints now - the view behind it comes from the
     frame, so the closed sash and the open one show the same landscape. */
  background:
    linear-gradient(
      123deg,
      #ffffff55 0%,
      #ffffff10 30%,
      #ffffff70 31%,
      #ffffff10 33%,
      #ffffff10 60%,
      #ffffff40 100%
    ),
    linear-gradient(
      175deg,
      #cfe4ea3d 5%,
      #e8f0ea2b 49%,
      #b9cdae24 51%,
      #7f9c7433 100%
    );
  box-shadow: inset 0 0 0 1px #98a49a;
  transition: transform 0.65s cubic-bezier(0.2, 0.7, 0.3, 1);
  overflow: hidden;
}
.window-pane::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 1px 1px 4px #68827950;
  pointer-events: none;
}
.window-render.doubleHung,
.window-render.singleHung {
  flex-direction: column;
}
.window-render.hopper .window-pane {
  transform-origin: bottom;
}
.window-render.open.doubleHung .window-pane:last-child,
.window-render.open.singleHung .window-pane:last-child {
  transform: translateY(-80%);
}
.window-render.open.slider .window-pane:first-child,
.window-render.open.slider3 .window-pane:first-child {
  transform: translateX(80%);
  z-index: 2;
}
.window-render.open.slider3 .window-pane:last-child {
  transform: translateX(-80%);
}
.window-render.open.hopper .window-pane {
  transform: perspective(280px) rotateX(-28deg);
}
.window-pane .grid-bar {
  position: absolute;
  background: var(--frame);
  box-shadow: 0 1px 2px #55665530;
  z-index: 1;
}
.grid-bar.vertical {
  width: 3px;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.grid-bar.horizontal {
  height: 3px;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.grid-prairie {
  position: absolute;
  inset: 13%;
  border: 3px solid var(--frame);
}
.window-render.obscure .window-pane {
  /* Obscure glass still hides the view - but as frosted ribs over it, not as a
     painted panel, so an open sash next to it stays consistent. */
  background:
    repeating-linear-gradient(90deg, #d6e3dbb5 0 2px, #aec3b7a8 2px 4px),
    linear-gradient(#e2ebe6cc, #9db29ccc);
  backdrop-filter: blur(3px);
}
.width-dimension {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -29px;
  border-top: 1px solid #98a48e;
  font-size: 9px;
  text-align: center;
  line-height: 19px;
}
.width-dimension::before,
.width-dimension::after {
  content: "";
  height: 6px;
  width: 1px;
  background: #98a48e;
  position: absolute;
  top: -4px;
}
.width-dimension::before {
  left: 0;
}
.width-dimension::after {
  right: 0;
}
.height-dimension {
  position: absolute;
  top: 0;
  bottom: 0;
  right: -38px;
  writing-mode: vertical-rl;
  border-left: 1px solid #98a48e;
  font-size: 9px;
  text-align: center;
  padding-left: 4px;
}
.stage-bottom {
  position: absolute;
  bottom: 10px;
  left: 16px;
  right: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  font-size: 8px;
  color: #738267;
}
.preview-action {
  display: flex;
  align-items: center;
  gap: 5px;
  border: 0;
  background: #f8faf0bd;
  padding: 5px 8px;
  border-radius: 3px;
  font-size: 9px;
  color: #577049;
}
.preview-action svg {
  width: 11px;
  height: 11px;
}
.editor-controls {
  padding: 24px;
}
.control-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}
.control-heading h4 {
  font-family: var(--font);
  font-weight: 600;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.control-heading h4 > span {
  font-size: 8px;
  color: #839775;
  width: 22px;
  height: 22px;
  border: 1px solid #e2e8db;
  display: grid;
  place-items: center;
  border-radius: 50%;
}
.control-heading.spaced {
  margin-top: 27px;
  border-top: 1px solid #edf0e8;
  padding-top: 21px;
}
.style-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
}
.style-button {
  border: 1px solid var(--line);
  border-radius: 4px;
  background: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 82px;
  padding: 8px 3px;
  position: relative;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.style-button:hover {
  background: #f6f8f0;
}
.style-button.active {
  background: #eef3e8;
  border-color: #608154;
}
.style-button > span:last-child {
  font-size: 9px;
  line-height: 1.2;
  text-align: center;
}
.style-button.active::after {
  content: "";
  position: absolute;
  right: 5px;
  top: 5px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--green);
}
.mini-window {
  width: 23px;
  height: 30px;
  border: 2px solid #6d7f65;
  background: #e3eadf;
  display: flex;
  padding: 1px;
  gap: 2px;
}
.mini-window span {
  border: 1px solid #8fa086;
  flex: 1;
  min-width: 0;
}
.mini-window.doubleHung,
.mini-window.singleHung {
  flex-direction: column;
}
.mini-window.slider {
  width: 36px;
  height: 26px;
}
.mini-window.slider3 {
  width: 41px;
  height: 26px;
}
.mini-window.hopper {
  width: 35px;
  height: 21px;
}
.mini-window.deadlite {
  border-width: 1px;
}
.style-description {
  font-size: 10px;
  margin: 10px 0 19px;
  min-height: 16px;
}
.field-row {
  display: flex;
  align-items: flex-end;
  gap: 12px;
}
.field-row > label {
  flex: 1;
  min-width: 0;
}
label {
  display: block;
  font-size: 10px;
  font-weight: 550;
  color: #586551;
}
input[type="text"],
input[type="number"],
select {
  display: block;
  width: 100%;
  height: 41px;
  border: 1px solid #d8dfd1;
  border-radius: 4px;
  background: white;
  color: var(--ink);
  padding: 9px 11px;
  font-size: 12px;
  font-weight: 400;
  margin-top: 6px;
  min-width: 0;
}
input[type="number"] {
  appearance: textfield;
  -moz-appearance: textfield;
}
input::-webkit-inner-spin-button,
input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
select {
  padding-right: 23px;
}
.room-quantity {
  gap: 16px;
}
.room-quantity > label:first-child {
  flex: 1.7;
}
.room-quantity > label:last-child {
  flex: 1;
}
.quantity-control {
  display: flex;
  height: 41px;
  border: 1px solid #d8dfd1;
  border-radius: 4px;
  margin-top: 6px;
  align-items: center;
}
.quantity-control input {
  width: 100%;
  min-width: 0;
  border: 0;
  text-align: center;
  margin: 0;
  padding: 0;
  height: 37px;
}
.quantity-control .icon-button {
  width: 31px;
  height: 35px;
  border: 0;
  border-radius: 0;
}
.quantity-control svg {
  width: 13px;
  height: 13px;
}
.unit-input {
  position: relative;
}
.unit-input input {
  padding-right: 34px;
}
.unit-input > span {
  position: absolute;
  right: 12px;
  top: 12px;
  font-size: 10px;
  color: #7b8872;
}
.dimension-times {
  line-height: 41px;
  color: #9aa28f;
}
.field-hint {
  font-size: 9px;
  color: #818b79;
  margin-top: 8px;
  line-height: 1.65;
}
#ratio-field {
  margin-top: 13px;
}
.field-errors {
  background: #fff2ed;
  color: var(--error);
  border-left: 2px solid #c56650;
  padding: 8px 10px;
  font-size: 10px;
  margin-top: 12px;
}
.field-errors p {
  color: inherit;
}
input[aria-invalid="true"] {
  border-color: #b54a34;
  background: #fff9f6;
}
.finish-field {
  padding: 0;
  border: 0;
  margin: 0 0 19px;
}
.finish-field legend {
  font-size: 10px;
  font-weight: 550;
  margin-bottom: 9px;
  padding: 0;
}
.finish-field legend span {
  font-weight: 400;
  color: var(--muted);
  margin-left: 9px;
}
.swatches {
  display: flex;
  gap: 10px;
}
.swatch {
  width: 33px;
  height: 33px;
  border: 3px solid white;
  outline: 1px solid #d8ddd1;
  background: var(--swatch);
  border-radius: 50%;
  position: relative;
  display: grid;
  place-items: center;
}
.swatch.active {
  outline: 2px solid #496e42;
}
.swatch svg {
  width: 14px;
  height: 14px;
  color: #364c31;
}
.swatch:disabled {
  opacity: 0.2;
}
.glass-label {
  margin-bottom: 15px;
}
.grid-fields {
  gap: 14px;
}
.extras {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.extras label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 400;
  cursor: pointer;
}
.extras input {
  width: 14px;
  height: 14px;
  margin: 0;
  accent-color: var(--green);
}
.extras svg {
  width: 14px;
  height: 14px;
  color: #97a48c;
  margin-left: auto;
}
.window-line-total {
  border-top: 1px solid var(--line);
  padding: 15px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fbfcf8;
  font-size: 11px;
}
.window-line-total small {
  display: block;
  color: #919a87;
  font-size: 9px;
  margin-top: 3px;
}
.window-line-total strong {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 550;
}
#empty-project {
  text-align: center;
  padding: 70px 25px;
}
#empty-project > svg {
  width: 44px;
  height: 44px;
  color: #819b72;
  margin: 0 auto 20px;
}
#empty-project h3 {
  margin-bottom: 10px;
}
#empty-project p {
  font-size: 12px;
  margin-bottom: 22px;
}
.quote-panel {
  padding: 24px 21px;
  position: sticky;
  top: 0;
}
.quote-heading {
  display: flex;
  gap: 7px;
  align-items: center;
  font-size: 9px;
  font-weight: 600;
  color: #6c7b60;
}
.quote-heading > svg {
  margin-left: auto;
  width: 17px;
  height: 17px;
}
.live-dot {
  background: #679652;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  box-shadow: 0 0 0 3px #edf4e7;
}
.quote-top {
  display: flex;
  flex-direction: column;
  margin: 25px 0 23px;
}
.quote-top > span:first-child {
  font-size: 10px;
  color: #839077;
}
.quote-top > strong {
  font-family: var(--display);
  font-size: 38px;
  line-height: 1.35;
  font-weight: 500;
  margin: 3px 0 6px;
  overflow-wrap: anywhere;
}
.quote-top > span:last-child {
  font-size: 10px;
  color: #88947d;
}
.quote-lines {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 6px 0;
  max-height: 280px;
  overflow: auto;
}
.quote-line {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 0;
  font-size: 10px;
}
.quote-line > span {
  min-width: 0;
  overflow-wrap: anywhere;
}
.quote-line small {
  display: block;
  color: #919a87;
  font-size: 9px;
  margin-top: 2px;
}
.quote-line strong {
  font-weight: 500;
  white-space: nowrap;
}
.quote-costs {
  font-size: 9px;
  margin: 19px 0 25px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.quote-costs > div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.quote-costs dt {
  color: #85917b;
}
.quote-costs dd {
  margin: 0;
  text-align: right;
  color: #5e6d54;
}
.review-button {
  width: 100%;
  gap: 12px;
  font-size: 11px;
  padding-inline: 10px;
  min-height: 45px;
}
.no-pressure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 9px;
  margin: 10px 0 23px;
  color: #8f9986;
}
.no-pressure svg {
  width: 11px;
  height: 11px;
}
.quote-footnote {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  background: #f5f6ee;
  padding: 12px;
  border-radius: 4px;
}
.quote-footnote svg {
  width: 13px;
  height: 13px;
  margin-top: 2px;
  color: #8d9b7b;
}
.quote-footnote p {
  font-size: 9px;
  line-height: 1.8;
  color: #7f8a73;
}
.source-link {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 17px;
  color: #809171;
  font-size: 9px;
}
.source-link svg {
  width: 12px;
  height: 12px;
}
.source-link svg:last-child {
  margin-left: auto;
}
.specialty-note {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  padding: 23px 0;
  color: #7c8a70;
}
.specialty-note > span {
  flex: 1;
}
.specialty-note strong {
  color: #566b4b;
  font-weight: 550;
}
.specialty-note > svg {
  width: 20px;
  height: 20px;
}
.specialty-note button {
  border: 0;
  background: none;
  color: var(--green);
  font-size: 10px;
  white-space: nowrap;
}
.difference {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 85px;
  padding-block: 92px;
}
.difference-image {
  height: 560px;
  position: relative;
  overflow: hidden;
}
.difference-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.image-label {
  position: absolute;
  bottom: 24px;
  left: 25px;
  right: 25px;
  background: #f6f8edeb;
  padding: 14px 17px;
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 9px;
  color: var(--green);
}
.image-label svg {
  width: 24px;
  height: 24px;
}
.difference-copy {
  padding-top: 14px;
  max-width: 460px;
}
.difference-copy h2 {
  margin: 13px 0 22px;
  font-size: 43px;
}
.difference-copy > p {
  font-size: 13px;
  line-height: 1.9;
  margin-bottom: 27px;
}
.feature-row {
  display: flex;
  gap: 15px;
  margin: 20px 0;
}
.feature-row > svg {
  width: 23px;
  height: 23px;
  color: #688455;
  margin-top: 2px;
}
.feature-row h3 {
  font-size: 13px;
  margin-bottom: 5px;
}
.feature-row p {
  font-size: 11px;
  line-height: 1.8;
}
.difference-copy > .text-link {
  margin-top: 20px;
  color: var(--green);
}
.process-section {
  background: #eff3e9;
  border-block: 1px solid #e2e8d8;
  padding: 67px 0 62px;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 45px;
}
.process-grid > div {
  padding-right: 50px;
  border-right: 1px solid #d3ddc5;
}
.process-grid > div + div {
  padding-left: 40px;
}
.process-grid > div:last-child {
  border: 0;
  padding-right: 0;
}
.process-number {
  font-family: var(--display);
  font-size: 34px;
  font-weight: 400;
  color: #8fa17a;
}
.process-grid h3 {
  font-size: 17px;
  margin: 13px 0 10px;
}
.process-grid p {
  font-size: 12px;
  line-height: 1.85;
}
.faq {
  padding-block: 84px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 75px;
}
.faq h2 {
  font-size: 33px;
  margin: 13px 0;
}
.faq > div > p {
  font-size: 12px;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list details:first-child {
  border-top: 1px solid var(--line);
}
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  list-style: none;
  padding: 20px 0;
  font-size: 12px;
  font-weight: 550;
  cursor: pointer;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary svg {
  width: 15px;
  height: 15px;
  transition: transform 0.2s;
}
.faq details[open] summary svg {
  transform: rotate(45deg);
}
.faq details p {
  font-size: 12px;
  line-height: 1.9;
  padding: 0 25px 21px 0;
}
.closing-band {
  background: var(--green);
  padding: 52px 0;
  color: white;
  position: relative;
  overflow: hidden;
}
.closing-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent 0 179px,
    #ffffff06 179px 180px
  );
  pointer-events: none;
}
.closing-band .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  position: relative;
  z-index: 1;
}
.closing-band .eyebrow {
  color: #becfad;
}
.closing-band h2 {
  font-size: 32px;
  margin-top: 13px;
}
.closing-band .button {
  font-size: 12px;
}
footer {
  display: flex;
  align-items: center;
  gap: 45px;
  padding-block: 33px;
}
footer .brand {
  font-size: 28px;
}
footer p {
  font-size: 9px;
  line-height: 1.8;
  flex: 1;
}
footer > span {
  font-size: 9px;
  color: #8a9580;
  white-space: nowrap;
}
dialog {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 30px;
  color: var(--ink);
  max-height: 90dvh;
  box-shadow: 0 30px 120px #172d3344;
}
dialog::backdrop {
  background: #142a246b;
  backdrop-filter: blur(4px);
}
.info-dialog {
  width: min(560px, calc(100% - 32px));
}
.dialog-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.dialog-heading .icon-button {
  margin: -10px -10px 0 0;
}
.info-dialog h2 {
  font-size: 27px;
  margin-bottom: 15px;
}
.info-dialog p,
.info-dialog li {
  font-size: 13px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 14px;
}
.info-dialog .button {
  margin-top: 12px;
}
.info-dialog a {
  text-decoration: underline;
  color: var(--green);
}
.info-dialog ol,
.info-dialog ul {
  padding-left: 20px;
}
.review-dialog {
  width: min(680px, calc(100% - 28px));
}
.review-dialog h2 {
  font-size: 32px;
}
.review-intro {
  font-size: 12px;
  margin: 8px 0 20px;
}
.review-dialog > label {
  margin-bottom: 20px;
}
.review-line {
  padding: 15px 0;
  border-top: 1px solid var(--line);
}
.review-line > div:first-child {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.review-line h3 {
  font-size: 13px;
  overflow-wrap: anywhere;
}
.review-line strong {
  font-size: 14px;
  white-space: nowrap;
}
.review-line p {
  font-size: 11px;
  margin-top: 5px;
}
.review-line details {
  font-size: 10px;
  margin-top: 8px;
  color: #7b8b6b;
}
.review-line summary {
  cursor: pointer;
}
.review-line dl {
  margin-bottom: 0;
}
.review-line dl > div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.review-line dd {
  margin: 0;
}
.review-total {
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  font-size: 12px;
}
.review-total strong {
  font-size: 26px;
  font-weight: 500;
}
.review-disclaimer {
  padding: 12px 14px;
  background: var(--green-light);
  font-size: 10px;
  line-height: 1.8;
  border-radius: 4px;
}
.review-actions {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}
.review-actions .button {
  font-size: 12px;
}
.toast {
  position: fixed;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  background: var(--green);
  color: white;
  box-shadow: 0 6px 25px #163c3433;
  padding: 11px 20px;
  border-radius: 5px;
  font-size: 12px;
  max-width: calc(100% - 30px);
  text-align: center;
}
.noscript-message {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: #fff3df;
  z-index: 30;
}
.noscript-message a {
  text-decoration: underline;
}
#print-content {
  display: none;
}
.reveal {
  opacity: 1;
}
.motion-ready .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.7s,
    transform 0.7s;
}
.motion-ready .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
@keyframes hero-arrive {
  from {
    transform: scale(1.035);
  }
  to {
    transform: scale(1);
  }
}
@media (min-width: 1600px) {
  .hero {
    height: 650px;
  }
  .hero-spec {
    right: max(48px, calc((100% - 1320px) / 2));
  }
  .hero-photo {
    object-position: center 56%;
  }
}
@media (max-width: 1200px) {
  .shell {
    width: calc(100% - 56px);
  }
  .builder {
    grid-template-columns: 175px minmax(0, 1fr) 244px;
  }
  .project-panel {
    padding-inline: 11px;
  }
  .editor-controls {
    padding: 19px;
  }
  .quote-panel {
    padding: 23px 16px;
  }
  .quote-top > strong {
    font-size: 33px;
  }
  .quote-costs > div {
    gap: 6px;
  }
  .difference {
    gap: 50px;
  }
  .desktop-nav {
    gap: 23px;
  }
  .style-button > span:last-child {
    font-size: 8px;
  }
  .control-heading .plain-button {
    font-size: 9px;
  }
  .hero-spec {
    right: 28px;
  }
}
@media (max-width: 980px) {
  .builder {
    grid-template-columns: minmax(0, 1fr) 270px;
  }
  .project-panel {
    grid-column: 1/-1;
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 15px;
    flex-wrap: wrap;
  }
  .project-panel .panel-heading {
    gap: 10px;
  }
  .save-status {
    margin: 0;
  }
  .window-list {
    order: 3;
    flex-direction: row;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }
  .window-item {
    width: 175px;
    flex-shrink: 0;
  }
  .add-window {
    width: auto;
    margin: 0 0 0 auto;
    padding: 8px 14px;
  }
  .project-note,
  .reset-project {
    display: none;
  }
  .editor-panel {
    border-left: 0;
  }
  .quote-panel {
    top: 0;
  }
  .editor-controls {
    padding: 23px;
  }
  .style-button > span:last-child {
    font-size: 9px;
  }
  .hero {
    height: 560px;
  }
  h1 {
    font-size: 60px;
  }
  .hero-spec {
    width: 154px;
    padding: 15px;
  }
  .hero-spec strong {
    font-size: 43px;
  }
  .hero-actions {
    gap: 18px;
  }
  .hero-actions .text-link {
    font-size: 11px;
  }
  .desktop-nav {
    gap: 17px;
    font-size: 11px;
  }
  .nav-wrap {
    gap: 18px;
  }
  .benefits > div {
    gap: 10px;
  }
  .benefits strong {
    font-size: 11px;
  }
  .benefits span {
    font-size: 9px;
  }
  .benefits svg {
    width: 23px;
  }
  .section-heading {
    align-items: flex-start;
  }
  .section-heading h2 {
    font-size: 33px;
  }
  .step-indicator {
    margin-top: 27px;
    font-size: 10px;
    gap: 12px;
  }
  .specialty-note {
    flex-wrap: wrap;
  }
  .specialty-note button {
    margin-left: 30px;
  }
  .difference {
    gap: 35px;
    padding-block: 66px;
  }
  .difference-image {
    height: 560px;
  }
  .difference-copy h2 {
    font-size: 35px;
  }
  .process-grid > div {
    padding-right: 25px;
  }
  .process-grid > div + div {
    padding-left: 25px;
  }
  .faq {
    gap: 35px;
  }
  .faq h2 {
    font-size: 29px;
  }
  footer {
    gap: 25px;
  }
  .closing-band h2 {
    font-size: 28px;
  }
}
@media (max-width: 760px) {
  .shell {
    width: calc(100% - 36px);
  }
  .announcement {
    font-size: 9px;
    height: 29px;
    gap: 10px;
  }
  .announcement span {
    font-size: 8px;
  }
  .nav-wrap {
    height: 73px;
    gap: 15px;
  }
  .brand {
    font-size: 29px;
  }
  .brand-mark {
    grid-template-columns: repeat(2, 10px);
    grid-template-rows: repeat(2, 14px);
  }
  .desktop-nav {
    display: none;
  }
  .nav-quote {
    margin-left: auto;
    font-size: 10px;
    padding: 10px 12px;
    min-height: 38px;
    gap: 9px;
  }
  .nav-quote svg {
    width: 14px;
    height: 14px;
  }
  .menu-toggle {
    display: flex;
    width: 30px;
  }
  .hero {
    height: 610px;
  }
  .hero-photo {
    object-position: 64% center;
  }
  .hero-shade {
    background:
      linear-gradient(90deg, #eff2e8ec, #eff2e8c7 47%, #eff2e824),
      linear-gradient(0deg, #eff2e87a, transparent 40%);
  }
  .hero-content {
    justify-content: flex-start;
    padding-top: 48px;
    padding-bottom: 0;
  }
  .hero .eyebrow {
    font-size: 9px;
  }
  h1 {
    font-size: 51px;
    margin-top: 20px;
    margin-bottom: 19px;
  }
  .hero p {
    font-size: 13px;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 21px;
    margin-top: 25px;
  }
  .hero-actions .button {
    font-size: 12px;
    padding: 14px 17px;
  }
  .hero-actions .text-link {
    font-size: 12px;
  }
  .hero-caption {
    margin-top: 35px;
    font-size: 7px;
  }
  .hero-spec {
    bottom: 24px;
    right: 18px;
    width: 126px;
    padding: 10px 13px;
  }
  .hero-spec > span {
    font-size: 6px;
  }
  .hero-spec strong {
    font-size: 32px;
  }
  .hero-spec div {
    font-size: 8px;
    margin-top: 7px;
    padding-top: 7px;
  }
  .benefits {
    padding-block: 20px;
    gap: 15px;
    grid-template-columns: 1fr;
  }
  .benefits > div,
  .benefits > div:first-child {
    justify-content: flex-start;
    border: 0;
    gap: 13px;
  }
  .benefits svg {
    width: 23px;
    height: 23px;
  }
  .benefits p {
    display: block;
  }
  .benefits strong {
    font-size: 11px;
    margin-right: 10px;
  }
  .benefits span {
    font-size: 9px;
  }
  .config-section {
    padding-top: 43px;
  }
  .section-heading {
    display: block;
    margin-bottom: 20px;
  }
  .section-heading h2 {
    font-size: 29px;
  }
  .section-heading p {
    font-size: 12px;
  }
  .step-indicator {
    margin-top: 19px;
    font-size: 10px;
  }
  .estimate-notice {
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 11px;
    font-size: 9px;
    gap: 8px;
  }
  .estimate-notice > span {
    flex-basis: calc(100% - 30px);
  }
  .estimate-notice button {
    margin-left: 24px;
    font-size: 9px;
  }
  .builder {
    display: block;
  }
  .project-panel {
    padding: 13px;
    gap: 10px;
  }
  .project-panel .save-status {
    margin-left: auto;
    font-size: 8px;
  }
  .project-panel .add-window {
    order: 4;
    flex: 1;
    font-size: 11px;
    min-height: 39px;
  }
  .project-panel .reset-project {
    display: flex;
    order: 5;
    margin-left: 8px;
    font-size: 9px;
  }
  .project-panel .panel-heading h3 {
    font-size: 12px;
  }
  .window-item {
    width: 164px;
  }
  .editor-panel {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .editor-heading {
    padding: 18px;
  }
  .editor-heading h3 {
    font-size: 17px;
  }
  .editor-controls {
    padding: 21px 17px;
  }
  .window-stage {
    height: 292px;
  }
  .style-grid {
    gap: 6px;
  }
  .style-button {
    height: 78px;
  }
  .style-button > span:last-child {
    font-size: 8px;
  }
  .style-description {
    font-size: 10px;
  }
  .control-heading h4 {
    font-size: 11px;
  }
  .control-heading .muted {
    font-size: 8px;
  }
  .control-heading .plain-button {
    font-size: 9px;
    gap: 4px;
  }
  .control-heading .plain-button svg {
    width: 13px;
    height: 13px;
  }
  .field-row {
    gap: 9px;
  }
  .room-quantity {
    gap: 15px;
  }
  .room-quantity > label:first-child {
    flex: 1.5;
  }
  .grid-fields {
    gap: 10px;
  }
  .field-hint {
    font-size: 9px;
  }
  .window-line-total {
    padding: 16px 18px;
  }
  .quote-panel {
    position: static;
    padding: 24px 21px;
  }
  .quote-heading {
    font-size: 10px;
  }
  .quote-top {
    margin: 17px 0;
  }
  .quote-top > strong {
    font-size: 41px;
  }
  .quote-top > span:first-child,
  .quote-top > span:last-child {
    font-size: 11px;
  }
  .quote-line {
    font-size: 12px;
  }
  .quote-line small {
    font-size: 10px;
  }
  .quote-costs {
    font-size: 11px;
    gap: 12px;
  }
  .review-button {
    font-size: 12px;
    min-height: 49px;
  }
  .quote-footnote p {
    font-size: 10px;
  }
  .source-link {
    font-size: 10px;
  }
  .no-pressure {
    font-size: 10px;
  }
  .specialty-note {
    font-size: 10px;
    align-items: flex-start;
    padding-block: 21px;
  }
  .specialty-note button {
    white-space: normal;
    text-align: left;
    padding: 0;
  }
  .difference {
    grid-template-columns: 1fr;
    gap: 29px;
    padding-block: 47px;
  }
  .difference-image {
    height: 370px;
  }
  .difference-copy {
    max-width: 100%;
    padding-top: 0;
  }
  .difference-copy h2 {
    font-size: 35px;
  }
  .difference-copy > p {
    font-size: 13px;
  }
  .feature-row {
    margin: 23px 0;
  }
  .feature-row h3 {
    font-size: 14px;
  }
  .feature-row p {
    font-size: 12px;
  }
  .process-section {
    padding-block: 45px;
  }
  .process-grid {
    grid-template-columns: 1fr;
    margin-top: 30px;
    gap: 25px;
  }
  .process-grid > div,
  .process-grid > div + div {
    border: 0;
    border-top: 1px solid #d3ddc5;
    padding: 18px 0 0;
  }
  .process-number {
    font-size: 27px;
  }
  .process-grid h3 {
    margin-top: 6px;
    font-size: 17px;
  }
  .process-grid p {
    font-size: 12px;
  }
  .faq {
    display: block;
    padding-block: 48px;
  }
  .faq-list {
    margin-top: 30px;
  }
  .faq summary {
    font-size: 12px;
  }
  .closing-band {
    padding-block: 35px;
  }
  .closing-band .shell {
    display: block;
  }
  .closing-band h2 {
    font-size: 29px;
    margin-bottom: 24px;
  }
  .closing-band .eyebrow {
    font-size: 9px;
  }
  footer {
    flex-wrap: wrap;
    padding-block: 30px;
    gap: 20px;
  }
  footer p {
    flex-basis: 65%;
    font-size: 8px;
  }
  footer > span {
    font-size: 9px;
  }
  dialog {
    padding: 23px;
  }
  .review-dialog h2 {
    font-size: 28px;
  }
  .review-actions {
    flex-wrap: wrap;
  }
  .review-actions .button {
    flex: 1;
    white-space: nowrap;
    gap: 8px;
    font-size: 11px;
  }
  .review-line > div:first-child {
    gap: 10px;
  }
  .review-total strong {
    font-size: 23px;
  }
}
@media (max-width: 370px) {
  .announcement span {
    display: none;
  }
  .nav-wrap {
    gap: 9px;
  }
  .nav-quote {
    font-size: 9px;
    padding: 9px;
    gap: 6px;
  }
  .hero {
    height: 610px;
  }
  h1 {
    font-size: 44px;
  }
  .hero-caption {
    font-size: 6px;
  }
  .hero-spec {
    width: 116px;
  }
  .benefits p {
    display: flex;
  }
  .benefits span {
    margin-top: 1px;
  }
  .control-heading {
    gap: 5px;
  }
  .control-heading h4 {
    font-size: 10px;
  }
  .control-heading .plain-button {
    font-size: 8px;
  }
  .control-heading .muted {
    font-size: 7px;
  }
  .style-button > span:last-child {
    font-size: 7px;
  }
  .room-quantity > label:first-child {
    flex: 1.2;
  }
  .project-panel .save-status {
    font-size: 7px;
  }
  .quote-top > strong {
    font-size: 37px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .motion-ready .reveal {
    opacity: 1;
    transform: none;
  }
}
.step-indicator,
.save-status,
.reset-project,
.editor-heading .eyebrow,
.control-heading h4 > span,
.unit-input > span,
.field-hint,
.window-line-total small,
.quote-top > span:first-child,
.quote-top > span:last-child,
.quote-line small,
.quote-costs dt,
.no-pressure,
.quote-footnote p,
.source-link,
.specialty-note,
.project-note p,
footer > span,
.review-line details {
  color: #606d55;
}
.stage-label,
.stage-bottom,
.width-dimension,
.height-dimension {
  color: #4d6044;
}
.process-number {
  color: #657958;
}
.editor-controls label,
.finish-field legend {
  font-size: 11px;
}
.field-hint,
.quote-footnote p,
.source-link {
  font-size: 10px;
}
@media (min-width: 761px) and (max-width: 980px) {
  .project-panel .reset-project {
    display: flex;
    order: 4;
    margin: 0 0 0 auto;
  }
}
@media (max-width: 760px) {
  input[type="text"],
  input[type="number"],
  select {
    font-size: 16px;
  }
  .quantity-control input {
    font-size: 14px;
  }
}
@media (max-width: 760px) and (max-height: 700px) {
  .hero {
    height: calc(100svh - 145px);
    min-height: 390px;
  }
  .hero-content {
    padding-top: 25px;
  }
  h1 {
    font-size: 44px;
    margin-top: 15px;
    margin-bottom: 15px;
  }
  .hero-actions {
    margin-top: 19px;
  }
  .hero-actions .text-link,
  .hero-caption,
  .hero-spec {
    display: none;
  }
}
@media print {
  body > *:not(#print-content) {
    display: none !important;
  }
  #print-content {
    display: block;
    font-family: Arial, sans-serif;
    padding: 20px;
    color: #111;
  }
  #print-content h1 {
    font-size: 28px;
    margin: 0 0 12px;
  }
  #print-content h2 {
    font-size: 22px;
  }
  #print-content p {
    color: #333;
  }
  #print-content .review-line {
    break-inside: avoid;
  }
  #print-content details {
    display: block;
  }
  #print-content details > summary {
    display: none;
  }
  #print-content .review-disclaimer {
    background: transparent;
    border: 1px solid #aaa;
  }
  body {
    background: white;
  }
  dialog {
    display: none !important;
  }
}
