@font-face {
  font-family: "DM Sans";
  src: url("assets/dm-sans-regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("assets/dm-sans-semibold.ttf") format("truetype");
  font-weight: 600 700;
  font-display: swap;
}
@font-face {
  font-family: Fraunces;
  src: url("assets/fraunces-regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Fraunces;
  src: url("assets/fraunces-italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
:root {
  --paper: #f8f6ef;
  --ink: #303a43;
  --navy: #293f52;
  --muted: #656462;
  --sand: #ede8de;
  --line: #d9d5cc;
  --gold: #c3a66e;
  --serif: Fraunces, Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 32px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 400;
}
h1,
h2 {
  font-family: var(--serif);
  letter-spacing: -0.055em;
  line-height: 1.12;
}
h1 {
  font-size: clamp(58px, 5.5vw, 80px);
}
h2 {
  font-size: clamp(38px, 3.45vw, 50px);
}
h3 {
  font-family: var(--serif);
  font-size: 26px;
  letter-spacing: -0.035em;
  line-height: 1.25;
}
em {
  font-weight: 400;
  color: #75634e;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid #b17a27;
  outline-offset: 5px;
}
a:hover {
  text-decoration-color: currentColor;
}
img {
  display: block;
  width: 100%;
  height: auto;
}
svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.svg-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.shell {
  width: min(1248px, calc(100% - 112px));
  margin-inline: auto;
}
.section-space {
  padding-block: 100px;
}
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.14em;
  font-weight: 600;
  line-height: 1.6;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  min-height: 56px;
  padding: 15px 24px;
  border: 1px solid var(--navy);
  border-radius: 3px;
  background: var(--navy);
  color: var(--paper);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  transition:
    background 0.18s,
    transform 0.18s;
}
.button:hover {
  background: #1d3040;
  transform: translateY(-2px);
}
.button-small {
  min-height: 46px;
  padding: 12px 20px;
  font-size: 13px;
  gap: 16px;
}
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 10;
  padding: 12px 20px;
  background: var(--paper);
  transform: translateY(-150%);
}
.skip-link:focus {
  transform: translateY(0);
}
.site-header {
  border-bottom: 1px solid var(--line);
}
.header-inner {
  height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  flex-shrink: 0;
}
.brand > svg {
  height: 43px;
  width: 43px;
  stroke-width: 1.35;
}
.brand-type {
  font: 29px/1.05 var(--serif);
  letter-spacing: -0.055em;
}
.brand-sub {
  display: block;
  margin-top: 9px;
  font: 8px/1.3 var(--sans);
  letter-spacing: 0.18em;
}
.site-header nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 13px;
}
.site-header nav > a:not(.button) {
  padding-block: 10px;
}
.site-header nav > a:not(.button):hover {
  text-decoration: underline;
  text-underline-offset: 6px;
}
.menu-toggle {
  display: none;
}
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding-block: 42px 50px;
  align-items: center;
}
.hero-copy {
  padding-bottom: 8px;
}
.hero .eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 10px;
  letter-spacing: 0.11em;
}
.small-sun {
  font-size: 23px;
  line-height: 1;
  color: #927c60;
}
.hero h1 {
  margin-block: 24px;
}
.hero h1 em {
  white-space: nowrap;
}
.hero-description {
  max-width: 390px;
  font-size: 17px;
  line-height: 1.8;
  color: var(--muted);
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 31px;
}
.call-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  white-space: nowrap;
  font-weight: 600;
}
.call-link svg {
  width: 17px;
  height: 17px;
}
.call-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.hero-footnote {
  font-size: 11px;
  color: var(--muted);
  margin-top: 25px;
}
.hero-visual {
  position: relative;
  align-self: stretch;
  min-height: 570px;
}
.hero-visual picture {
  display: block;
  height: 100%;
}
.hero-image {
  height: 100%;
  min-height: 570px;
  object-fit: cover;
  object-position: 57% center;
  border-radius: 130px 3px 3px 3px;
}
.hero-visual figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--paper);
  padding: 15px 0 0;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.055em;
}
.caption-line {
  width: 35px;
  height: 1px;
  background: #a29785;
}
.heritage-stamp {
  position: absolute;
  bottom: 58px;
  left: -28px;
  width: 132px;
  height: 132px;
  border: 1px solid #d4cabb;
  background: #eee7d9;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  outline: 5px solid var(--paper);
  transform: rotate(-9deg);
  text-align: center;
}
.heritage-stamp > span {
  font-size: 7px;
  letter-spacing: 0.11em;
  font-weight: 600;
}
.heritage-stamp strong {
  font: 29px/1.02 var(--serif);
  letter-spacing: -0.03em;
  margin-block: 8px;
}
.trust-strip {
  border-block: 1px solid var(--line);
  background: #f0ede6;
}
.trust-strip ul {
  list-style: none;
  display: flex;
  justify-content: space-between;
  padding: 24px 0;
  gap: 22px;
}
.trust-strip li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
}
.trust-strip svg {
  width: 19px;
  height: 19px;
  color: #726653;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 60px;
  margin-bottom: 45px;
}
.section-heading .eyebrow {
  margin-bottom: 16px;
}
.section-heading > p {
  max-width: 320px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
  padding-bottom: 3px;
}
.services-layout {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 66px;
  align-items: stretch;
}
.service-photo {
  display: flex;
  flex-direction: column;
}
.service-photo picture {
  flex: 1;
  min-height: 0;
}
.service-photo img {
  height: 100%;
  object-fit: cover;
  object-position: 45% center;
  border-radius: 3px;
}
.service-photo figcaption {
  font-size: 11px;
  color: var(--muted);
  margin-top: 13px;
}
.service-row {
  display: grid;
  grid-template-columns: 28px 1fr 40px;
  gap: 18px;
  padding: 26px 0;
  border-top: 1px solid #cbc5b9;
}
.service-row:last-child {
  border-bottom: 1px solid #cbc5b9;
}
.service-row h3 {
  margin-bottom: 9px;
}
.service-row p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 365px;
}
.service-number {
  font-size: 10px;
  color: #6f6558;
  padding-top: 6px;
}
.service-detail {
  display: block;
  font-size: 9px;
  letter-spacing: 0.13em;
  margin-top: 13px;
  color: #655e53;
}
.service-row > a {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  align-self: start;
  margin-top: 3px;
  transition:
    background 0.18s,
    color 0.18s;
}
.service-row > a:hover {
  background: var(--navy);
  color: var(--paper);
}
.approach {
  background: var(--navy);
  color: var(--paper);
}
.approach-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  padding-block: 78px;
}
.approach .eyebrow {
  color: #ddd3bf;
  margin-bottom: 23px;
}
.approach h2 {
  font-size: 49px;
}
.approach em {
  color: #e2d2b4;
}
.approach-intro {
  position: relative;
}
.approach-monogram {
  position: absolute;
  width: 68px;
  height: 68px;
  bottom: 0;
  right: 45px;
  color: #b7a88e;
  stroke-width: 0.8;
}
.approach-content {
  padding-top: 5px;
}
.approach-lead {
  font-size: 19px;
  line-height: 1.6;
  max-width: 430px;
  color: #f0ede6;
}
.approach-steps {
  list-style: none;
  padding: 0;
  margin: 29px 0;
}
.approach-steps li {
  display: flex;
  gap: 22px;
  padding: 19px 0;
  border-top: 1px solid #526474;
}
.approach-steps li > span {
  font-size: 11px;
  padding-top: 3px;
  color: #d9cbb2;
}
.approach-steps h3 {
  font-family: var(--sans);
  font-size: 15px;
  letter-spacing: 0;
  font-weight: 600;
  margin-bottom: 6px;
}
.approach-steps p {
  font-size: 13px;
  color: #d1d9df;
  max-width: 365px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  font-size: 13px;
  border-bottom: 1px solid #b9ad98;
  padding: 0 0 8px;
}
.text-link:hover {
  color: #f2ddba;
}
.text-link svg {
  width: 18px;
}
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}
.story-art {
  min-height: 383px;
  background: #ede7db;
  border: 1px solid #dcd3c3;
  padding: 31px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}
.story-art:before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid #cfc2ac;
  pointer-events: none;
}
.story-art .eyebrow {
  font-size: 9px;
}
.story-since {
  font: 25px/1.2 var(--serif);
  margin-top: 29px;
  letter-spacing: -0.03em;
}
.story-since em {
  font-size: 22px;
}
.story-year {
  font: 112px/1.1 var(--serif);
  letter-spacing: -0.08em;
}
.year-dot {
  color: #a28a64;
}
.story-art-bottom {
  font-size: 9px;
  letter-spacing: 0.16em;
  margin-top: 21px;
}
.story-copy .eyebrow {
  margin-bottom: 19px;
  font-size: 10px;
}
.story-copy h2 {
  margin-bottom: 23px;
}
.story-copy > p:not(.eyebrow) {
  font-size: 14px;
  color: var(--muted);
  margin-top: 14px;
  line-height: 1.85;
  max-width: 470px;
}
.owner-signoff {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 26px;
}
.signature {
  font: italic 25px var(--serif);
  letter-spacing: -0.04em;
}
.owner-signoff > span:last-child {
  font-size: 8px;
  letter-spacing: 0.12em;
  border-left: 1px solid var(--line);
  padding-left: 20px;
}
.service-area {
  background: var(--sand);
  border-block: 1px solid #ddd5c6;
}
.area-inner {
  padding-block: 49px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}
.area-inner .eyebrow {
  margin-bottom: 14px;
}
.area-inner h2 {
  font-size: 35px;
}
.area-details ul {
  list-style: none;
  padding: 0;
  margin: 0 0 17px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px 0;
  max-width: 460px;
}
.area-details li {
  font-size: 15px;
}
.area-details li:not(:last-child):after {
  content: "·";
  margin: 0 12px;
  color: #97866d;
}
.area-details p {
  font-size: 11px;
  color: #676154;
}
.area-details a {
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}
.estimate {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 90px;
}
.estimate-copy .eyebrow {
  margin-bottom: 20px;
  font-size: 10px;
}
.estimate-copy h2 {
  font-size: 52px;
}
.estimate-copy > p:not(.eyebrow) {
  font-size: 14px;
  max-width: 320px;
  color: var(--muted);
  margin-top: 22px;
  line-height: 1.8;
}
.contact-lines {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  margin-top: 28px;
}
.contact-lines .contact-phone {
  display: flex;
  align-items: center;
  gap: 30px;
  font: 28px var(--serif);
  letter-spacing: -0.045em;
}
.contact-lines a:not(.contact-phone) {
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.contact-lines a:hover {
  color: #76634a;
}
.estimate-copy .contact-note {
  font-size: 11px !important;
  margin-top: 25px !important;
}
#estimate-form {
  border: 1px solid #dcd5c8;
  background: #f0ede6;
  padding: 31px 33px;
  align-self: start;
  border-radius: 3px;
}
#estimate-form h3 {
  font-size: 27px;
}
.form-intro {
  font-size: 11px;
  line-height: 1.6;
  color: var(--muted);
  margin: 11px 0 24px;
  max-width: 365px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
}
.field {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
  min-width: 0;
}
.field label {
  font-size: 11px;
  margin-bottom: 7px;
  font-weight: 600;
}
.field label span {
  font-size: 10px;
  font-weight: 400;
  color: #6c655a;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid #ccc4b6;
  background: #fbfaf6;
  color: var(--ink);
  border-radius: 2px;
  padding: 12px 13px;
  font-size: 13px;
  line-height: 1.5;
  min-height: 46px;
}
.field select {
  padding-right: 5px;
}
.field textarea {
  resize: vertical;
  min-height: 100px;
}
.field input::placeholder,
.field textarea::placeholder {
  color: #767069;
  opacity: 1;
}
.form-button {
  width: 100%;
  justify-content: space-between;
  margin-top: 2px;
}
.form-status {
  font-size: 13px;
  margin-top: 18px;
  border-left: 2px solid var(--navy);
  padding-left: 12px;
}
.form-status[hidden] {
  display: none;
}
.site-footer {
  border-top: 1px solid var(--line);
}
.footer-inner {
  padding-block: 39px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.footer-inner .brand-type {
  font-size: 24px;
}
.footer-inner .brand > svg {
  width: 35px;
  height: 35px;
}
.footer-inner p {
  font-size: 11px;
  color: var(--muted);
}
.back-top {
  font-size: 11px;
  display: flex;
  gap: 20px;
  align-items: center;
}
.back-top span {
  font-size: 20px;
}
.demo-footer {
  display: flex;
  justify-content: space-between;
  padding-block: 15px;
  border-top: 1px solid var(--line);
  font-size: 9px;
  color: #6f685d;
}
.mobile-actions {
  display: none;
}
@media (min-width: 1500px) {
  .hero {
    gap: 60px;
  }
}
@media (max-width: 1150px) {
  .shell {
    width: calc(100% - 72px);
  }
  .header-inner {
    height: 90px;
  }
  .site-header nav {
    gap: 22px;
    font-size: 12px;
  }
  .brand-type {
    font-size: 25px;
  }
  .brand > svg {
    width: 36px;
    height: 36px;
  }
  .brand-sub {
    font-size: 7px;
  }
  .hero {
    gap: 35px;
  }
  .hero h1 {
    font-size: 63px;
  }
  .hero-visual,
  .hero-image {
    min-height: 540px;
  }
  .hero-actions {
    gap: 17px;
    flex-wrap: wrap;
  }
  .hero-description {
    font-size: 16px;
  }
  .services-layout {
    gap: 42px;
  }
  .section-space {
    padding-block: 76px;
  }
  .approach-inner,
  .story,
  .area-inner,
  .estimate {
    gap: 60px;
  }
  .approach h2 {
    font-size: 43px;
  }
  .estimate-copy h2 {
    font-size: 46px;
  }
  .trust-strip li {
    font-size: 10px;
    gap: 6px;
  }
  .trust-strip ul {
    gap: 14px;
  }
  .service-row {
    gap: 12px;
  }
  .service-row h3 {
    font-size: 24px;
  }
  .service-row p {
    font-size: 13px;
  }
  .service-detail {
    font-size: 8px;
  }
  .approach-monogram {
    right: 15px;
  }
  #estimate-form {
    padding: 27px 24px;
  }
  .form-row {
    gap: 12px;
  }
  .form-row label span {
    display: block;
  }
  .field label {
    line-height: 1.6;
  }
}
@media (max-width: 900px) {
  .site-header nav {
    gap: 18px;
  }
  .site-header nav > a:not(.button) {
    font-size: 11px;
  }
  .site-header .button-small {
    padding-inline: 13px;
    gap: 8px;
    font-size: 11px;
  }
  .hero h1 {
    font-size: 44px;
  }
  .hero .eyebrow {
    font-size: 8px;
    letter-spacing: 0.07em;
  }
  .hero-description {
    font-size: 15px;
  }
  .hero-visual,
  .hero-image {
    min-height: 490px;
  }
  .hero-image {
    border-top-left-radius: 95px;
  }
  .hero .button {
    padding-inline: 19px;
  }
  .hero-footnote {
    font-size: 10px;
    max-width: 240px;
  }
  .hero-actions {
    gap: 19px;
  }
  .heritage-stamp {
    width: 110px;
    height: 110px;
    left: -18px;
  }
  .heritage-stamp strong {
    font-size: 25px;
  }
  .heritage-stamp > span {
    font-size: 6px;
  }
  .trust-strip ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 13px;
  }
  .trust-strip li {
    font-size: 12px;
  }
  .services-layout {
    gap: 30px;
    grid-template-columns: 0.8fr 1.2fr;
  }
  .section-heading > p {
    max-width: 265px;
    font-size: 13px;
  }
  .service-row {
    grid-template-columns: 21px 1fr 32px;
    gap: 9px;
  }
  .service-row > a {
    width: 32px;
    height: 32px;
  }
  .service-row h3 {
    font-size: 22px;
  }
  .service-row p {
    font-size: 12px;
  }
  .approach-inner,
  .story,
  .area-inner,
  .estimate {
    gap: 36px;
  }
  .approach h2 {
    font-size: 36px;
  }
  .approach-lead {
    font-size: 17px;
  }
  .approach-monogram {
    bottom: 30px;
  }
  .story-art {
    padding: 23px;
    min-height: 355px;
  }
  .story-art .eyebrow {
    font-size: 7px;
  }
  .story-year {
    font-size: 90px;
  }
  .story-copy h2 {
    font-size: 38px;
  }
  .story-copy > p:not(.eyebrow) {
    font-size: 13px;
  }
  .owner-signoff {
    gap: 12px;
  }
  .owner-signoff > span:last-child {
    font-size: 7px;
    padding-left: 12px;
  }
  .area-inner h2 {
    font-size: 31px;
  }
  .area-details li {
    font-size: 13px;
  }
  .area-details p {
    font-size: 10px;
  }
  .estimate {
    grid-template-columns: 0.9fr 1.1fr;
  }
  .estimate-copy h2 {
    font-size: 40px;
  }
  .estimate .eyebrow {
    font-size: 8px;
  }
  .contact-lines .contact-phone {
    font-size: 25px;
  }
  .contact-lines a:not(.contact-phone) {
    font-size: 11px;
  }
  #estimate-form {
    padding: 24px 20px;
  }
  #estimate-form h3 {
    font-size: 23px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .form-row label span {
    display: inline;
  }
  .form-intro {
    font-size: 10px;
  }
  .field {
    margin-bottom: 14px;
  }
  .footer-inner {
    gap: 20px;
  }
  .footer-inner p {
    font-size: 10px;
  }
}
@media (max-width: 700px) {
  html {
    scroll-padding-top: 24px;
  }
  .shell {
    width: calc(100% - 44px);
  }
  .section-space {
    padding-block: 58px;
  }
  .header-inner {
    height: 82px;
    position: relative;
  }
  .brand-type {
    font-size: 25px;
  }
  .brand > svg {
    width: 35px;
    height: 35px;
  }
  .brand-sub {
    font-size: 6.5px;
    margin-top: 7px;
  }
  .brand {
    gap: 10px;
  }
  .menu-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 0;
    background: none;
    color: var(--ink);
    font-size: 11px;
    min-height: 44px;
    padding: 8px 0 8px 8px;
  }
  .menu-lines {
    width: 18px;
    height: 10px;
    border-top: 1px solid;
    border-bottom: 1px solid;
    transition: transform 0.18s;
  }
  .menu-toggle[aria-expanded="true"] .menu-lines {
    transform: rotate(-45deg);
  }
  .site-header nav {
    display: none;
    position: absolute;
    top: 81px;
    left: -22px;
    right: -22px;
    background: var(--paper);
    padding: 20px 22px 25px;
    z-index: 5;
    box-shadow: 0 8px 15px #293f5210;
    border-bottom: 1px solid var(--line);
    align-items: stretch;
    gap: 3px;
  }
  .site-header nav.is-open {
    display: flex;
    flex-direction: column;
  }
  .site-header nav > a:not(.button) {
    font-size: 15px;
    padding: 12px 4px;
  }
  .site-header nav .button {
    font-size: 13px;
    margin-top: 10px;
    min-height: 47px;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 34px;
    padding-bottom: 29px;
    gap: 30px;
  }
  .hero-copy {
    padding: 0;
  }
  .hero .eyebrow {
    font-size: 8px;
    letter-spacing: 0.08em;
    gap: 6px;
  }
  .small-sun {
    font-size: 19px;
  }
  .hero h1 {
    font-size: 53px;
    line-height: 1.08;
    margin: 22px 0 19px;
    letter-spacing: -0.06em;
  }
  .hero-description {
    font-size: 15px;
    max-width: 350px;
    line-height: 1.75;
  }
  .hero-actions {
    margin-top: 25px;
    gap: 19px;
    align-items: center;
  }
  .hero .button {
    font-size: 12px;
    gap: 17px;
    min-height: 51px;
    padding: 14px 16px;
  }
  .call-link {
    font-size: 11px;
    gap: 6px;
  }
  .call-link svg {
    width: 15px;
    height: 15px;
  }
  .hero-footnote {
    font-size: 9px;
    margin-top: 18px;
    max-width: none;
  }
  .hero-visual {
    min-height: 0;
    height: 327px;
  }
  .hero-visual picture {
    height: 299px;
  }
  .hero-image {
    min-height: 0;
    height: 299px;
    object-position: center 60%;
    border-top-left-radius: 75px;
  }
  .hero-visual figcaption {
    font-size: 9px;
    padding-top: 11px;
  }
  .heritage-stamp {
    left: auto;
    right: 16px;
    bottom: 46px;
    width: 100px;
    height: 100px;
    outline-width: 4px;
  }
  .heritage-stamp strong {
    font-size: 23px;
    margin-block: 6px;
  }
  .heritage-stamp > span {
    font-size: 5.5px;
  }
  .trust-strip ul {
    padding-block: 19px;
    column-gap: 10px;
    row-gap: 12px;
  }
  .trust-strip li {
    font-size: 9px;
    gap: 6px;
    line-height: 1.5;
  }
  .trust-strip svg {
    width: 16px;
    height: 16px;
  }
  .section-heading {
    display: block;
    margin-bottom: 29px;
  }
  .section-heading .eyebrow {
    font-size: 9px;
    margin-bottom: 13px;
  }
  .section-heading h2 {
    font-size: 38px;
  }
  .section-heading > p {
    font-size: 14px;
    max-width: 320px;
    margin-top: 19px;
  }
  .services-layout {
    display: flex;
    flex-direction: column;
    gap: 27px;
  }
  .service-photo picture {
    height: 245px;
    flex: auto;
  }
  .service-photo img {
    height: 245px;
    object-position: center 60%;
  }
  .service-photo figcaption {
    font-size: 10px;
    margin-top: 10px;
  }
  .service-row {
    grid-template-columns: 23px 1fr 36px;
    gap: 12px;
    padding: 24px 0;
  }
  .service-row h3 {
    font-size: 24px;
  }
  .service-row p {
    font-size: 13px;
  }
  .service-detail {
    font-size: 8px;
    letter-spacing: 0.11em;
  }
  .service-row > a {
    width: 36px;
    height: 36px;
  }
  .service-row > a svg {
    width: 20px;
  }
  .approach-inner {
    display: block;
    padding-block: 51px;
  }
  .approach .eyebrow {
    font-size: 9px;
    margin-bottom: 19px;
  }
  .approach h2 {
    font-size: 38px;
    line-height: 1.13;
  }
  .approach h2 br:nth-of-type(3) {
    display: none;
  }
  .approach-monogram {
    width: 54px;
    height: 54px;
    right: 2px;
    bottom: 8px;
  }
  .approach-content {
    margin-top: 31px;
    padding: 0;
  }
  .approach-lead {
    font-size: 17px;
    max-width: 315px;
  }
  .approach-steps {
    margin: 23px 0 24px;
  }
  .approach-steps li {
    gap: 18px;
    padding-block: 18px;
  }
  .approach-steps p {
    font-size: 13px;
    line-height: 1.7;
  }
  .approach-steps h3 {
    font-size: 14px;
  }
  .text-link {
    font-size: 12px;
  }
  .story {
    display: flex;
    flex-direction: column;
    gap: 36px;
    align-items: stretch;
  }
  .story-art {
    min-height: 290px;
  }
  .story-art .eyebrow {
    font-size: 8px;
  }
  .story-since {
    font-size: 22px;
    margin-top: 20px;
  }
  .story-since em {
    font-size: 20px;
  }
  .story-year {
    font-size: 95px;
  }
  .story-art-bottom {
    margin-top: 12px;
    font-size: 8px;
  }
  .story-copy .eyebrow {
    font-size: 9px;
    margin-bottom: 16px;
  }
  .story-copy h2 {
    font-size: 39px;
  }
  .story-copy > p:not(.eyebrow) {
    font-size: 14px;
  }
  .owner-signoff {
    gap: 18px;
  }
  .owner-signoff > span:last-child {
    font-size: 8px;
    padding-left: 18px;
  }
  .area-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-block: 40px;
  }
  .area-inner .eyebrow {
    font-size: 9px;
  }
  .area-inner h2 {
    font-size: 34px;
  }
  .area-details ul {
    margin-bottom: 17px;
    gap: 8px 0;
  }
  .area-details li {
    font-size: 14px;
  }
  .area-details li:not(:last-child):after {
    margin-inline: 10px;
  }
  .area-details p {
    font-size: 11px;
    max-width: 300px;
  }
  .estimate {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .estimate .eyebrow {
    font-size: 9px;
  }
  .estimate-copy h2 {
    font-size: 43px;
  }
  .estimate-copy h2 br:nth-of-type(2) {
    display: none;
  }
  .estimate-copy > p:not(.eyebrow) {
    margin-top: 21px;
    max-width: 340px;
  }
  .contact-lines .contact-phone {
    font-size: 29px;
  }
  .contact-lines a:not(.contact-phone) {
    font-size: 13px;
  }
  .contact-lines {
    margin-top: 25px;
  }
  .estimate-copy .contact-note {
    font-size: 10px !important;
    margin-top: 19px !important;
  }
  #estimate-form {
    padding: 26px 22px;
  }
  #estimate-form h3 {
    font-size: 25px;
  }
  .form-intro {
    font-size: 11px;
    margin-bottom: 22px;
  }
  .field {
    margin-bottom: 18px;
  }
  .field label {
    font-size: 12px;
  }
  .field input,
  .field select,
  .field textarea {
    font-size: 16px;
    min-height: 48px;
  }
  .field input::placeholder,
  .field textarea::placeholder {
    font-size: 13px;
  }
  .form-button {
    font-size: 13px;
    gap: 15px;
    padding-inline: 18px;
    min-height: 53px;
  }
  .footer-inner {
    align-items: flex-start;
    flex-wrap: wrap;
    padding-block: 30px;
    gap: 23px;
  }
  .footer-inner .brand {
    width: 100%;
  }
  .footer-inner p {
    font-size: 10px;
    max-width: 240px;
  }
  .back-top {
    font-size: 10px;
    gap: 10px;
    margin-left: auto;
  }
  .demo-footer {
    flex-direction: column;
    gap: 4px;
    font-size: 8px;
    padding-block: 15px;
  }
  .site-footer {
    padding-bottom: 83px;
  }
  .mobile-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
    position: fixed;
    z-index: 6;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px 22px calc(10px + env(safe-area-inset-bottom));
    background: var(--paper);
    border-top: 1px solid #d8d0c2;
    box-shadow: 0 -3px 14px #293f5208;
    transition: transform 0.2s;
  }
  .mobile-actions.is-hidden {
    transform: translateY(110%);
    visibility: hidden;
  }
  .mobile-actions > .button {
    min-height: 46px;
    padding: 12px 18px;
    font-size: 12px;
    gap: 27px;
    flex: 1;
    max-width: 225px;
  }
  .mobile-call {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 12px;
    padding: 12px 0;
  }
  .mobile-call svg {
    width: 18px;
    height: 18px;
  }
}
@media (max-width: 370px) {
  .shell {
    width: calc(100% - 36px);
  }
  .hero h1 {
    font-size: 46px;
  }
  .hero .eyebrow {
    font-size: 7px;
  }
  .hero-actions {
    gap: 15px;
  }
  .hero .button {
    padding: 13px;
    gap: 12px;
  }
  .call-link {
    font-size: 10px;
  }
  .brand-type {
    font-size: 23px;
  }
  .brand > svg {
    width: 30px;
    height: 30px;
  }
  .hero-visual,
  .hero-visual picture,
  .hero-image {
    height: 280px;
  }
  .hero-visual {
    height: 308px;
  }
  .trust-strip li {
    font-size: 8px;
  }
  .approach h2 {
    font-size: 34px;
  }
  .approach-monogram {
    width: 44px;
    height: 44px;
  }
  .service-row {
    gap: 8px;
  }
  .service-row h3 {
    font-size: 22px;
  }
  .estimate-copy h2 {
    font-size: 39px;
  }
  #estimate-form {
    padding: 24px 17px;
  }
  .mobile-actions {
    padding-inline: 18px;
    gap: 18px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
    animation: none !important;
  }
}

/* Refinement after desktop, tablet, and mobile browser review. */
.call-link {
  min-height: 44px;
}
.service-row > a {
  width: 44px;
  height: 44px;
}
.service-row {
  grid-template-columns: 28px 1fr 44px;
}
@media (min-width: 701px) and (max-width: 900px) {
  .service-row {
    grid-template-columns: 19px 1fr 44px;
    gap: 9px;
  }
  .hero-footnote {
    max-width: 280px;
    font-size: 11px;
  }
  .hero-visual,
  .hero-image {
    min-height: 470px;
  }
}
@media (max-width: 700px) {
  .hero .eyebrow {
    font-size: 9px;
    letter-spacing: 0.055em;
  }
  .hero-footnote {
    font-size: 11px;
    line-height: 1.6;
  }
  .hero-visual figcaption {
    font-size: 10px;
  }
  .trust-strip li {
    font-size: 11px;
    align-items: flex-start;
  }
  .trust-strip svg {
    margin-top: 1px;
  }
  .service-row {
    grid-template-columns: 20px 1fr 44px;
    gap: 10px;
  }
  .service-detail {
    font-size: 9px;
    letter-spacing: 0.085em;
  }
  .service-photo figcaption {
    font-size: 11px;
  }
  .hero-actions {
    gap: 15px;
  }
  .back-top {
    min-height: 44px;
  }
}
@media (max-width: 370px) {
  .hero .eyebrow {
    font-size: 8px;
  }
  .hero-actions {
    gap: 10px;
  }
  .hero-footnote {
    font-size: 10px;
  }
  .trust-strip li {
    font-size: 10px;
  }
  .service-row {
    gap: 7px;
    grid-template-columns: 17px 1fr 44px;
  }
}
