:root {
  --ink: #171816;
  --ink-soft: #242521;
  --paper: #f2f1ed;
  --paper-deep: #e7e5df;
  --oak: #c99f67;
  --oak-light: #e2c49c;
  --white: #fbfbf8;
  --muted: #a8a9a3;
  --line-dark: rgba(255, 255, 255, 0.16);
  --line-light: rgba(23, 24, 22, 0.16);
  --max: 1440px;
  --side: clamp(1.25rem, 4.5vw, 5.25rem);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.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;
  left: 1rem;
  top: -5rem;
  z-index: 1000;
  padding: .75rem 1rem;
  background: var(--oak);
  color: var(--ink);
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  min-height: 78px;
  padding: 0 var(--side);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  background: linear-gradient(to bottom, rgba(12, 13, 11, .8), transparent);
  transition: background .25s ease, min-height .25s ease, box-shadow .25s ease;
}
.site-header.scrolled {
  min-height: 68px;
  background: rgba(23, 24, 22, .96);
  box-shadow: 0 1px 0 var(--line-dark);
  backdrop-filter: blur(10px);
}
.brand { display: inline-flex; align-items: center; gap: .75rem; font-weight: 700; letter-spacing: .16em; }
.brand-mark {
  width: 2.2rem;
  height: 2.2rem;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  font-family: Georgia, serif;
  font-size: 1.05rem;
  font-weight: 400;
}
.brand-name { font-size: .9rem; }
.brand-name span { color: var(--oak-light); }
.main-nav { display: flex; align-items: center; gap: clamp(1.4rem, 2.5vw, 2.8rem); font-size: .9rem; }
.main-nav a { position: relative; }
.main-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -.35rem;
  height: 1px;
  background: var(--oak);
  transition: right .2s ease;
}
.main-nav a:not(.nav-cta):hover::after,
.main-nav a:not(.nav-cta):focus-visible::after { right: 0; }
.nav-cta { border: 1px solid rgba(255,255,255,.55); padding: .7rem 1rem; }
.nav-cta:hover, .nav-cta:focus-visible { background: var(--white); color: var(--ink); }
.menu-toggle { display: none; }

.hero {
  min-height: 760px;
  height: min(900px, 100svh);
  display: grid;
  grid-template-columns: 56% 44%;
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
}
.hero-copy {
  padding: clamp(8.5rem, 13vh, 11.5rem) var(--side) clamp(2.5rem, 6vh, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
.eyebrow {
  margin: 0 0 1.35rem;
  color: var(--oak-light);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.eyebrow.dark { color: #7c5a30; }
h1, h2, blockquote {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: .98;
}
h1 { max-width: 820px; font-size: clamp(3.3rem, 6vw, 6.8rem); }
h1 em { color: var(--oak-light); font-weight: 400; }
.hero-lead {
  max-width: 610px;
  margin: clamp(1.5rem, 3vh, 2.5rem) 0 0;
  color: #d3d3ce;
  font-size: clamp(1rem, 1.25vw, 1.2rem);
}
.hero-actions { margin-top: 2.4rem; display: flex; align-items: center; gap: 1.7rem; flex-wrap: wrap; }
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .8rem 1.35rem;
  border: 1px solid currentColor;
  font-weight: 700;
  font-size: .9rem;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-light { background: var(--white); color: var(--ink); border-color: var(--white); }
.button-light:hover, .button-light:focus-visible { background: var(--oak); border-color: var(--oak); }
.text-link { font-size: .95rem; border-bottom: 1px solid rgba(255,255,255,.5); padding-bottom: .2rem; }
.text-link span { margin-left: .45rem; color: var(--oak-light); }
.hero-facts {
  list-style: none;
  padding: 1.5rem 0 0;
  margin: auto 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
}
.hero-facts li { display: grid; gap: .2rem; padding-right: 1rem; }
.hero-facts strong { font-size: .88rem; }
.hero-facts span { color: var(--muted); font-size: .76rem; }
.hero-image { position: relative; min-width: 0; margin: 0; background: #88745e; }
.hero-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(23,24,22,.22), transparent 32%); pointer-events: none; }
.hero-image img { width: 100%; height: 100%; object-fit: cover; object-position: 56% center; }
.hero-image figcaption {
  position: absolute;
  z-index: 1;
  right: 1.4rem;
  bottom: 1.4rem;
  color: var(--white);
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.section-pad { padding: clamp(5rem, 10vw, 9rem) var(--side); }
.intro {
  max-width: var(--max);
  margin: auto;
  display: grid;
  grid-template-columns: 8% minmax(320px, 1fr) minmax(320px, .8fr);
  gap: clamp(2rem, 4vw, 5rem);
  align-items: start;
}
.section-number { color: #a5a49e; font-family: Georgia, serif; font-size: 1rem; }
h2 { font-size: clamp(2.8rem, 5.2vw, 5.4rem); }
.intro-copy { max-width: 570px; padding-top: 2rem; font-size: 1.06rem; }
.intro-copy p { margin: 0 0 1.4rem; }

.feature-image { position: relative; min-height: min(78vw, 880px); background: var(--ink-soft); overflow: hidden; }
.feature-image > img { width: 100%; height: min(78vw, 880px); object-fit: cover; object-position: center 58%; }
.feature-note {
  position: absolute;
  right: var(--side);
  bottom: 0;
  width: min(430px, calc(100% - 2.5rem));
  padding: 1.8rem 2rem;
  background: var(--oak);
  color: var(--ink);
}
.feature-note span { font-size: .75rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.feature-note p { margin: .8rem 0 0; font-family: Georgia, serif; font-size: 1.3rem; line-height: 1.35; }

.offer { max-width: var(--max); margin: auto; }
.section-heading { display: grid; grid-template-columns: 1.25fr .65fr; gap: 4rem; align-items: end; }
.section-heading > p { max-width: 450px; margin: 0 0 .4rem; font-size: 1.05rem; }
.offer-grid { margin-top: clamp(3rem, 7vw, 6rem); border-top: 1px solid var(--line-light); }
.offer-card {
  min-height: 185px;
  display: grid;
  grid-template-columns: 9% 28% 1fr;
  gap: 2rem;
  align-items: center;
  border-bottom: 1px solid var(--line-light);
  transition: padding .25s ease, background .25s ease;
}
.offer-card:hover { padding: 0 1.5rem; background: var(--paper-deep); }
.offer-index { color: #8b8982; font-family: Georgia, serif; }
.offer-card h3 { margin: 0; font-family: Georgia, serif; font-size: clamp(1.7rem, 2.8vw, 2.8rem); font-weight: 400; }
.offer-card p { max-width: 560px; margin: 0; }

.portfolio { background: var(--ink); color: var(--white); }
.portfolio-head { max-width: var(--max); margin: auto; display: flex; justify-content: space-between; align-items: end; gap: 2rem; }
.portfolio-head > p { margin: 0 0 .5rem; color: var(--muted); }
.gallery { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); grid-auto-rows: min(32vw, 440px); }
.gallery-item {
  position: relative;
  padding: 0;
  border: 0;
  overflow: hidden;
  background: #3a3b36;
  color: white;
  cursor: zoom-in;
}
.gallery-wide { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s cubic-bezier(.2,.7,.2,1), filter .3s ease; }
.gallery-item:nth-child(2) img { object-position: 60% center; }
.gallery-item::after { content: ""; position: absolute; inset: 50% 0 0; background: linear-gradient(transparent, rgba(0,0,0,.6)); }
.gallery-item span { position: absolute; z-index: 2; left: 1.4rem; bottom: 1.2rem; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; }
.gallery-item:hover img, .gallery-item:focus-visible img { transform: scale(1.035); filter: brightness(.9); }
.gallery-item:focus-visible { outline: 3px solid var(--oak); outline-offset: -3px; }

.instagram-section {
  display: grid;
  grid-template-columns: minmax(280px, .7fr) minmax(420px, 1fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
  background: var(--paper-deep);
}
.instagram-copy { max-width: 540px; }
.instagram-copy h2 { font-size: clamp(2.8rem, 4.8vw, 5rem); }
.instagram-copy > p:not(.eyebrow) { max-width: 470px; margin: 2rem 0 0; font-size: 1.05rem; }
.instagram-button {
  margin-top: 2rem;
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
  gap: .55rem;
}
.instagram-button span { color: var(--oak-light); font-size: 1.1rem; }
.instagram-button:hover,
.instagram-button:focus-visible { background: transparent; color: var(--ink); }
.instagram-embed-shell {
  min-height: 570px;
  padding: clamp(1rem, 3vw, 2.5rem);
  display: grid;
  place-items: center;
  background: var(--ink-soft);
  box-shadow: 1.25rem 1.25rem 0 var(--oak);
}
.instagram-embed-shell .instagram-media {
  width: min(100%, 540px) !important;
  min-width: 0 !important;
  margin: 0 !important;
  color: var(--white);
}
.instagram-embed-shell .instagram-media > a {
  display: grid;
  min-height: 480px;
  padding: 2rem;
  place-items: center;
  border: 1px solid var(--line-dark);
  color: var(--white);
  text-align: center;
}

.process { max-width: var(--max); margin: auto; display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(3rem, 9vw, 9rem); }
.process-intro > p:last-child { max-width: 410px; margin: 2rem 0 0; }
.process-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line-light); }
.process-list li { display: grid; grid-template-columns: 4rem 1fr; gap: 1rem; padding: 1.6rem 0; border-bottom: 1px solid var(--line-light); }
.process-list li > span { color: #8b8982; font-family: Georgia, serif; }
.process-list h3 { margin: 0 0 .35rem; font-family: Georgia, serif; font-weight: 400; font-size: 1.55rem; }
.process-list p { margin: 0; color: #555650; }

.manifesto { display: grid; grid-template-columns: 1.15fr .85fr; min-height: 660px; background: var(--ink-soft); color: var(--white); }
.manifesto-text { padding: clamp(5rem, 9vw, 9rem) var(--side); display: flex; flex-direction: column; justify-content: center; }
.manifesto blockquote { max-width: 830px; font-size: clamp(2.6rem, 5vw, 5.2rem); }
.signature { margin: 2.5rem 0 0; color: var(--oak-light); font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; }
.manifesto > img { width: 100%; height: 100%; max-height: 820px; object-fit: cover; object-position: center; }

.contact { display: grid; grid-template-columns: 1.1fr .75fr; gap: clamp(3rem, 9vw, 10rem); background: var(--oak); }
.contact .eyebrow { color: #5b3d1b; }
.contact-copy { max-width: 560px; padding-top: 1rem; font-size: 1.08rem; }
.contact-copy > p:first-child { margin-top: 0; }
.contact-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 1.2rem 1.8rem; margin-top: 2.2rem; }
.button-accent { background: var(--ink); border-color: var(--ink); color: var(--white); }
.button-pending { cursor: default; opacity: .9; }
.button-pending:hover { transform: none; }
.contact-email { border-bottom: 1px solid var(--ink); font-weight: 700; padding-bottom: .15rem; }
.service-area { margin-top: 2rem; font-size: .86rem; opacity: .75; }

.footer {
  min-height: 150px;
  padding: 2.5rem var(--side);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  background: var(--ink);
  color: var(--white);
  font-size: .8rem;
}
.footer p { margin: 0; color: var(--muted); }
.footer p:last-child { text-align: right; }
.brand-footer .brand-mark { width: 2rem; height: 2rem; }

.lightbox {
  width: min(1100px, calc(100vw - 2rem));
  height: min(90vh, 900px);
  padding: 0;
  border: 0;
  background: #0d0e0c;
  overflow: hidden;
}
.lightbox::backdrop { background: rgba(0,0,0,.86); backdrop-filter: blur(5px); }
.lightbox img { width: 100%; height: 100%; object-fit: contain; }
.lightbox-close {
  position: absolute;
  z-index: 3;
  top: .8rem;
  right: .8rem;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 50%;
  background: rgba(0,0,0,.6);
  color: white;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 980px) {
  .site-header { min-height: 68px; }
  .menu-toggle {
    width: 44px;
    height: 44px;
    display: grid;
    place-content: center;
    gap: 7px;
    border: 0;
    background: transparent;
    color: white;
    cursor: pointer;
  }
  .menu-toggle > span:not(.sr-only) { display: block; width: 25px; height: 1px; background: currentColor; transition: transform .2s ease; }
  .menu-toggle[aria-expanded="true"] > span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }
  .main-nav {
    position: fixed;
    inset: 68px 0 0;
    padding: 3rem var(--side);
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    background: var(--ink);
    font-family: Georgia, serif;
    font-size: 2.1rem;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 1.1rem 0; border-bottom: 1px solid var(--line-dark); }
  .nav-cta { margin-top: 1.5rem; padding: 1rem !important; text-align: center; font-family: Inter, sans-serif; font-size: 1rem; }
  .hero { min-height: 850px; height: auto; grid-template-columns: 1fr; }
  .hero-copy { min-height: 670px; padding-top: 8rem; }
  .hero-image { height: 65vw; min-height: 480px; }
  .hero-image img { object-position: center 55%; }
  .intro { grid-template-columns: 3rem 1fr; }
  .intro-copy { grid-column: 2; padding-top: 0; }
  .section-heading { grid-template-columns: 1fr; gap: 2rem; }
  .offer-card { grid-template-columns: 4rem 1fr; gap: .75rem 1rem; padding: 1.6rem 0; }
  .offer-card:hover { padding: 1.6rem 1rem; }
  .offer-card p { grid-column: 2; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 56vw; }
  .instagram-section { grid-template-columns: 1fr; }
  .instagram-copy { max-width: 700px; }
  .instagram-embed-shell { width: min(100%, 680px); justify-self: center; }
  .process { grid-template-columns: 1fr; }
  .manifesto { grid-template-columns: 1fr; }
  .manifesto > img { height: 70vw; min-height: 500px; }
  .contact { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .brand-name { font-size: .8rem; }
  .hero-copy { min-height: 680px; }
  h1 { font-size: clamp(3.05rem, 15vw, 4.4rem); }
  h2 { font-size: clamp(2.65rem, 13vw, 4rem); }
  .hero-lead { font-size: 1rem; }
  .hero-facts { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .hero-facts li:last-child { display: none; }
  .hero-image { height: 92vw; min-height: 430px; }
  .intro { grid-template-columns: 1fr; gap: 1.4rem; }
  .section-number { display: none; }
  .intro-copy { grid-column: auto; }
  .feature-image, .feature-image > img { min-height: 620px; height: 115vw; }
  .feature-image > img { object-position: 60% center; }
  .feature-note { right: 0; }
  .portfolio-head { align-items: start; flex-direction: column; }
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 125vw; }
  .gallery-wide { grid-column: auto; }
  .gallery-item:first-child { grid-row: auto; height: auto; }
  .instagram-embed-shell { min-height: 520px; padding: .75rem; box-shadow: .65rem .65rem 0 var(--oak); }
  .process-list li { grid-template-columns: 3rem 1fr; }
  .manifesto { min-height: 0; }
  .manifesto > img { min-height: 520px; height: 120vw; }
  .contact-actions { align-items: flex-start; flex-direction: column; }
  .footer { grid-template-columns: 1fr; gap: 1.1rem; }
  .footer p:last-child { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* Real photographs and clear service information carry the trust story. */
.hero-image img { object-position: center; }
.project-pair { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; padding: 0 var(--side) 24px; }
.project-pair .gallery-item { aspect-ratio: 4/3; min-height: 0; }
.project-pair .gallery-item img { width: 100%; height: 100%; }
.project-pair .project-drawing { background: #efefeb; }
.project-pair .project-drawing img { object-fit: contain; }
.project-pair .project-drawing span { background: #171816; padding: .6rem .8rem; width: fit-content; max-width: calc(100% - 2rem); }
.project-story { padding-bottom: 4rem; }
@media(max-width:640px) {
  .project-pair { grid-template-columns: 1fr; }
  .project-pair .gallery-item { aspect-ratio: 4/3; }
  .project-pair:last-of-type .project-drawing { aspect-ratio: 3/4; }
}
section[id] { scroll-margin-top: 85px; }
.hero h1 { font-size: clamp(3rem, 5vw, 5.5rem); line-height: 1.03; }
.hero-facts { margin-top: 2.5rem; }
.gallery { gap: 12px; padding: 0 var(--side) 12px; grid-template-columns: repeat(3,minmax(0,1fr)); grid-auto-rows: clamp(260px,32vw,430px); }
.gallery-wide { grid-column: auto; }
.gallery-item span { font-size: .875rem; letter-spacing: .03em; right: 1rem; text-align: left; }
.gallery-new .gallery-item:nth-child(3), .gallery-new .gallery-item:nth-child(4) { grid-column: span 1; }
.workshop-heading { padding: 5rem var(--side) 2.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 3rem; align-items: end; }
.workshop-heading .eyebrow { grid-column: 1 / -1; margin: 0; }
.workshop-heading h2 { font-size: clamp(2.6rem,4vw,4rem); }
.workshop-heading > p:last-child { color: #d3d3ce; max-width: 540px; margin: 0; }
.gallery-workshop { padding-bottom: 4rem; }
.beauty-section { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; background: var(--paper); }
.beauty-copy { max-width: 590px; font-size: 1.06rem; }
.beauty-copy p:first-child { margin-top: 0; }
.beauty-project-photo { grid-column: 1 / -1; position: relative; min-height: clamp(300px, 42vw, 590px); padding: 0; border: 0; overflow: hidden; background: var(--ink-soft); color: var(--white); cursor: zoom-in; text-align: left; }
.beauty-project-photo img { width: 100%; height: clamp(300px, 42vw, 590px); object-fit: cover; object-position: center 58%; transition: transform .55s cubic-bezier(.2,.7,.2,1), filter .3s ease; }
.beauty-project-photo::after { content: ""; position: absolute; inset: 50% 0 0; background: linear-gradient(transparent, rgba(0,0,0,.64)); pointer-events: none; }
.beauty-project-photo span { position: absolute; z-index: 2; left: 1.4rem; right: 1rem; bottom: 1.2rem; font-size: .875rem; letter-spacing: .03em; }
.beauty-project-photo:hover img, .beauty-project-photo:focus-visible img { transform: scale(1.025); filter: brightness(.92); }
.beauty-project-photo:focus-visible { outline: 3px solid var(--oak); outline-offset: -3px; }
.offer-card { grid-template-columns: 7% 35% 1fr; }
.offer-card h3 { font-size: clamp(1.7rem,2.3vw,2.5rem); }
@media(max-width:980px) {
  .gallery { grid-template-columns: repeat(2,minmax(0,1fr)); grid-auto-rows: 440px; }
  .beauty-section, .workshop-heading { grid-template-columns: 1fr; }
  .offer-card { grid-template-columns: 3rem 1fr; }
}
@media(max-width:640px) {
  .gallery { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .gallery-item { min-height: 0; aspect-ratio: 3/4; }
  .gallery-item img { height: 100%; }
  .gallery-new .gallery-item:nth-child(3), .gallery-new .gallery-item:nth-child(4) { aspect-ratio: 16/10; }
  .hero h1 { font-size: clamp(2.7rem,12vw,4.2rem); }
  .beauty-section { gap: 2rem; }
}

/* Keep the desktop hero readable on shorter laptop screens. The facts row
   should follow the content instead of being pushed below the viewport. */
@media (min-width: 981px) {
  .hero { height: auto; min-height: min(900px, 100svh); }
  .hero-copy {
    justify-content: flex-start;
    padding-top: clamp(7rem, 10vh, 9.5rem);
    padding-bottom: 3.25rem;
  }
  .hero h1 { font-size: clamp(3.1rem, 4.6vw, 5.25rem); }
  .hero-lead { margin-top: clamp(1.25rem, 2.5vh, 2rem); }
  .hero-actions { margin-top: clamp(1.7rem, 3vh, 2.25rem); }
  .hero-facts { margin-top: clamp(2rem, 4vh, 3.25rem); }
}

@media (min-width: 981px) and (max-height: 850px) {
  .hero-copy { padding-top: 6.5rem; padding-bottom: 2.5rem; }
  .hero h1 { font-size: clamp(3rem, 4.2vw, 4.7rem); }
  .hero-lead { margin-top: 1.1rem; }
  .hero-actions { margin-top: 1.5rem; }
  .hero-facts { margin-top: 1.8rem; padding-top: 1.1rem; }
}

/* WoodArt wordmark and enquiry flow */
.brand {gap:.75rem;letter-spacing:normal;flex-shrink:0;}
.brand-symbol {width:3.2rem;height:3.2rem;color:var(--oak-light);}
.brand-lockup {display:flex;flex-direction:column;gap:.28rem;}
.brand-word {font-family:Georgia,serif;font-size:2rem;line-height:1;font-weight:400;letter-spacing:-.045em;}
.brand-word span {color:var(--oak-light);}
.brand-subtitle {font-size:.75rem;font-weight:400;letter-spacing:.15em;line-height:1.2;}
.contact {grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr);gap:clamp(2rem,6vw,6rem);align-items:start;}
.contact h2 {font-size:clamp(2.8rem,4.7vw,5rem);line-height:1.05;}
.contact-intro {max-width:29rem;margin-top:2rem;font-size:1.1rem;}
.contact-next {padding-left:1.4rem;max-width:28rem;margin:2rem 0;}
.contact-next li {padding:.65rem 0;border-bottom:1px solid #17181630;}
.contact-direct {display:inline-block;font-size:.95rem;text-decoration:underline;text-underline-offset:4px;}
.contact-details {display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:1rem;margin:1.8rem 0 1.2rem;max-width:32rem;}
.contact-detail-email {grid-column:1 / -1;}
.contact-detail {display:flex;flex-direction:column;gap:.25rem;padding:1rem 1.1rem;border:1px solid #17181645;background:#ffffff25;transition:background .2s ease,transform .2s ease;}
.contact-detail:hover,.contact-detail:focus-visible {background:#ffffff50;transform:translateY(-2px);}
.contact-detail span {font-size:.72rem;letter-spacing:.14em;text-transform:uppercase;opacity:.7;}
.contact-detail strong {font-size:1rem;overflow-wrap:anywhere;}
.quote-form {background:var(--white);padding:clamp(1.25rem,3vw,3rem);box-shadow:0 12px 36px #17181612;min-width:0;}
.quote-form h3 {font-family:Georgia,serif;font-weight:400;font-size:2rem;line-height:1.15;margin:0 0 .8rem;}
.form-lead {margin:0 0 1.6rem;color:#53554d;}
.form-grid {display:grid;grid-template-columns:1fr 1fr;gap:1rem;}
.quote-form label {display:block;font-size:.875rem;font-weight:600;margin-bottom:1rem;}
.quote-form input,.quote-form select,.quote-form textarea {display:block;width:100%;min-width:0;margin-top:.4rem;padding:.85rem;border:1px solid #9e9f96;border-radius:0;background:#fff;color:var(--ink);font:inherit;font-weight:400;font-size:1rem;}
.quote-form input[type="file"] {padding:.65rem;background:#f7f7f3;cursor:pointer;}
.quote-form input[type="file"]::file-selector-button {margin-right:.75rem;padding:.55rem .8rem;border:1px solid #77786f;background:var(--ink);color:var(--white);font:inherit;font-size:.9rem;cursor:pointer;}
.quote-form textarea {resize:vertical;}
.quote-form :is(input,select,textarea):focus-visible {outline:2px solid #7c5a30;outline-offset:2px;}
.optional {font-weight:400;color:#62645b;font-size:.875rem;}
.form-hint,.form-note {font-size:.875rem;color:#53554d;line-height:1.5;}
.quote-form button {cursor:pointer;}
.quote-form > .button {width:100%;margin:.5rem 0;}
.quote-result {margin-top:1.5rem;border-top:1px solid #9e9f96;padding-top:1.5rem;}
.quote-result h4 {font-size:1.25rem;margin:0;}
.quote-actions {display:flex;gap:.75rem;flex-wrap:wrap;}
.quote-actions .button {flex:1 1 12rem;font-size:.875rem;}
.quote-actions a {text-align:center;}
#quote-status {font-size:.875rem;}
@media(max-width:980px){.contact{grid-template-columns:1fr;}.contact-title{max-width:42rem;}}
@media(max-width:540px){.form-grid{grid-template-columns:1fr;gap:0;}.brand-word{font-size:1.8rem;}.brand-symbol{width:2.7rem;height:2.7rem;}}
.footer-contact {display:flex;flex-direction:column;gap:.3rem;text-align:center;}
.footer-contact a {color:var(--white);text-decoration:underline;text-decoration-color:#e2c49c80;text-underline-offset:3px;}
@media(max-width:640px){.contact-details{grid-template-columns:1fr;max-width:22rem;}.contact-detail-email{grid-column:auto;}.footer-contact{text-align:left;}}
