:root {
  --ink: #202521;
  --forest: #31473a;
  --forest-deep: #223229;
  --copper: #b96335;
  --copper-dark: #914522;
  --copper-deep: #743316;
  --sand: #d7c3a1;
  --cream: #f4f0e7;
  --paper: #fffdf8;
  --line: #cdc6b8;
  --muted: #666a63;
  --shadow: 0 22px 60px rgba(32, 37, 33, 0.12);
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 9rem;
}

body {
  margin: 0;
  min-width: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
}

body::before {
  position: fixed;
  z-index: -2;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(49, 71, 58, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(49, 71, 58, 0.025) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

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

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--copper-dark);
}

button,
input,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid #e19a65;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.5rem;
  left: 0.5rem;
  padding: 0.7rem 1rem;
  color: var(--paper);
  background: var(--ink);
  transform: translateY(-160%);
}

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

.container {
  width: min(calc(100% - 2rem), var(--max));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 2rem), 820px);
  margin-inline: auto;
}

.preview-bar {
  color: var(--paper);
  background: var(--forest-deep);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.preview-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 2.3rem;
  gap: 1rem;
}

.preview-label {
  font-weight: 800;
}

.preview-note {
  color: #d7dfd9;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(32, 37, 33, 0.12);
  background: rgba(255, 253, 248, 0.96);
  backdrop-filter: blur(15px);
}

.utility {
  border-bottom: 1px solid var(--line);
  color: var(--forest-deep);
  background: #e8dfcf;
  font-size: 0.82rem;
  font-weight: 700;
}

.utility-inner {
  display: flex;
  justify-content: flex-end;
  min-height: 2.2rem;
  gap: 1.5rem;
  align-items: center;
}

.utility a {
  text-decoration: none;
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 5.25rem;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 0.65rem;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.brand-tru {
  position: relative;
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  border: 2px solid var(--copper);
  color: var(--forest-deep);
}

.brand-tru::before,
.brand-tru::after {
  position: absolute;
  width: 1rem;
  height: 1rem;
  content: "";
}

.brand-tru::before {
  top: 0.48rem;
  left: 0.48rem;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
}

.brand-tru::after {
  right: 0.48rem;
  bottom: 0.48rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
}

.brand:hover {
  color: var(--ink);
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(0.8rem, 2vw, 1.65rem);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav a {
  position: relative;
  padding-block: 0.55rem;
  text-decoration: none;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0.15rem;
  left: 0;
  height: 2px;
  content: "";
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

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

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

.mobile-nav summary {
  min-width: 8.6rem;
  padding: 0.72rem 2.35rem 0.72rem 0.9rem;
  border: 1px solid var(--forest);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  list-style: none;
  text-transform: uppercase;
}

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

.mobile-nav summary::after {
  position: absolute;
  top: 0.9rem;
  right: 0.85rem;
  width: 0.5rem;
  height: 0.5rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: rotate(45deg);
}

.mobile-nav[open] summary::after {
  top: 1.1rem;
  transform: rotate(225deg);
}

.mobile-links {
  position: absolute;
  top: calc(100% + 0.65rem);
  right: 0;
  width: min(18rem, calc(100vw - 2rem));
  padding: 0.5rem;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.mobile-links a {
  display: block;
  padding: 0.65rem 0.7rem;
  border-bottom: 1px solid #e5dfd4;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
}

.mobile-links a:last-child {
  border-bottom: 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1.15rem;
  color: var(--copper-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 2rem;
  height: 2px;
  content: "";
  background: var(--copper);
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.08;
  text-wrap: balance;
}

h1 {
  max-width: 13ch;
  margin-bottom: 1.25rem;
  font-size: clamp(2.85rem, 7vw, 6.4rem);
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4.5vw, 4.15rem);
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 0.65rem;
  font-size: clamp(1.25rem, 2.2vw, 1.8rem);
  letter-spacing: -0.015em;
}

p {
  margin-top: 0;
}

.lead {
  max-width: 40rem;
  margin-bottom: 1.7rem;
  color: #484d47;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.7;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.2rem;
  border: 1px solid var(--copper-dark);
  color: var(--paper);
  background: var(--copper-dark);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.button:hover {
  color: var(--paper);
  background: var(--copper-deep);
  transform: translateY(-2px);
}

.button-outline {
  border-color: var(--forest);
  color: var(--forest-deep);
  background: transparent;
}

.button-outline:hover {
  color: var(--paper);
  background: var(--forest);
}

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

.button-light:hover {
  color: var(--forest-deep);
  background: var(--paper);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--copper-dark);
  font-weight: 900;
  text-decoration: none;
}

.text-link::after {
  content: "→";
  font-size: 1.2em;
  transition: transform 160ms ease;
}

.text-link:hover::after {
  transform: translateX(0.25rem);
}

.hero {
  position: relative;
  padding: clamp(3.5rem, 8vw, 7.5rem) 0 clamp(4rem, 8vw, 7rem);
  background:
    radial-gradient(circle at 70% 20%, rgba(215, 195, 161, 0.35), transparent 27rem),
    var(--paper);
  overflow: hidden;
}

.hero::after {
  position: absolute;
  right: -5rem;
  bottom: -8rem;
  width: 26rem;
  height: 26rem;
  border: 1px solid rgba(185, 99, 53, 0.2);
  content: "";
  transform: rotate(12deg);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(20rem, 0.82fr);
  align-items: center;
  gap: clamp(2.5rem, 7vw, 7rem);
}

.hero-copy {
  min-width: 0;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  gap: 1rem;
}

.hero-proof span {
  color: var(--muted);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1.45;
  text-transform: uppercase;
}

.plan-frame {
  position: relative;
  padding: clamp(1.1rem, 3vw, 2.2rem);
  border: 1px solid var(--forest);
  background: #e6dccb;
  box-shadow: var(--shadow);
}

.plan-frame::before,
.plan-frame::after {
  position: absolute;
  width: 4rem;
  height: 4rem;
  content: "";
  pointer-events: none;
}

.plan-frame::before {
  top: -0.6rem;
  left: -0.6rem;
  border-top: 4px solid var(--copper);
  border-left: 4px solid var(--copper);
}

.plan-frame::after {
  right: -0.6rem;
  bottom: -0.6rem;
  border-right: 4px solid var(--copper);
  border-bottom: 4px solid var(--copper);
}

.plan-caption {
  display: flex;
  justify-content: space-between;
  margin-top: 0.8rem;
  color: var(--forest-deep);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.section {
  padding: clamp(4rem, 9vw, 8rem) 0;
}

.section-paper {
  background: var(--paper);
}

.section-dark {
  color: var(--paper);
  background: var(--forest-deep);
}

.section-dark .eyebrow {
  color: #e9a678;
}

.section-dark .lead,
.section-dark .section-intro,
.section-dark p {
  color: #d5ddd7;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(17rem, 0.55fr);
  align-items: end;
  margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
  gap: clamp(2rem, 7vw, 7rem);
}

.section-heading h2,
.section-heading p {
  margin-bottom: 0;
}

.section-intro {
  color: var(--muted);
  font-size: 1.05rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  position: relative;
  min-height: 24rem;
  padding: 1.5rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.55);
  transition: background 180ms ease, transform 180ms ease;
}

.service-card:hover {
  z-index: 2;
  background: var(--paper);
  box-shadow: var(--shadow);
  transform: translateY(-0.4rem);
}

.card-number {
  display: block;
  margin-bottom: 4rem;
  color: var(--copper-dark);
  font-family: var(--serif);
  font-size: 0.9rem;
  font-style: italic;
}

.service-card p {
  color: var(--muted);
}

.service-card .text-link {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  left: 1.5rem;
}

.approach-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr);
  gap: clamp(3rem, 10vw, 9rem);
}

.method-stack {
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.method-row {
  display: grid;
  grid-template-columns: 4rem minmax(0, 1fr);
  padding: 1.6rem 1.4rem;
  background: var(--forest-deep);
  gap: 1rem;
}

.method-row strong {
  color: #e9a678;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-style: italic;
}

.method-row p {
  margin-bottom: 0;
}

.gallery-band {
  position: relative;
  background: #e5d9c4;
  overflow: hidden;
}

.gallery-band::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, transparent 49.7%, rgba(49, 71, 58, 0.08) 50%, transparent 50.3%),
    linear-gradient(transparent 49.7%, rgba(49, 71, 58, 0.08) 50%, transparent 50.3%);
  background-size: 68px 68px;
}

.gallery-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(22rem, 1fr);
  align-items: center;
  gap: clamp(3rem, 9vw, 8rem);
}

.material-board {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  grid-template-rows: 15rem 9rem;
  min-height: 25rem;
  padding: 0.7rem;
  border: 1px solid var(--forest);
  background: var(--paper);
  box-shadow: var(--shadow);
  gap: 0.7rem;
  transform: rotate(1.3deg);
}

.sample {
  position: relative;
  min-width: 0;
  overflow: hidden;
}

.sample::after {
  position: absolute;
  right: 0.7rem;
  bottom: 0.45rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.09em;
}

.sample-wood {
  grid-row: 1 / 3;
  background:
    repeating-linear-gradient(87deg, transparent 0 18px, rgba(37, 51, 42, 0.16) 19px 20px),
    linear-gradient(130deg, #a75d34, #d49866 55%, #865031);
}

.sample-wood::after {
  content: "CARPENTRY";
}

.sample-tile {
  background:
    linear-gradient(90deg, transparent 47%, #efe9dc 48% 52%, transparent 53%),
    linear-gradient(transparent 47%, #efe9dc 48% 52%, transparent 53%),
    #728075;
  background-size: 64px 64px;
}

.sample-tile::after {
  content: "ROOMS";
}

.sample-stone {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.12) 25%, transparent 25%) 0 0 / 34px 34px,
    linear-gradient(315deg, rgba(0,0,0,0.1) 25%, transparent 25%) 0 0 / 34px 34px,
    #4e5c52;
}

.sample-stone::after {
  content: "REPAIR";
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: clamp(3rem, 9vw, 8rem);
}

.timeline {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline::before {
  position: absolute;
  top: 0.8rem;
  bottom: 0.8rem;
  left: 3.8rem;
  width: 1px;
  content: "";
  background: var(--line);
}

.timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 5rem minmax(0, 1fr);
  padding-bottom: 2.3rem;
  gap: 1.5rem;
}

.timeline li:last-child {
  padding-bottom: 0;
}

.timeline time {
  position: relative;
  z-index: 1;
  display: grid;
  width: 4.7rem;
  height: 2rem;
  place-items: center;
  border: 1px solid var(--copper);
  color: var(--copper-dark);
  background: var(--cream);
  font-weight: 900;
}

.timeline h3 {
  margin-bottom: 0.35rem;
}

.timeline p {
  margin-bottom: 0;
  color: var(--muted);
}

.county-panel {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  align-items: stretch;
  min-height: 24rem;
  border: 1px solid var(--line);
  background: var(--paper);
}

.county-graphic {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 21rem;
  background: var(--forest);
  overflow: hidden;
}

.county-graphic::before,
.county-graphic::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.22);
  transform: rotate(35deg);
}

.county-graphic::before {
  width: 16rem;
  height: 16rem;
}

.county-graphic::after {
  width: 11rem;
  height: 11rem;
}

.county-compass {
  position: relative;
  z-index: 1;
  display: grid;
  width: 8rem;
  height: 8rem;
  place-items: center;
  border: 1px solid #e8a16f;
  border-radius: 50%;
  color: var(--paper);
  font-family: var(--serif);
  font-size: 2.7rem;
  font-style: italic;
}

.county-list {
  display: grid;
  align-content: center;
  padding: clamp(2rem, 5vw, 4rem);
}

.county-list ul {
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.county-list li {
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 700;
}

.county-list li:last-child {
  border-bottom: 0;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 1.5rem 3.5rem 1.5rem 0;
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.2vw, 1.65rem);
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 1.15rem;
  right: 0;
  width: 2.1rem;
  height: 2.1rem;
  border: 1px solid var(--line);
  content: "+";
  color: var(--copper-dark);
  font-family: var(--sans);
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.95rem;
  text-align: center;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 48rem;
  padding: 0 3.5rem 1.6rem 0;
  color: var(--muted);
}

.cta-band {
  padding: clamp(3rem, 7vw, 5.5rem) 0;
  color: var(--paper);
  background: var(--copper-dark);
}

.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 2rem;
}

.cta-grid h2 {
  max-width: 15ch;
  margin-bottom: 0.5rem;
  font-size: clamp(2rem, 4vw, 3.7rem);
}

.cta-grid p {
  margin-bottom: 0;
  color: #f0d8ca;
}

.page-hero {
  position: relative;
  padding: clamp(4rem, 9vw, 8rem) 0 clamp(3.5rem, 7vw, 6rem);
  color: var(--paper);
  background: var(--forest-deep);
  overflow: hidden;
}

.page-hero::after {
  position: absolute;
  top: -9rem;
  right: -5rem;
  width: 32rem;
  height: 32rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  content: "";
  transform: rotate(35deg);
}

.page-hero .eyebrow {
  color: #e9a678;
}

.page-hero h1 {
  max-width: 15ch;
  margin-bottom: 1rem;
  font-size: clamp(3rem, 7.5vw, 6.8rem);
}

.page-hero .lead {
  color: #d5ddd7;
}

.page-index {
  color: #e9a678;
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
}

.service-detail-list {
  display: grid;
  gap: 1rem;
}

.service-detail {
  display: grid;
  grid-template-columns: 5rem minmax(0, 0.85fr) minmax(16rem, 1fr);
  align-items: start;
  padding: clamp(2rem, 5vw, 4rem) 0;
  border-top: 1px solid var(--line);
  gap: clamp(1.5rem, 5vw, 4.5rem);
}

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

.service-detail .page-index {
  padding-top: 0.35rem;
  color: var(--copper-dark);
}

.service-detail p {
  color: var(--muted);
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  gap: 0.55rem;
  list-style: none;
}

.chip-list li {
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--line);
  color: #494f48;
  background: var(--paper);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.about-profile {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(3rem, 9vw, 8rem);
}

.monogram-panel {
  position: sticky;
  top: 10rem;
  min-height: 32rem;
  padding: 2rem;
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.08) 25%, transparent 25%) 0 0 / 52px 52px,
    var(--forest);
}

.monogram-panel strong {
  display: block;
  margin-top: 8rem;
  font-family: var(--serif);
  font-size: clamp(5rem, 15vw, 9rem);
  font-style: italic;
  line-height: 0.7;
}

.monogram-panel span {
  display: block;
  max-width: 16rem;
  margin-top: 2rem;
  color: #d8dfda;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.profile-copy > p {
  color: var(--muted);
  font-size: 1.05rem;
}

.profile-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 2.5rem;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.profile-fact {
  padding: 1.25rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.profile-fact strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--serif);
  font-size: 1.35rem;
}

.profile-fact span {
  color: var(--muted);
  font-size: 0.85rem;
}

.gallery-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(3rem, 9vw, 8rem);
}

.project-index {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.project-tile {
  position: relative;
  display: grid;
  min-height: 16rem;
  align-content: end;
  padding: 1.25rem;
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--paper);
  background: var(--forest);
  overflow: hidden;
}

.project-tile:nth-child(2) {
  background: var(--copper-dark);
}

.project-tile:nth-child(3) {
  background: #74654e;
}

.project-tile:nth-child(4) {
  background: #39413b;
}

.project-tile::before {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 5rem;
  height: 5rem;
  border: 1px solid rgba(255,255,255,0.32);
  content: "";
  transform: rotate(45deg);
}

.project-tile span {
  position: relative;
  z-index: 1;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 700;
}

.rights-note {
  margin-top: 1.5rem;
  padding: 1rem 1.2rem;
  border-left: 4px solid var(--copper);
  color: var(--muted);
  background: var(--paper);
  font-size: 0.9rem;
}

.testimonial-gateway {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
  align-items: stretch;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.quote-art {
  display: grid;
  min-height: 28rem;
  place-items: center;
  color: #efc1a3;
  background: var(--copper-dark);
  font-family: var(--serif);
  font-size: 15rem;
  line-height: 0.5;
}

.gateway-copy {
  display: grid;
  align-content: center;
  padding: clamp(2rem, 7vw, 5.5rem);
}

.gateway-copy p {
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(20rem, 1fr);
  align-items: start;
  gap: clamp(3rem, 9vw, 8rem);
}

.contact-stack {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.contact-item {
  padding: 1.25rem;
  background: var(--paper);
}

.contact-item span {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-item a,
.contact-item address {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-style: normal;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.concept-form {
  padding: clamp(1.5rem, 5vw, 3.2rem);
  color: var(--paper);
  background: var(--forest-deep);
  box-shadow: var(--shadow);
}

.concept-form h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.form-note {
  margin-bottom: 2rem;
  padding: 0.8rem 1rem;
  border-left: 3px solid #e9a678;
  color: #d5ddd7;
  background: rgba(255,255,255,0.06);
  font-size: 0.86rem;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.4rem;
}

.field-wide {
  grid-column: 1 / -1;
}

.field label {
  color: #d5ddd7;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field input,
.field textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid #63756a;
  border-radius: 0;
  color: var(--paper);
  background: #2b3d32;
}

.field input {
  min-height: 3rem;
  padding: 0.6rem 0.75rem;
}

.field textarea {
  min-height: 8rem;
  padding: 0.75rem;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #aebbb3;
}

.preview-button {
  margin-top: 1.2rem;
  border: 1px solid #829087;
  color: #c7d0ca;
  background: transparent;
  cursor: not-allowed;
  opacity: 0.78;
}

.form-direct {
  margin: 1rem 0 0;
  color: #d5ddd7;
  font-size: 0.85rem;
}

.form-direct a {
  color: #f0aa79;
  font-weight: 800;
}

.site-footer {
  padding: 4rem 0 1.5rem;
  color: #e4e9e6;
  background: #18231d;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(12rem, 0.55fr) minmax(15rem, 0.8fr);
  padding-bottom: 3rem;
  gap: clamp(2rem, 7vw, 6rem);
}

.footer-brand .brand {
  margin-bottom: 1.2rem;
  color: var(--paper);
}

.footer-brand .brand-tru {
  color: var(--paper);
}

.footer-brand p {
  max-width: 25rem;
  color: #aebbb3;
}

.footer-title {
  margin-bottom: 1rem;
  color: #e9a678;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.45rem;
}

.footer-links a {
  text-decoration: none;
}

.footer-contact address {
  margin-bottom: 1rem;
  color: #b8c2bc;
  font-style: normal;
}

.footer-contact a {
  display: block;
  margin-bottom: 0.35rem;
  overflow-wrap: anywhere;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,0.16);
  color: #93a098;
  font-size: 0.75rem;
  gap: 1rem;
}

.footer-bottom strong {
  color: var(--paper);
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .mobile-nav {
    display: block;
  }

  .hero-grid,
  .gallery-grid,
  .approach-grid,
  .story-grid,
  .about-profile,
  .gallery-intro-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 4rem;
  }

  .hero-copy {
    max-width: 48rem;
  }

  .plan-frame {
    width: min(100%, 38rem);
    margin-inline: auto;
  }

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

  .service-card {
    min-height: 20rem;
  }

  .material-board {
    width: min(100%, 40rem);
  }

  .monogram-panel {
    position: relative;
    top: auto;
    min-height: 24rem;
  }

  .monogram-panel strong {
    margin-top: 4rem;
  }

  .contact-grid {
    gap: 3rem;
  }
}

@media (max-width: 760px) {
  .preview-note {
    display: none;
  }

  .preview-inner {
    justify-content: center;
  }

  .utility-inner {
    justify-content: center;
    gap: 1rem;
  }

  .utility-email {
    display: none;
  }

  .header-main {
    min-height: 4.6rem;
  }

  .brand {
    font-size: 1.05rem;
  }

  .brand-tru {
    width: 2.4rem;
    height: 2.4rem;
    font-size: 0.78rem;
  }

  .section-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 1rem;
  }

  .hero-proof {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .service-detail {
    grid-template-columns: 3.5rem minmax(0, 1fr);
  }

  .service-detail .chip-list {
    grid-column: 2;
  }

  .county-panel,
  .testimonial-gateway {
    grid-template-columns: 1fr;
  }

  .county-graphic {
    min-height: 15rem;
  }

  .quote-art {
    min-height: 14rem;
    font-size: 10rem;
  }

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

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .container,
  .narrow {
    width: min(calc(100% - 1.25rem), var(--max));
  }

  html {
    scroll-padding-top: 7.5rem;
  }

  h1 {
    font-size: clamp(2.65rem, 14vw, 4.2rem);
  }

  h2 {
    font-size: clamp(2rem, 11vw, 3.2rem);
  }

  .header-main {
    gap: 0.35rem;
  }

  .brand {
    gap: 0.4rem;
    font-size: 0.95rem;
  }

  .brand-name {
    max-width: 6.5rem;
    line-height: 1.05;
  }

  .mobile-nav summary {
    min-width: 6.8rem;
    padding-left: 0.7rem;
    font-size: 0.7rem;
  }

  .button-row,
  .button {
    width: 100%;
  }

  .service-grid,
  .profile-facts,
  .project-index,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 18rem;
  }

  .material-board {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 13rem 8rem;
    min-height: 22rem;
  }

  .service-detail {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .service-detail .chip-list {
    grid-column: auto;
    margin-top: 0.5rem;
  }

  .timeline::before {
    left: 2.55rem;
  }

  .timeline li {
    grid-template-columns: 3.5rem minmax(0, 1fr);
    gap: 1rem;
  }

  .timeline time {
    width: 3.4rem;
    font-size: 0.75rem;
  }

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

  .footer-brand {
    grid-column: auto;
  }

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

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
