:root {
  --ink: #23282b;
  --muted: #61686c;
  --paper: #f7f8f8;
  --white: #fff;
  --line: #d9dddf;
  --tint: #eef1f2;
  --accent: #ed862d;
  font-family: 'DM Sans', sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}
body {
  margin: 0;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, p, figure, dl, dd {
  margin: 0;
}
p {
  line-height: 1.75;
}
a {
  color: inherit;
  text-underline-offset: 5px;
}
button, input, select, textarea {
  font: inherit;
}
button {
  color: inherit;
  cursor: pointer;
}
button, a {
  -webkit-tap-highlight-color: transparent;
}
img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}
[hidden] {
  display: none !important;
}
:focus-visible {
  outline: 3px solid #ba5600;
  outline-offset: 5px;
}
::selection {
  background: #ffd5af;
  color: var(--ink);
}
.wrap {
  width: min(1280px, 90%);
  margin-inline: auto;
}
.section {
  padding-block: 96px;
}
h1, h2 {
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-weight: 600;
  letter-spacing: -.015em;
}
h1 {
  font-size: clamp(3.4rem, 6.7vw, 6.4rem);
  line-height: .99;
}
h2 {
  font-size: clamp(2.5rem, 4.3vw, 4.2rem);
  line-height: 1.05;
}
h3 {
  font-size: 1.2rem;
  font-weight: 650;
  line-height: 1.3;
  letter-spacing: -.025em;
}
.skip {
  position: fixed;
  top: -60px;
  left: 16px;
  z-index: 100;
  padding: 12px 20px;
  background: white;
}
.skip:focus {
  top: 10px;
}
.topbar {
  background: var(--ink);
  color: #dce1e3;
  font-size: .75rem;

}
.topbar .wrap {
  min-height: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.topbar a {
  text-decoration: none;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.header-inner {
  height: 89px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-symbol {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 3.3rem;
  line-height: 1;
  color: var(--accent);
}
.brand-words {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.045em;
}
.brand-words small {
  display: block;
  font-size: .64rem;
  letter-spacing: .18em;
  font-weight: 600;
  margin-top: 5px;
}
#site-navigation {
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: .875rem;
  font-weight: 500;
}
#site-navigation > a:not(.button) {
  text-decoration: none;
  padding-block: 12px;
}
#site-navigation > a:hover {
  text-decoration: underline;
  text-underline-offset: 6px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 17px 24px;
  border: 1px solid var(--accent);
  border-radius: 3px;
  background: var(--accent);
  color: #20262a;
  text-decoration: none;
  font-weight: 700;
  font-size: .9rem;
  transition: background .2s, box-shadow .2s;
}
.button:hover {
  background: #f69c4c;
  box-shadow: 0 3px 0 #a44c06;
}
.button.secondary {
  background: transparent;
  color: var(--ink);
}
.button.secondary:hover {
  background: var(--tint);
}
#site-navigation .button {
  padding: 13px 20px;
}
.menu-toggle {
  display: none;
}
.text-link {
  font-size: .9rem;
  text-decoration-thickness: 1px;
}
.hero {
  position: relative;
  isolation: isolate;
  background: #23282b;
  color: #fff;
  overflow: hidden;
}
.hero-grid {
  min-height: 650px;
  display: flex;
  align-items: center;
  position: relative;
  padding-block: 72px 125px;
}
.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
  animation: copy-in .65s ease both;
}
.location {
  font-size: .9rem;
  font-weight: 500;
  margin-bottom: 25px;
  padding-left: 0;

}
.hero .lede {
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 415px;
  margin-top: 26px;
  color: #eef0f1;
}
.actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 23px;
  margin-top: 29px;
}
.hero-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 65px;
}
.hero-facts > div {
  display: flex;
  gap: 10px;
  align-items: start;
}
.hero-facts p {
  font-size: .85rem;
  line-height: 1.5;
}
.hero-facts strong {
  font-weight: 600;
  display: block;
}
.hero-facts p span {
  color: var(--muted);
  display: block;
  margin-top: 4px;
}
.check {
  font-size: 1.3rem;
  line-height: 1.4;
  color: #aa4c00;
}
.hero-photo {
  height: 100%;
  width: 100%;
  overflow: hidden;
  background: #525859;
}
.hero-photo img {
  height: 100%;
  width: 100%;
  object-position: 62% 55%;
  animation: photo-in 1.2s ease both;
}
.material-bar {
  position: absolute;
  right: max(5%, calc((100vw - 1280px) / 2));
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 10px 18px;
  background: #20282bee;
  border: 1px solid #ffffff35;
  border-radius: 3px;
  z-index: 3;
}
.material-picker {
  display: flex;
  align-items: center;
}
.swatch {
  width: 38px;
  height: 40px;
  background: transparent;
  border: 0;
  display: grid;
  place-items: center;
  padding: 0;
}
.swatch::after {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  background: var(--swatch);
  border-radius: 2px;
  outline: 1px solid transparent;
  outline-offset: 4px;
  transition: outline-color .2s;
}
.swatch[aria-pressed=true]::after {
  outline-color: white;
}
.stone {
  --swatch: #c6baa6;
}
.blue {
  --swatch: #49678c;
}
.walnut {
  --swatch: #654b37;
}
#material-label {
  font-size: .8rem;
  margin-left: 8px;
}
.image-note {
  font-size: .68rem;
  color: #dce1e3;
  white-space: nowrap;
}
.service-strip {
  background: #eef1f2;
  border-bottom: 1px solid var(--line);
}
.service-strip .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 55px;
  font-size: .8rem;
}
.service-strip a {
  text-decoration: none;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 60px;
  margin-bottom: 42px;
}
.section-heading > p {
  max-width: 385px;
  color: var(--muted);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  display: flex;
  flex-direction: column;
  align-items: start;
}
.service-card:last-child {
  border: 0;
}
.service-icon {
  display: none;
}
.service-card h3 {
  font-size: 1.45rem;
}
.service-card p {
  margin-block: 14px 23px;
  color: var(--muted);
  max-width: 360px;
  font-size: .95rem;
}
.service-card a {
  margin-top: auto;
  font-size: .8rem;
  font-weight: 600;
  text-decoration-thickness: 1px;
}
.service-card a:hover {
  text-decoration: underline;
}
.includes {
  margin-top: 35px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 65px;
  align-items: center;
}
.includes h3 {
  font-size: 1rem;
  margin-bottom: 10px;
}
.includes p {
  color: var(--muted);
  font-size: .9rem;
  max-width: 400px;
}
.includes ul {
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px 24px;
  list-style: none;
}
.includes li {
  font-size: .85rem;
  padding-left: 16px;
  position: relative;
}
.process {
  background: var(--ink);
  color: var(--paper);

}
.process .section-heading > p {
  color: #c8cdd0;
}

.quality-grid, .rot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 10%;
}
.section-label {
  font-size: .875rem;
  color: var(--muted);
  margin-bottom: 20px;
}
.quality-copy h2, .rot-grid h2 {
  margin-bottom: 28px;
}
.quality-copy > p:not(.section-label), .rot-grid > div > p:not(.section-label) {
  margin-bottom: 18px;
  color: var(--muted);
}
.quality-copy .text-link, .rot-grid .text-link {
  display: inline-block;
  margin-top: 10px;
}
.quality-card {

  padding: 36px;
  background: #fff;
  border-radius: 3px;
}
.quality-card-heading {
  display: flex;
  align-items: center;
  gap: 22px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.quality-card-heading .brand-symbol {
  font-size: 3rem;
}
.quality-card-heading h3 {
  font-size: 1rem;
}
.quality-card-heading p {
  font-size: .8rem;
  color: var(--muted);
  margin-top: 5px;
}
.quality-card dl > div {
  margin-top: 24px;
}
.quality-card dt {
  font-weight: 500;
  font-size: .95rem;
  margin-bottom: 7px;
}
.quality-card dd {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.65;
}
.inspiration {
  padding-top: 0;
}




.rot {
  background: #eef1f2;
  border-block: 1px solid var(--line);
}
.calculation {
  background: white;
  padding: 34px;
  border-radius: 3px;

}
.calculation-head {
  border-bottom: 1px solid var(--line);
  padding-bottom: 22px;
  margin-bottom: 8px;
}
.calculation-head h3 {
  font-size: 1.25rem;
}
.calculation-head span {
  font-size: .8rem;
  color: var(--muted);
  display: block;
  margin-top: 7px;
}
.calculation dl > div {
  padding-block: 17px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  font-size: .95rem;
}
.calculation dd {
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.calculation .deduction {
  color: #9b4300;
}
.calculation .total {
  border-bottom: 0;
  font-weight: 600;
  font-size: 1.3rem;
  padding-top: 25px;
}
.calculation p {
  font-size: .8rem;
  color: var(--muted);
  margin-top: 20px;
}
.quote-section {
  background: #fff;
}
.quote-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 10%;
  align-items: start;
}
.quote-aside {
  position: sticky;
  top: 140px;
}
.quote-aside h2 {
  margin-bottom: 25px;
}
.quote-aside > p:not(.section-label) {
  color: var(--muted);
  max-width: 350px;
}
.quote-summary {
  padding: 0;
  margin: 29px 0;
  list-style-position: inside;
  font-size: .9rem;
  color: var(--muted);
}
.quote-summary li {
  padding-block: 7px;
}
.quote-summary li::marker {
  color: var(--ink);
}
.quote-aside figure {
  max-width: 330px;
}
.quote-aside img {
  height: 245px;
  width: 100%;
  border-radius: 3px;
  object-position: center 65%;
}
.quote-aside figcaption {
  font-size: .75rem;
  color: var(--muted);
  padding-top: 10px;
}
.quote-panel {
  padding: 35px;
  border: 1px solid var(--line);

  border-radius: 3px;
  background: var(--paper);
  scroll-margin-top: 110px;
}
.quote-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.quote-panel-head h3 {
  font-size: 1.15rem;
}
#step-count {
  font-size: .8rem;
  white-space: nowrap;
  color: var(--muted);
}
.preview-note {
  font-size: .8rem;
  line-height: 1.5;
  color: var(--muted);
  margin-top: 15px;
}
.form-progress {
  display: flex;
  gap: 6px;
  margin: 24px 0 30px;
}
.form-progress span {
  flex: 1;
  height: 3px;
  background: var(--line);
  transition: background .3s;
}
.form-progress .done {
  background: #b9570b;
}
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
  min-width: 0;
}
.form-step {
  display: grid;
  gap: 23px;
}
.form-step > legend {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: -.03em;
  margin-bottom: 24px;
}
.field-legend, label {
  font-size: .875rem;
}
.field-legend {
  margin-bottom: 10px;
}
.options {
  display: grid;
  gap: 9px;
}
.options label {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 3px;
  cursor: pointer;
  transition: border-color .2s, background .2s;
}
.options label:has(input:checked) {
  border-color: #b65508;
  background: #fff3e8;
}
.options small {
  display: block;
  color: var(--muted);
  font-size: .8rem;
  margin-top: 4px;
}
input[type=checkbox], input[type=radio] {
  accent-color: var(--ink);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin: 0;
}
.form-grid, .checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.checks {
  gap: 9px;
}
.checks label {
  font-size: .85rem;
  align-items: start;
  line-height: 1.45;
}
select, input:not([type=radio]):not([type=checkbox]), textarea {
  display: block;
  width: 100%;
  margin-top: 9px;
  padding: 12px;
  border: 1px solid #bac2c6;
  border-radius: 3px;
  background: white;
  color: var(--ink);
  font-size: 1rem;
}
textarea {
  resize: vertical;
  min-height: 90px;
  line-height: 1.55;
}
textarea::placeholder {
  color: #61686c;
}
.upload {
  border: 1px dashed #9aa4a9;
  border-radius: 3px;
  padding: 20px;
  display: block;
}
.upload > span {
  display: block;
  font-size: .8rem;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.6;
}
.upload input[type=file] {
  border: 0;
  padding: 8px 0;
  background: transparent;
  font-size: .8rem;
}
input::file-selector-button {
  background: white;
  border: 1px solid var(--line);
  padding: 9px 12px;
  color: var(--ink);
  cursor: pointer;
  margin-right: 10px;
}
.form-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-top: 28px;
}
.form-actions .button:only-child {
  margin-left: auto;
}
#next-step {
  margin-left: auto;
}
.privacy-note {
  color: var(--muted);
  font-size: .8rem;
}
.inline-button {
  border: 0;
  background: none;
  color: inherit;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 4px;
  font-size: inherit;
  text-align: left;
}
#form-status:not(:empty) {
  background: var(--tint);
  border: 1px solid var(--line);
  padding: 20px;
  margin-top: 25px;
  font-size: .9rem;
}
.policy {
  border-top: 1px solid var(--line);
}
.policy .section-heading h2 {
  font-size: clamp(2.5rem, 4.3vw, 4.2rem);
}
.policy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.policy-grid article {
  border-top: 1px solid #bac2c6;
  padding-top: 24px;
}
.policy-grid h3 {
  margin-bottom: 16px;
}
.policy-grid p {
  color: var(--muted);
  font-size: .95rem;
}
.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding: 65px 0 25px;

}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 50px;
}
.footer-grid > div:first-child p {
  margin-top: 24px;
  max-width: 280px;
}
.footer-grid h3 {
  font-size: .875rem;
  font-weight: 500;
  margin-bottom: 22px;
}
.footer-grid p, .footer-grid > div > a:not(.brand), .footer-grid button {
  font-size: .85rem;
  color: #c8cdd0;
}
.footer-grid > div > a:not(.brand), .footer-grid button {
  display: block;
  margin-bottom: 12px;
  text-decoration: none;
  line-height: 1.6;
}
.footer-grid > div > a:hover, .footer-grid button:hover {
  text-decoration: underline;
}
.footer-grid > div:last-child p {
  margin-bottom: 16px;
}
.footer-bottom {
  margin-top: 58px;
  padding-top: 24px;
  border-top: 1px solid #566066;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: .8rem;
  color: #c8cdd0;
}
.footer-bottom a {
  text-decoration: none;
}
dialog {
  padding: 0;
  border: 0;
  border-radius: 5px;
  width: min(650px, calc(100% - 32px));
  max-height: 90dvh;
  color: var(--ink);
  background: var(--paper);
}
dialog::backdrop {
  background: #161b20cf;
  backdrop-filter: blur(5px);
}
dialog[open] {
  animation: copy-in .25s ease;
}
.dialog-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 23px 28px;
  border-bottom: 1px solid var(--line);
}
.dialog-head h2 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.2rem;
  letter-spacing: -.02em;
}
.close {
  padding: 7px;
  border: 0;
  background: none;
  white-space: nowrap;
  font-size: .9rem;
}
.dialog-copy {
  padding: 28px;
}
.dialog-copy p + p {
  margin-top: 18px;
}
#lightbox {
  width: min(1100px, calc(100% - 32px));
}
#lightbox-image {
  width: 100%;
  height: auto;
  max-height: 70dvh;
  object-fit: contain;
  background: #e3e6e7;
}
#lightbox > p {
  padding: 15px 28px;
  font-size: .8rem;
  color: var(--muted);
}
@keyframes copy-in { from {
    opacity: 0;
    transform: translateY(10px);
  } to {
    opacity: 1;
    transform: translateY(0);
  } }
@keyframes photo-in { from {
    transform: scale(1.04);
    opacity: .65;
  } to {
    transform: scale(1);
    opacity: 1;
  } }
@keyframes step-in { from {
    transform: translateX(-7px);
  } to {
    transform: translateX(0);
  } }

.hero .text-link {
  color: white;
  font-weight: 500;
}

.hero-figure {
  position: absolute;
  inset: 0 calc((100vw - 100%) / -2);
  z-index: 0;
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #182126f5 0%, #182126d9 28%, #18212675 54%, #18212608 85%);
}

.credentials {
  background: white;
  border-bottom: 1px solid var(--line);
}

.credentials > .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  min-height: 108px;
}

.credentials-link {
  font-size: .8rem;
  text-decoration: none;
  display: flex;
  gap: 22px;
  align-items: center;
}

.services {
  background: white;
}

.service-image {
  width: 100%;
  height: 255px;
  object-fit: cover;
  border-radius: 3px;
  margin-bottom: 25px;
}

.service-card:nth-child(2) .service-image {
  object-position: 35% 60%;
}

.service-image-note {
  font-size: .75rem;
  color: var(--muted);
  margin-top: 27px;
}

.includes li::before {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--accent);
  position: absolute;
  left: 0;
  top: .55em;
}

@media (min-width: 1600px) {
  .hero-grid {
    min-height: 740px;
  }
}
@media (max-width: 1100px) {
  #site-navigation {
    gap: 18px;
  }
  #site-navigation > a[href="#behorighet"] {
    display: none;
  }
  .hero-grid {
    min-height: 620px;
  }
  .hero-facts {
    gap: 28px;
  }
  .quality-grid, .rot-grid, .quote-grid {
    gap: 6%;
  }
  .service-grid {
    gap: 22px;
  }
  .service-image {
    height: 215px;
  }
  .footer-grid {
    gap: 28px;
  }



}
@media (max-width: 800px) {
  .header-inner {
    height: 78px;
  }
  .brand-symbol {
    font-size: 2.8rem;
  }
  .brand-words {
    font-size: 1.2rem;
  }
  .menu-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 13px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 3px;
    font-size: .85rem;
  }
  #site-navigation {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid var(--line);
    padding: 20px 5% 28px;
  }
  #site-navigation.open {
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 9px;
  }
  #site-navigation > a[href="#behorighet"] {
    display: block;
  }
  .hero-grid {
    min-height: 620px;
    padding-block: 65px 125px;
  }
  h1 {
    font-size: clamp(3.4rem, 8.6vw, 5rem);
  }
  .hero-photo img {
    object-position: 65% center;
  }
  .credentials > .wrap {
    padding-block: 23px;
    flex-wrap: wrap;
    gap: 22px;
  }
  .hero-facts {
    width: 100%;
    gap: 24px;
  }
  .credentials-link {
    font-size: .75rem;
  }
  .section {
    padding-block: 70px;
  }
  .section-heading {
    gap: 35px;
    align-items: start;
  }
  .section-heading > p {
    max-width: 310px;
    font-size: .95rem;
  }
  .service-grid {
    gap: 18px;
  }
  .service-card h3 {
    font-size: 1.2rem;
  }
  .service-card p {
    font-size: .85rem;
  }
  .service-image {
    height: 190px;
  }
  .includes {
    gap: 30px;
  }

.quality-grid, .rot-grid {
    gap: 30px;
  }
  .quality-card, .calculation {
    padding: 26px;
  }



.inspiration {
    padding-top: 0;
  }
  .quote-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .quote-aside {
    position: static;
  }
  .quote-aside figure, .quote-summary {
    display: none;
  }
  .quote-aside > p:not(.section-label) {
    max-width: 500px;
  }
  .policy-grid {
    gap: 26px;
  }
  .footer-grid {
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
  }
}
@media (max-width: 600px) {
  .wrap {
    width: 88%;
  }
  .topbar .wrap {
    min-height: 30px;
    font-size: .7rem;
  }
  .topbar a {
    display: none;
  }
  .header-inner {
    height: 75px;
  }
  .brand {
    gap: 10px;
  }
  .brand-words {
    font-size: 1.15rem;
  }
  .brand-words small {
    font-size: .57rem;
  }
  .hero-grid {
    min-height: 645px;
    align-items: start;
    padding-block: 45px 235px;
  }
  .hero-copy {
    width: 100%;
  }
  h1 {
    font-size: clamp(2rem, 10.5vw, 4rem);
    line-height: 1.04;
  }
  h2, .policy .section-heading h2 {
    font-size: clamp(2.5rem, 10vw, 3.2rem);
  }
  .location {
    margin-bottom: 22px;
    font-size: .8rem;
  }
  .hero .lede {
    font-size: .95rem;
    margin-top: 22px;
    max-width: 350px;
  }
  .hero-photo img {
    object-position: 67% center;
  }
  .hero-photo::after {
    background: linear-gradient(180deg, #182126f5 0%, #182126d9 35%, #18212660 65%, #1821260d 100%);
  }
  .hero .actions {
    margin-top: 24px;
    gap: 20px;
  }
  .hero .text-link {
    font-size: .8rem;
  }
  .button {
    padding: 14px 20px;
    font-size: .85rem;
    gap: 17px;
  }
  .material-bar {
    bottom: 18px;
    left: 6%;
    right: 6%;
    justify-content: space-between;
    gap: 10px;
    padding: 8px 10px;
  }
  .material-picker {
    flex-wrap: wrap;
    max-width: 205px;
  }
  .swatch {
    width: 33px;
  }
  #material-label {
    font-size: .72rem;
    margin-left: 5px;
  }
  .image-note {
    font-size: .62rem;
    white-space: normal;
    max-width: 65px;
    line-height: 1.4;
  }
  .hero-facts {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .hero-facts p span {
    display: inline;
    margin-left: 0;
  }
  .hero-facts p {
    font-size: .8rem;
  }
  .credentials-link {
    padding-left: 27px;
  }
  .service-strip .wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding-block: 20px;
    font-size: .72rem;
  }
  .section {
    padding-block: 58px;
  }
  .section-heading {
    display: block;
    margin-bottom: 30px;
  }
  .section-heading > p {
    margin-top: 22px;
    max-width: none;
  }
  .service-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .service-image {
    height: 245px;
    margin-bottom: 21px;
  }
  .service-card h3 {
    font-size: 1.45rem;
  }
  .service-card p {
    font-size: .95rem;
    margin-bottom: 18px;
  }
  .service-card a {
    font-size: .8rem;
  }
  .includes {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .includes ul {
    gap: 12px 20px;
  }






  .quality-grid, .rot-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .quality-card-heading {
    gap: 18px;
  }
  .inspiration {
    padding-top: 0;
  }






  .calculation dl > div {
    font-size: .85rem;
  }
  .calculation .total {
    font-size: 1.1rem;
  }
  .quote-panel {
    padding: 23px 18px;
  }
  .quote-panel-head h3 {
    font-size: 1rem;
  }
  #step-count {
    font-size: .72rem;
  }
  .form-grid, .checks {
    grid-template-columns: 1fr;
  }
  .form-actions .button {
    padding: 13px 16px;
    font-size: .8rem;
  }
  .policy-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px 24px;
  }
  .footer-grid > div:first-child, .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }
  .site-footer {
    padding-top: 45px;
  }
  .footer-bottom {
    margin-top: 35px;
    font-size: .75rem;
  }
  .dialog-head {
    padding: 18px;
    gap: 15px;
  }
  .dialog-head h2 {
    font-size: 1rem;
  }
  .dialog-copy {
    padding: 22px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* Review: plain steps, numbers below copy, no connecting rule. */
.process .section-heading { display: block; }
.process h2 { font-size: clamp(1.6rem, 4.3vw, 4.2rem); }
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 28px; margin: 45px 0 0; padding: 0; list-style: none; }
.steps li { display: flex; flex-direction: column; align-items: center; text-align: center; }
.steps h3 { margin-bottom: 15px; font-size: 1.15rem; }
.steps p { color: #c8cdd0; font-size: .9rem; margin-bottom: 24px; }
.step-number { display: block; margin-top: auto; font-size: 2rem; font-weight: 500; color: #f69c4c; }
.section-label { font-weight: 700; color: var(--ink); font-size: 1.05rem; }
.gallery-controls { display: flex; align-items: center; gap: 14px; font-size: .85rem; }
.gallery-controls button { border: 1px solid var(--line); background: white; min-height: 44px; min-width: 44px; padding: 8px 12px; border-radius: 3px; }
.gallery-controls button:hover { background: var(--tint); }
.gallery { width: 100%; }
.gallery-slide { margin: 0; }
.photo-button { display: block; position: relative; width: 100%; border: 0; background: #e4e7e8; padding: 0; overflow: hidden; }
.photo-button img { width: 100%; height: 520px; object-fit: cover; }
.photo-button > span { position: absolute; bottom: 18px; right: 18px; padding: 9px 13px; background: white; font-size: .8rem; }
.gallery-thumbnails { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-top: 16px; }
.gallery-thumbnails button { padding: 0; background: none; border: 3px solid transparent; cursor: pointer; opacity: .7; }
.gallery-thumbnails button[aria-pressed=true] { border-color: var(--ink); opacity: 1; }
.gallery-thumbnails img { width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: cover; }
.calculation > p { margin-top: 18px; font-size: .95rem; }

/* Shared typography and layout for the full site. */
.hero-grid { min-height: 620px; padding-block: 72px; }
.service-strip .wrap { min-height: 72px; font-size: 1rem; font-weight: 700; }
.service-strip a { color: var(--ink); text-decoration: underline; text-underline-offset: 4px; }
.includes { grid-template-columns: 1fr; gap: 20px; align-items: start; }
.includes h3 { font-size: 1.3rem; }
.includes p { font-size: 1rem; max-width: 680px; }
.includes ul { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 30px; }
.includes li { padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 1rem; }
.includes li::before { content: none; }
.quality-card-heading h3 { font-size: 1.3rem; }
.rot .section-label { font-size: 1.2rem; margin-bottom: 16px; }
#quote-form .honeypot { display: none; }
.contact-details { display: flex; flex-wrap: wrap; gap: 12px 32px; padding-bottom: 34px; font-size: 1.15rem; font-weight: 700; }
.contact-details a { color: var(--ink); }
@media (min-width: 1600px) { .hero-grid { min-height: 680px; } }
@media (max-width: 1100px) { .hero-grid { min-height: 580px; padding-block: 60px; } }
@media (max-width: 800px) {
  .hero-grid { min-height: 0; padding-block: 54px; }
  .service-strip .wrap { font-size: .95rem; padding-block: 18px; }
  .includes ul { grid-template-columns: 1fr; }
}
@media (max-width: 800px) {
  .steps { gap: 22px; grid-template-columns: repeat(3, 1fr); }
  .inspiration .section-heading { display: block; }
  .gallery-controls { margin-top: 22px; }
  .photo-button img { height: 420px; }
}
@media (max-width: 600px) {
  .steps { grid-template-columns: 1fr; gap: 36px; }
  .steps li { max-width: 340px; margin-inline: auto; }
  .steps p { margin-bottom: 12px; }
  .photo-button img { height: 300px; }
  .gallery-thumbnails { gap: 5px; }
  .gallery-controls { gap: 9px; font-size: .75rem; }
  .gallery-controls button { padding: 8px; }
}
