.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 50px;
  padding: 14px 22px;
  background: var(--brand-primary);
  color: var(--paper);
  font-size: 0.83rem;
  font-weight: 600;
  border: 1px solid var(--brand-primary);
  text-decoration: none;
  transition:
    background 0.16s,
    transform 0.16s;
}
.button:hover {
  background: #344d42;
  transform: translateY(-2px);
}
.button span,
.text-link span {
  font-size: 1.25rem;
  font-weight: 400;
}
.button-light {
  background: var(--brand-soft);
  border-color: var(--brand-soft);
  color: var(--brand-primary);
}
.button-light:hover {
  background: var(--paper);
}
.button-outline {
  background: transparent;
  color: var(--brand-primary);
  border-color: var(--brand-primary);
}
.button-outline:hover {
  background: var(--brand-soft);
}
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 44px;
  font-size: 0.87rem;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  border: 0;
  background: none;
  padding: 5px 0;
  text-align: left;
}
.text-link:hover {
  text-decoration-thickness: 2px;
}
.light-link {
  color: var(--paper);
}
.pane-mark {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 3px;
  width: 34px;
  height: 42px;
  flex-shrink: 0;
  transform: skewY(-6deg);
}
.pane-mark i {
  border: 1px solid currentColor;
  display: block;
}
.concept-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  padding: 8px 20px;
  background: var(--brand-soft);
  color: var(--brand-primary);
  font-size: 0.64rem;
  line-height: 1.4;
  letter-spacing: 0.09em;
}
.concept-banner span + span {
  border-left: 1px solid #918d80;
  padding-left: 14px;
  letter-spacing: 0.03em;
}
.site-header {
  position: sticky;
  top: 0;
  background: var(--brand-primary);
  color: var(--paper);
  z-index: 20;
  transition: box-shadow 0.15s;
}
.site-header.is-scrolled {
  box-shadow: 0 2px 0 #b28a4b;
}
.header-inner {
  max-width: 1480px;
  margin: auto;
  min-height: var(--header-height);
  padding: 15px 32px;
  display: flex;
  align-items: center;
  gap: 34px;
}
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.wordmark > span:last-child {
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.03em;
}
.wordmark small {
  display: block;
  font: 500 0.53rem var(--body);
  letter-spacing: 0.18em;
  margin-top: 8px;
}
.wordmark .pane-mark {
  color: var(--brand-sage);
}
.site-header nav {
  margin-left: auto;
}
.site-header nav ul {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}
.site-header nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  text-decoration: none;
  font-size: 0.77rem;
  white-space: nowrap;
}
.site-header nav a:hover,
.site-header nav a[aria-current] {
  text-decoration: underline;
  text-decoration-color: var(--brand-secondary);
  text-decoration-thickness: 2px;
  text-underline-offset: 8px;
}
.header-quote {
  font-size: 0.72rem;
  padding: 12px 15px;
  gap: 14px;
  min-height: 46px;
}
.menu-button {
  min-height: 44px;
  border: 1px solid var(--brand-sage);
  background: transparent;
  color: var(--paper);
  padding: 7px 12px;
  font-size: 0.85rem;
  gap: 10px;
  align-items: center;
}
.photo {
  position: relative;
  background: var(--brand-soft);
  overflow: hidden;
}
.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.photo figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  background: rgba(32, 37, 34, 0.88);
  color: var(--paper);
  padding: 5px 11px;
  font-size: 0.65rem;
  line-height: 1.5;
  letter-spacing: 0.01em;
}
.product-card .photo {
  aspect-ratio: 1.5;
}
.product-card,
.project-card {
  min-width: 0;
}
.product-card {
  border-bottom: 1px solid var(--line);
}
.product-card > a {
  display: block;
  text-decoration: none;
}
.product-card > a:hover img {
  transform: scale(1.025);
}
.product-card .card-body {
  padding: 22px 0 25px;
}
.product-card h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
.product-card h3 span {
  font-family: var(--body);
  font-size: 1.1rem;
}
.product-card p {
  margin-top: 13px;
  color: var(--brand-grey);
  font-size: 0.91rem;
}
.product-card .explore {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  min-height: 44px;
  margin-top: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brand-primary);
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px 26px;
}
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.project-card {
  background: var(--brand-white);
  border: 1px solid var(--line);
}
.project-card .photo {
  aspect-ratio: 1.4;
}
.project-copy {
  padding: 24px;
}
.project-copy .eyebrow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  font-size: 0.65rem;
}
.example-label {
  font-size: 0.62rem;
  border: 1px solid #6e766d;
  padding: 2px 6px;
}
.project-copy h2,
.project-copy h3 {
  font-size: 2rem;
}
.project-copy > p:not(.eyebrow) {
  font-size: 0.9rem;
  margin: 15px 0;
  color: var(--brand-grey);
}
.filter-area {
  margin-bottom: 32px;
  border-bottom: 1px solid var(--line);
}
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.filters button {
  min-height: 46px;
  padding: 10px 18px;
  border: 1px solid #90998d;
  background: transparent;
  font-size: 0.82rem;
}
.filters button:hover {
  background: var(--brand-soft);
}
.filters button[aria-pressed="true"] {
  background: var(--brand-primary);
  color: var(--paper);
  border-color: var(--brand-primary);
  box-shadow: inset 0 -3px var(--brand-secondary);
}
.filters button[aria-pressed="true"]::before {
  content: "✓";
  margin-right: 8px;
}
.filter-count {
  font-size: 0.77rem;
  margin: 16px 0 !important;
  color: var(--brand-grey);
}
.empty-state {
  padding: 40px;
  border: 1px solid var(--line);
  max-width: 680px;
}
.contact-panel h3 {
  font-size: 2rem;
  margin-bottom: 22px;
}
.contact-panel address {
  line-height: 1.8;
}
.contact-panel > p {
  margin-top: 22px;
}
.contact-panel .text-link {
  word-break: break-word;
}
.contact-panel .eyebrow {
  margin-top: 0;
}
.hours {
  margin-top: 24px;
}
.hours dl {
  font-size: 0.86rem;
}
.hours dl > div {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}
.hours dd {
  margin: 0;
  text-align: right;
}
.location-panel {
  background: var(--brand-soft);
  border: 1px solid #c8c2b6;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 380px;
  position: relative;
}
.location-grid {
  position: relative;
  padding: 25px 0 40px;
  margin-bottom: 24px;
  border-bottom: 1px solid #aaa998;
  display: grid;
  grid-template-columns: 55px 1fr;
  align-items: center;
}
.location-grid .pane-mark {
  grid-row: 1/3;
  color: var(--brand-primary);
}
.location-grid strong {
  font-family: var(--display);
  font-size: 3rem;
  font-weight: 600;
  line-height: 1;
}
.location-grid > span {
  font-size: 0.65rem;
  letter-spacing: 0.28em;
}
.location-panel .button {
  margin: 22px 0;
}
.location-panel > small {
  font-size: 0.65rem;
  color: var(--brand-grey);
}
.faq-section {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
}
.faq-section > div > p:not(.eyebrow) {
  margin-top: 22px;
  max-width: 290px;
  color: var(--brand-grey);
}
details {
  border-top: 1px solid var(--line);
}
details:last-child {
  border-bottom: 1px solid var(--line);
}
summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  font-size: 0.93rem;
  font-weight: 500;
  list-style: none;
  min-height: 48px;
}
summary::-webkit-details-marker {
  display: none;
}
summary > span {
  font-size: 1.5rem;
  font-weight: 400;
  transition: transform 0.15s;
}
details[open] summary > span {
  transform: rotate(45deg);
}
details > p {
  padding: 0 25px 22px 0;
  font-size: 0.9rem;
  color: var(--brand-grey);
}
.final-cta {
  background: var(--brand-primary);
  color: var(--paper);
  position: relative;
  border-top: 1px solid var(--brand-secondary);
}
.cta-inner {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 80px;
  padding-block: 64px;
  align-items: center;
}
.cta-inner h2 {
  max-width: 660px;
}
.cta-inner p:not(.eyebrow) {
  max-width: 550px;
  margin-top: 20px;
  font-size: 0.95rem;
  color: var(--brand-soft);
}
.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding-left: 40px;
  border-left: 1px solid #738073;
}
.cta-actions small {
  color: var(--brand-soft);
  font-size: 0.72rem;
}
.site-footer {
  background: #1d3029;
  color: var(--paper);
  padding: 58px 0 24px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.3fr;
  gap: 40px;
}
.footer-top p {
  font-size: 0.85rem;
  color: var(--brand-soft);
  margin-top: 20px;
}
.footer-top nav {
  display: flex;
  flex-direction: column;
}
.footer-top nav a {
  font-size: 0.8rem;
  text-decoration: none;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.footer-top address {
  font-size: 0.8rem;
  margin-bottom: 13px;
}
.footer-top .text-link {
  font-size: 0.75rem;
  display: flex;
  gap: 7px;
}
.footer-top .button {
  font-size: 0.73rem;
  padding: 12px 16px;
}
.privacy {
  border: none;
  margin-top: 20px;
}
.privacy:last-child {
  border: 0;
}
.privacy summary {
  font-size: 0.74rem;
  padding: 10px 0;
  text-decoration: underline;
}
.privacy > p {
  padding-bottom: 0;
  font-size: 0.8rem;
}
.footer-disclaimer {
  border-top: 1px solid #69776e;
  margin-top: 38px;
  padding-top: 23px;
  display: flex;
  justify-content: space-between;
  gap: 45px;
  align-items: start;
}
.footer-disclaimer p {
  max-width: 820px;
  font-size: 0.7rem;
  color: var(--brand-soft);
}
.footer-disclaimer > span {
  font-size: 0.59rem;
  letter-spacing: 0.12em;
  white-space: nowrap;
}
.mobile-actions {
  display: none;
}
.quote-dialog,
.handoff-dialog {
  border: 1px solid var(--brand-primary);
  padding: 34px;
  background: var(--paper);
  color: var(--brand-ink);
  max-width: calc(100% - 30px);
  width: 750px;
  max-height: calc(100dvh - 40px);
  overflow: auto;
  overscroll-behavior: contain;
}
.quote-dialog::backdrop,
.handoff-dialog::backdrop {
  background: rgba(16, 29, 23, 0.75);
}
body:has(dialog[open]) {
  overflow: hidden;
}
.dialog-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 25px;
}
.dialog-heading h2 {
  font-size: 2.6rem;
}
.dialog-heading .eyebrow {
  font-size: 0.64rem;
  margin-bottom: 10px;
}
.close-dialog {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: transparent;
  font-size: 1.7rem;
}
.form-notice {
  display: flex;
  gap: 18px;
  padding: 19px;
  background: var(--brand-soft);
  margin-bottom: 28px;
  font-size: 0.8rem;
}
.form-notice .pane-mark {
  width: 22px;
  height: 29px;
  margin-top: 4px;
}
.quote-form fieldset {
  border: 0;
  padding: 0;
  margin: 0;
  min-width: 0;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-grid > div {
  min-width: 0;
}
.form-grid .full {
  grid-column: 1/-1;
}
.quote-form label {
  display: block;
  margin-bottom: 7px;
  font-size: 0.8rem;
  font-weight: 600;
}
.quote-form label span {
  font-size: 0.72rem;
  color: var(--brand-grey);
  font-weight: 400;
}
.quote-form input,
.quote-form textarea,
.quote-form select {
  width: 100%;
  padding: 12px;
  border: 1px solid #868e83;
  color: var(--brand-ink);
  background: #fff;
  border-radius: 0;
  min-height: 48px;
  font-size: 1rem;
}
.quote-form textarea {
  resize: vertical;
  min-height: 105px;
}
.quote-form .button {
  margin-top: 28px;
}
.form-footnote {
  margin-top: 10px;
  font-size: 0.72rem;
  color: var(--brand-grey);
}
.form-error {
  color: #752917;
  border-left: 3px solid #752917;
  padding: 12px;
  margin-top: 20px;
  background: #f4e6df;
  font-size: 0.86rem;
}
.form-confirmation {
  border: 1px solid var(--brand-primary);
  padding: 28px;
  background: var(--brand-light-grey);
}
.form-confirmation p {
  margin-bottom: 20px;
}
.form-confirmation h3 {
  margin-bottom: 20px;
}
.form-confirmation .button {
  margin-bottom: 10px;
}
.handoff-dialog {
  width: 590px;
  padding: 40px;
}
.handoff-dialog .close-dialog {
  margin: 0 0 15px auto;
}
.handoff-dialog h2 {
  font-size: 3rem;
  margin-bottom: 25px;
}
.handoff-dialog p {
  font-size: 0.95rem;
}
.handoff-dialog .actions {
  margin-top: 28px;
}
@media (min-width: 900px) {
  .menu-button {
    display: none;
  }
}
@media (min-width: 1200px) {
  .home-page .site-header:not(.is-scrolled) {
    background: rgba(36, 58, 50, 0.96);
  }
}
@media (max-width: 1199px) {
  .header-inner {
    gap: 22px;
    padding-inline: 25px;
  }
  .site-header nav ul {
    gap: 16px;
  }
  .site-header nav a {
    font-size: 0.73rem;
  }
  .header-quote {
    display: none;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .cta-inner {
    gap: 40px;
  }
  .faq-section {
    gap: 45px;
  }
}
@media (max-width: 899px) {
  :root {
    --header-height: 78px;
  }
  .header-inner {
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 15px 22px;
  }
  .menu-button:not([hidden]) {
    display: flex;
  }
  .site-header nav {
    width: 100%;
    margin: 0;
  }
  .site-header nav ul {
    display: block;
  }
  .site-header nav a {
    display: block;
    padding: 13px 4px;
    font-size: 0.95rem;
    border-top: 1px solid #657368;
  }
  .menu-ready .site-header nav:not(.is-open) {
    display: none;
  }
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .project-grid .project-card:last-child:nth-child(odd) {
    grid-column: 1/-1;
  }
  .cta-inner {
    grid-template-columns: 1fr;
  }
  .cta-actions {
    border: 0;
    padding: 0;
  }
  .faq-section {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .footer-disclaimer {
    display: block;
  }
  .footer-disclaimer > span {
    display: block;
    margin-top: 18px;
  }
}
@media (max-width: 700px) {
  .concept-banner {
    font-size: 0.54rem;
    gap: 9px;
    padding: 8px 12px;
  }
  .concept-banner span + span {
    padding-left: 9px;
  }
  .wordmark > span:last-child {
    font-size: 1.45rem;
  }
  .wordmark small {
    font-size: 0.49rem;
  }
  .wordmark .pane-mark {
    width: 28px;
    height: 35px;
  }
  .product-grid,
  .project-grid {
    grid-template-columns: 1fr;
  }
  .project-grid .project-card:last-child:nth-child(odd) {
    grid-column: auto;
  }
  .product-grid {
    gap: 28px;
  }
  .product-card .photo {
    aspect-ratio: 1.55;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 30px 20px;
  }
  .footer-top > div:first-child,
  .footer-top > div:last-child {
    grid-column: 1/-1;
  }
  .footer-top .button {
    font-size: 0.82rem;
  }
  .mobile-actions {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--paper);
    z-index: 25;
    box-shadow: 0 -1px 0 var(--line);
    padding-bottom: env(safe-area-inset-bottom);
  }
  .mobile-actions a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 64px;
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: none;
  }
  .mobile-actions .mobile-quote {
    background: var(--brand-primary);
    color: var(--paper);
  }
  .filters button {
    font-size: 0.76rem;
    padding: 9px 12px;
  }
  .location-panel {
    padding: 24px;
    min-height: 330px;
  }
  .form-grid {
    grid-template-columns: 1fr;
    gap: 17px;
  }
  .quote-dialog {
    padding: 23px 19px;
    max-width: calc(100% - 20px);
    max-height: calc(100dvh - 24px);
  }
  .dialog-heading h2 {
    font-size: 2.15rem;
  }
  .form-notice {
    padding: 16px;
    font-size: 0.76rem;
  }
  .handoff-dialog {
    padding: 25px;
  }
  .handoff-dialog h2 {
    font-size: 2.5rem;
  }
  .form-confirmation {
    padding: 20px;
  }
  .form-confirmation .button {
    font-size: 0.78rem;
  }
  .form-confirmation .text-link {
    font-size: 0.79rem;
  }
  .cta-inner {
    padding-block: 50px;
  }
  .site-footer {
    padding-top: 45px;
  }
  .footer-disclaimer p {
    font-size: 0.72rem;
  }
  .footer-top .text-link {
    overflow-wrap: anywhere;
  }
}
/* Image provenance stays readable, including narrow character-detail cards. */
.photo figcaption {
  font-size: 0.75rem;
  max-width: 100%;
  white-space: normal;
}
.footer-disclaimer > span {
  white-space: normal;
}
