:root {
  --forest-950: #071d17;
  --forest-900: #0b2b21;
  --forest-800: #123a2c;
  --forest-700: #1d4b39;
  --sage: #6f8667;
  --copper: #ca8752;
  --copper-light: #dda66f;
  --cream: #f3e5c2;
  --paper: #f5f0e5;
  --sand: #d8ccb4;
  --ink: #17231d;
  --muted: #68736d;
  --line: rgba(23, 35, 29, 0.17);
  --display: Georgia, "Times New Roman", serif;
  --sans: "Arial Narrow", "Avenir Next Condensed", "Helvetica Neue", Arial, sans-serif;
  --body: "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
  --shell: min(1220px, calc(100% - 48px));
  --header-h: 84px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  color: var(--cream);
  background: var(--forest-800);
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--copper-light);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  inset: 12px auto auto 12px;
  padding: 10px 16px;
  color: var(--forest-950);
  background: var(--cream);
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section-pad {
  padding-block: clamp(90px, 11vw, 160px);
}

.section-number {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 26px;
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 32px;
  height: 1px;
  background: currentColor;
}

.eyebrow.dark {
  color: var(--forest-800);
}

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  height: var(--header-h);
  color: var(--cream);
  background: rgba(7, 29, 23, 0.96);
  border-bottom: 1px solid rgba(243, 229, 194, 0.13);
  backdrop-filter: blur(12px);
  transition: box-shadow 240ms ease, background 240ms ease;
}

.site-header.is-scrolled {
  background: rgba(7, 29, 23, 0.985);
  box-shadow: 0 12px 36px rgba(4, 19, 14, 0.22);
}

.header-inner {
  display: grid;
  grid-template-columns: minmax(250px, 1fr) auto minmax(190px, 1fr);
  align-items: center;
  height: 100%;
  gap: 36px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 12px;
  width: fit-content;
}

.brand-mark {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--cream);
  background: var(--forest-700);
  border: 1px solid var(--copper);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  text-align: center;
  transform: translateY(0.5px);
}

.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  text-transform: uppercase;
}

.brand-name strong {
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0.13em;
}

.brand-name small {
  margin-top: 5px;
  color: var(--copper-light);
  font-family: var(--sans);
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.28em;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 3vw, 46px);
}

.site-nav a {
  position: relative;
  padding-block: 12px;
  color: rgba(243, 229, 194, 0.76);
  font-family: var(--sans);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  white-space: nowrap;
  text-transform: uppercase;
  transition: color 160ms ease;
}

.site-nav a::after {
  position: absolute;
  inset: auto 0 4px;
  height: 1px;
  content: "";
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms var(--ease);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--cream);
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 14px;
  padding: 11px 0 10px 18px;
  color: var(--cream);
  border-left: 1px solid rgba(243, 229, 194, 0.22);
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.header-cta span {
  color: var(--copper-light);
  font-size: 1.1rem;
  transition: transform 180ms ease;
}

.header-cta:hover span {
  transform: translate(3px, 3px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 12px;
  background: transparent;
  border: 1px solid rgba(243, 229, 194, 0.22);
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 1px;
  margin: 5px 0;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] > span:nth-of-type(2) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] > span:nth-of-type(3) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] > span:nth-of-type(4) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 900px;
  overflow: hidden;
  color: var(--cream);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px) 0 0 / 90px 100%,
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px) 0 0 / 100% 90px,
    radial-gradient(circle at 76% 35%, rgba(202, 135, 82, 0.2), transparent 29%),
    var(--forest-950);
}

.hero::before {
  position: absolute;
  inset: 120px auto auto 2.5%;
  width: 25vw;
  height: 25vw;
  content: "";
  border: 1px solid rgba(202, 135, 82, 0.12);
  border-radius: 50%;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.85fr);
  align-items: center;
  gap: clamp(60px, 8vw, 120px);
  min-height: 790px;
  padding-top: calc(var(--header-h) + 60px);
  padding-bottom: 80px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero h1,
.detail-hero h1 {
  max-width: 780px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4rem, 7.1vw, 7rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.9;
}

.hero h1 em,
.section-heading h2 em,
.availability h2 em,
.detail-sticky h2 em {
  color: var(--copper-light);
  font-weight: 400;
}

.hero h1.hero-motto {
  max-width: 760px;
  font-size: clamp(3.8rem, 5.2vw, 5.2rem);
  line-height: 0.94;
  text-wrap: balance;
}

.hero-motto span,
.hero-motto em {
  display: block;
}

.hero-motto em {
  margin-top: 0.08em;
}

.hero-lede {
  max-width: 600px;
  margin: 34px 0 0;
  color: rgba(243, 229, 194, 0.73);
  font-family: var(--display);
  font-size: clamp(1.16rem, 1.8vw, 1.48rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 42px;
}

.hero-actions .button {
  min-width: 220px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  min-height: 54px;
  padding: 15px 22px;
  border: 1px solid transparent;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  transition: color 200ms ease, background 200ms ease, border-color 200ms ease;
}

.button span {
  font-size: 1.1rem;
  transition: transform 200ms var(--ease);
}

.button:hover span {
  transform: translateX(4px);
}

.button-primary {
  color: var(--forest-950);
  background: var(--copper-light);
  border-color: var(--copper-light);
}

.button-primary:hover {
  color: var(--cream);
  background: transparent;
}

.button-outline {
  color: var(--copper-light);
  background: transparent;
  border-color: var(--copper-light);
}

.button-outline:hover {
  color: var(--forest-950);
  background: var(--copper-light);
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(243, 229, 194, 0.4);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.arrow-link span {
  color: var(--copper-light);
}

.hero-visual {
  position: relative;
  padding: 30px 30px 30px 0;
}

.logo-frame {
  position: relative;
  z-index: 1;
  overflow: hidden;
  aspect-ratio: 1 / 1.08;
  padding: 18px;
  border: 1px solid rgba(202, 135, 82, 0.42);
  border-radius: 50% 50% 10px 10px / 42% 42% 10px 10px;
  background: rgba(18, 58, 44, 0.26);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.26);
}

.logo-frame::after {
  position: absolute;
  z-index: 2;
  inset: 18px;
  content: "";
  pointer-events: none;
  border: 1px solid rgba(243, 229, 194, 0.14);
  border-radius: inherit;
}

.logo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50% 50% 4px 4px / 41% 41% 4px 4px;
  filter: saturate(0.82) contrast(1.07);
}

.logo-frame-rule {
  position: absolute;
  z-index: -1;
  inset: -15px;
  border: 1px solid rgba(202, 135, 82, 0.16);
  border-radius: inherit;
}

.hero-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 110px;
  margin-top: -12px;
  border-top: 1px solid rgba(243, 229, 194, 0.15);
  border-bottom: 1px solid rgba(243, 229, 194, 0.15);
}

.hero-rail div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px clamp(20px, 3vw, 44px);
  border-right: 1px solid rgba(243, 229, 194, 0.15);
}

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

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

.hero-rail span {
  color: var(--copper-light);
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-rail strong {
  margin-top: 7px;
  color: rgba(243, 229, 194, 0.85);
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 400;
}

.intro {
  position: relative;
  background:
    linear-gradient(rgba(23, 35, 29, 0.04) 1px, transparent 1px) 0 0 / 100% 120px,
    var(--paper);
}

.intro-grid {
  display: block;
}

.section-heading h2,
.availability h2,
.detail-sticky h2 {
  margin: 0;
  color: var(--forest-900);
  font-family: var(--display);
  font-size: clamp(2.8rem, 5.3vw, 5.4rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.section-heading h2 em,
.availability h2 em,
.detail-sticky h2 em {
  color: var(--copper);
}

.service-list {
  width: min(1500px, calc(100% - clamp(24px, 6vw, 64px)));
  margin-top: clamp(80px, 10vw, 140px);
}

.service-row {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  align-items: stretch;
  min-height: 560px;
  border-top: 1px solid var(--line);
}

.service-row:last-child {
  border-bottom: 1px solid var(--line);
}

.service-row-reverse {
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
}

.service-row-reverse .service-visual {
  order: 2;
}

.service-visual {
  position: relative;
  display: grid;
  overflow: hidden;
  min-width: 0;
  place-items: center;
  color: var(--cream);
  background:
    linear-gradient(90deg, rgba(243, 229, 194, 0.045) 1px, transparent 1px) 0 0 / 52px 100%,
    linear-gradient(rgba(243, 229, 194, 0.04) 1px, transparent 1px) 0 0 / 100% 52px,
    var(--forest-800);
}

.trim-visual {
  background-color: #825432;
}

.remodel-visual {
  background-color: #304a38;
}

.service-visual::before {
  position: absolute;
  inset: 40px;
  content: "";
  border: 1px solid rgba(243, 229, 194, 0.16);
  transition: inset 400ms var(--ease), border-color 400ms ease;
}

.service-visual:hover::before {
  inset: 30px;
  border-color: rgba(243, 229, 194, 0.3);
}

.service-visual svg {
  position: relative;
  z-index: 1;
  width: min(82%, 620px);
  fill: none;
  stroke: rgba(243, 229, 194, 0.8);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 600ms var(--ease);
}

.service-visual:hover svg {
  transform: scale(1.025);
}

.service-visual svg .fill-line {
  fill: rgba(202, 135, 82, 0.14);
  stroke: var(--copper-light);
}

.service-visual svg .accent-line {
  stroke: var(--copper-light);
}

.visual-label {
  position: absolute;
  z-index: 2;
  inset: auto auto 58px 62px;
  color: rgba(243, 229, 194, 0.7);
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.service-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(58px, 8vw, 112px);
  background: #ebe5d8;
}

.service-index {
  position: absolute;
  inset: 35px 40px auto auto;
  color: rgba(11, 43, 33, 0.24);
  font-family: var(--display);
  font-size: 1.1rem;
}

.service-copy .eyebrow {
  margin-bottom: 20px;
}

.service-copy h3 {
  margin: 0;
  color: var(--forest-900);
  font-family: var(--display);
  font-size: clamp(2.7rem, 4.3vw, 4.5rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1;
}

.service-copy h3 a {
  transition: color 180ms ease;
}

.service-copy h3 a:hover {
  color: var(--copper);
}

.service-copy > p:not(.eyebrow) {
  max-width: 470px;
  margin: 24px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.feature-list {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 8px;
  margin: 28px 0 34px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 14px;
  color: var(--forest-800);
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.feature-list li::before {
  position: absolute;
  inset: 50% auto auto 0;
  width: 4px;
  height: 4px;
  content: "";
  background: var(--copper);
  border-radius: 50%;
  transform: translateY(-50%);
}

.arrow-link {
  align-self: flex-start;
  color: var(--forest-900);
  border-color: rgba(11, 43, 33, 0.35);
}

.arrow-link:hover {
  border-color: var(--copper);
}

.standard-band {
  position: relative;
  padding-block: clamp(100px, 11vw, 150px);
  overflow: hidden;
  color: var(--cream);
  background:
    radial-gradient(circle at 93% 30%, rgba(202, 135, 82, 0.16), transparent 28%),
    var(--forest-900);
}

.standard-band::after {
  position: absolute;
  inset: -80% -10% auto auto;
  width: 700px;
  height: 700px;
  content: "";
  border: 1px solid rgba(202, 135, 82, 0.13);
  border-radius: 50%;
}

.standard-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.6fr 1.6fr;
  gap: 70px;
}

.standard-grid > .eyebrow {
  align-self: start;
}

.standard-grid blockquote {
  max-width: 800px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.7rem, 5vw, 5.2rem);
  letter-spacing: -0.045em;
  line-height: 1.06;
}

.standard-steps {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 12px;
  border-top: 1px solid rgba(243, 229, 194, 0.19);
}

.standard-steps > div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 32px 30px 0 0;
}

.standard-steps > div + div {
  padding-left: 30px;
  border-left: 1px solid rgba(243, 229, 194, 0.19);
}

.standard-steps span {
  color: var(--copper-light);
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 800;
}

.standard-steps p {
  margin: 0;
  color: rgba(243, 229, 194, 0.63);
  font-size: 0.87rem;
  line-height: 1.65;
}

.standard-steps strong {
  display: block;
  margin-bottom: 7px;
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.availability {
  background:
    linear-gradient(90deg, rgba(23, 35, 29, 0.035) 1px, transparent 1px) 0 0 / 110px 100%,
    var(--paper);
}

.availability-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(520px, 1.1fr);
  align-items: center;
  gap: clamp(70px, 10vw, 150px);
}

.availability-copy > p:not(.eyebrow) {
  max-width: 490px;
  margin: 32px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.legend {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.legend span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.legend i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.legend .available,
.day-button.available::after {
  background: #5d7c5c;
}

.legend .limited,
.day-button.limited::after {
  background: var(--copper);
}

.legend .booked,
.day-button.booked::after {
  background: #949188;
}

.calendar-card {
  position: relative;
  scroll-margin-top: clamp(20px, 2vw, 32px);
  padding: clamp(28px, 4vw, 50px);
  color: var(--cream);
  background: var(--forest-900);
  box-shadow: 0 30px 70px rgba(15, 31, 23, 0.17);
}

.calendar-card::before {
  position: absolute;
  inset: 12px;
  content: "";
  pointer-events: none;
  border: 1px solid rgba(243, 229, 194, 0.09);
}

.calendar-topline {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 36px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(243, 229, 194, 0.17);
}

.calendar-kicker {
  color: var(--copper-light);
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.calendar-topline h3 {
  margin: 4px 0 0;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.5vw, 2.7rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.calendar-controls {
  display: flex;
  gap: 8px;
}

.calendar-controls button {
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  color: var(--cream);
  background: transparent;
  border: 1px solid rgba(243, 229, 194, 0.25);
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease;
}

.calendar-controls button:hover:not(:disabled) {
  background: var(--forest-700);
  border-color: var(--copper);
}

.calendar-controls button:disabled {
  opacity: 0.32;
  cursor: not-allowed;
}

.calendar-weekdays,
.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.calendar-weekdays {
  margin-bottom: 10px;
}

.calendar-weekdays span {
  padding: 4px;
  color: rgba(243, 229, 194, 0.45);
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.calendar-days {
  gap: 5px;
}

.calendar-empty,
.day-button {
  aspect-ratio: 1.35 / 1;
}

.day-button {
  position: relative;
  display: grid;
  min-width: 0;
  padding: 0;
  place-items: center;
  color: rgba(243, 229, 194, 0.92);
  background: rgba(243, 229, 194, 0.035);
  border: 1px solid transparent;
  border-radius: 1px;
  font-family: var(--sans);
  font-size: 0.73rem;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease;
}

.day-button::after {
  position: absolute;
  inset: auto 7px 6px auto;
  width: 5px;
  height: 5px;
  content: "";
  border-radius: 50%;
}

.day-button:hover:not(:disabled),
.day-button.is-selected {
  background: var(--forest-700);
  border-color: var(--copper);
}

.day-button.is-today {
  color: var(--forest-950);
  background: var(--cream);
  font-weight: 800;
}

.day-button.is-past,
.day-button:disabled {
  color: rgba(243, 229, 194, 0.58);
  background: transparent;
  cursor: default;
}

.day-button.is-past::after {
  display: none;
}

.day-button.pending::after {
  display: none;
}

.calendar-card[data-calendar-state="loading"] .calendar-days {
  opacity: 0.68;
}

.calendar-card[data-calendar-state="error"] .calendar-detail {
  border-left-color: #b86f55;
}

.calendar-detail {
  display: flex;
  align-items: center;
  min-height: 54px;
  margin-top: 25px;
  padding: 14px 16px;
  color: rgba(243, 229, 194, 0.7);
  background: rgba(243, 229, 194, 0.05);
  border-left: 2px solid var(--copper);
  font-size: 0.82rem;
}

.calendar-detail strong {
  margin-right: 6px;
  color: var(--cream);
}

.calendar-note {
  margin: 15px 0 0;
  color: rgba(243, 229, 194, 0.42);
  font-size: 0.7rem;
  text-align: center;
}

.site-footer {
  padding: 70px 0 24px;
  color: rgba(243, 229, 194, 0.7);
  background: var(--forest-950);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: start;
  gap: 50px;
  padding-bottom: 60px;
}

.footer-main > p {
  margin: 0;
  font-family: var(--display);
  font-size: 1.15rem;
  line-height: 1.6;
}

.footer-main nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
  align-items: flex-end;
}

.footer-main nav a,
.footer-bottom {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-main nav a:hover,
.footer-bottom a:hover {
  color: var(--copper-light);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  color: rgba(243, 229, 194, 0.42);
  border-top: 1px solid rgba(243, 229, 194, 0.13);
}

/* Service pages */
.detail-hero {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  color: var(--cream);
  background:
    linear-gradient(90deg, rgba(243, 229, 194, 0.026) 1px, transparent 1px) 0 0 / 86px 100%,
    linear-gradient(rgba(243, 229, 194, 0.026) 1px, transparent 1px) 0 0 / 100% 86px,
    var(--forest-950);
}

.trim-page .detail-hero {
  background-color: #4c3020;
}

.remodel-page .detail-hero {
  background-color: #122c22;
}

.detail-hero-grid {
  display: grid;
  grid-template-columns: minmax(380px, 0.8fr) minmax(440px, 1.2fr);
  align-items: center;
  gap: clamp(50px, 7vw, 100px);
  min-height: 780px;
  padding-top: calc(var(--header-h) + 50px);
}

.back-link {
  display: inline-block;
  margin-bottom: 70px;
  color: rgba(243, 229, 194, 0.58);
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.back-link:hover {
  color: var(--copper-light);
}

.detail-hero h1 {
  color: var(--cream);
  font-size: clamp(4.5rem, 8vw, 8rem);
  white-space: nowrap;
}

.detail-hero-copy > p:not(.eyebrow) {
  max-width: 530px;
  margin: 32px 0 38px;
  color: rgba(243, 229, 194, 0.68);
  font-family: var(--display);
  font-size: clamp(1.15rem, 1.7vw, 1.4rem);
  line-height: 1.55;
}

.detail-illustration {
  position: relative;
  display: grid;
  aspect-ratio: 1.1;
  place-items: center;
  border: 1px solid rgba(243, 229, 194, 0.14);
  border-radius: 50% 50% 4px 4px / 48% 48% 4px 4px;
}

.detail-illustration::before,
.detail-illustration::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(202, 135, 82, 0.16);
  border-radius: inherit;
}

.detail-illustration::before {
  inset: 18px;
}

.detail-illustration::after {
  inset: 36px;
}

.drawing-number {
  position: absolute;
  z-index: 2;
  inset: 30px auto auto 50%;
  color: rgba(243, 229, 194, 0.45);
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.detail-illustration svg {
  position: relative;
  z-index: 1;
  width: 84%;
  fill: none;
  stroke: rgba(243, 229, 194, 0.78);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.detail-illustration .detail-accent {
  stroke: var(--copper-light);
}

.detail-illustration .detail-dash {
  stroke: rgba(243, 229, 194, 0.35);
  stroke-dasharray: 5 7;
}

.detail-body {
  background: var(--paper);
}

.detail-body-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(70px, 10vw, 150px);
}

.detail-sticky {
  align-self: start;
  position: sticky;
  top: calc(var(--header-h) + 50px);
}

.detail-sticky .section-number {
  display: block;
  margin-bottom: 70px;
}

.detail-sticky h2 {
  font-size: clamp(3rem, 4.8vw, 5rem);
}

.detail-intro {
  margin: 0 0 70px;
  color: var(--forest-800);
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.5vw, 2.15rem);
  line-height: 1.5;
}

.detail-cards {
  border-top: 1px solid var(--line);
}

.detail-cards article {
  display: grid;
  grid-template-columns: 45px minmax(150px, 0.65fr) minmax(230px, 1fr);
  gap: 25px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}

.detail-cards span {
  color: var(--copper);
  font-family: var(--sans);
  font-size: 0.64rem;
  font-weight: 800;
}

.detail-cards h3,
.detail-cards p {
  margin: 0;
}

.detail-cards h3 {
  color: var(--forest-900);
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1.2;
}

.detail-cards p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 760ms var(--ease), transform 760ms var(--ease);
}

.reveal-delay {
  transition-delay: 120ms;
}

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

@media (max-width: 1100px) {
  :root {
    --shell: min(100% - 40px, 940px);
  }

  .header-inner {
    grid-template-columns: 1fr auto auto;
    gap: 22px;
  }

  .site-nav {
    gap: 20px;
  }

  .header-cta {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.78fr;
    gap: 50px;
  }

  .hero h1 {
    font-size: clamp(4rem, 7vw, 5.8rem);
  }

  .hero h1.hero-motto {
    font-size: clamp(3.35rem, 6vw, 4.2rem);
  }

  .service-row,
  .service-row-reverse {
    grid-template-columns: 1.08fr 0.92fr;
  }

  .service-copy {
    padding: 58px 48px;
  }

  .availability-grid {
    gap: 55px;
  }

  .detail-hero-grid {
    grid-template-columns: 0.82fr 1.18fr;
  }

  .detail-hero h1 {
    font-size: clamp(4.1rem, 7.7vw, 6.5rem);
  }

  .detail-body-grid {
    gap: 70px;
  }

  .detail-cards article {
    grid-template-columns: 35px 1fr;
  }

  .detail-cards p {
    grid-column: 2;
  }
}

@media (max-width: 820px) {
  :root {
    --header-h: 72px;
    --shell: calc(100% - 32px);
  }

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

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto;
    display: grid;
    gap: 0;
    padding: 14px 16px 24px;
    background: var(--forest-950);
    border-bottom: 1px solid rgba(243, 229, 194, 0.17);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 18px 14px;
    border-bottom: 1px solid rgba(243, 229, 194, 0.1);
    font-size: 0.8rem;
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero::before {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: clamp(34px, 6vw, 50px);
    min-height: auto;
    padding-top: calc(var(--header-h) + 42px);
    padding-bottom: 55px;
  }

  .hero-copy {
    order: 2;
    max-width: 670px;
  }

  .hero h1 {
    font-size: clamp(3.8rem, 13vw, 6rem);
  }

  .hero h1.hero-motto {
    font-size: clamp(3.4rem, 10vw, 4.8rem);
  }

  .hero-visual {
    order: 1;
    width: min(52vw, 260px);
    margin: 0 auto;
    padding: 10px;
  }

  .hero-rail {
    min-height: 96px;
  }

  .service-row,
  .service-row-reverse {
    grid-template-columns: 1fr;
  }

  .service-row-reverse .service-visual {
    order: initial;
  }

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

  .standard-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .standard-steps {
    grid-column: 1;
  }

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

  .calendar-card {
    width: min(100%, 680px);
  }

  .footer-main {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-brand {
    justify-self: center;
  }

  .footer-main nav {
    grid-column: 1;
    grid-row: auto;
    align-items: center;
    margin-top: 10px;
  }

  .footer-bottom {
    align-items: center;
    flex-direction: column;
    text-align: center;
  }

  .detail-hero {
    min-height: auto;
  }

  .detail-hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: calc(var(--header-h) + 65px);
    padding-bottom: 70px;
  }

  .back-link {
    margin-bottom: 50px;
  }

  .detail-illustration {
    width: min(82vw, 600px);
    margin-inline: auto;
  }

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

  .detail-sticky {
    position: static;
  }

  .detail-sticky .section-number {
    margin-bottom: 40px;
  }

}

@media (max-width: 560px) {
  :root {
    --shell: calc(100% - 24px);
  }

  .brand-name strong {
    font-size: 0.68rem;
  }

  .brand-name small {
    font-size: 0.5rem;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    font-size: 0.6rem;
  }

  .hero-grid {
    gap: 32px;
    padding-top: calc(var(--header-h) + 28px);
  }

  .hero h1 {
    font-size: clamp(3.25rem, 15vw, 4.7rem);
  }

  .hero h1.hero-motto {
    font-size: clamp(2.75rem, 11vw, 3.25rem);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 26px;
  }

  .hero-visual {
    width: min(74vw, 290px);
    padding: 8px;
  }

  .logo-frame {
    padding: 16px;
  }

  .logo-frame::after {
    inset: 16px;
  }

  .hero-rail {
    grid-template-columns: 1fr;
    padding-block: 15px;
  }

  .hero-rail div,
  .hero-rail div:first-child {
    padding: 14px 8px;
    border-right: 0;
    border-bottom: 1px solid rgba(243, 229, 194, 0.12);
  }

  .hero-rail div:last-child {
    border-bottom: 0;
  }

  .section-number {
    margin-bottom: 5px;
  }

  .service-visual {
    min-height: 320px;
  }

  .service-visual::before {
    inset: 20px;
  }

  .service-visual:hover::before {
    inset: 16px;
  }

  .visual-label {
    inset: auto auto 35px 35px;
  }

  .service-copy {
    padding: 55px 25px;
  }

  .standard-steps {
    grid-template-columns: 1fr;
  }

  .standard-steps > div,
  .standard-steps > div + div {
    padding: 24px 0;
    border-left: 0;
    border-bottom: 1px solid rgba(243, 229, 194, 0.15);
  }

  .calendar-card {
    padding: 28px 20px;
  }

  .calendar-topline {
    align-items: flex-start;
  }

  .calendar-controls button {
    width: 40px;
    height: 40px;
  }

  .calendar-days {
    gap: 2px;
  }

  .day-button {
    font-size: 0.66rem;
  }

  .day-button::after {
    inset: auto 4px 4px auto;
  }

  .detail-hero h1 {
    font-size: clamp(3.6rem, 16vw, 5.5rem);
    white-space: normal;
  }

  .detail-illustration {
    width: 100%;
  }

  .detail-body-grid {
    gap: 55px;
  }

  .detail-cards article {
    grid-template-columns: 28px 1fr;
    gap: 15px;
  }

}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
