:root {
  --ink: #20221f;
  --limestone: #f3f0e8;
  --shell: #f7f4ed;
  --beige: #c9b99d;
  --olive: #6f7565;
  --olive-ink: #58604f;
  --ochre: #c58a42;
  --wa: #167a4b;
  --line: rgba(32, 34, 31, 0.16);
  --serif: Iowan Old Style, Palatino Linotype, Georgia, serif;
  --sans: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Arial, sans-serif;
  --max: 1280px;
  --pad: clamp(20px, 5vw, 64px);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--limestone);
  color: var(--ink);
  font: 400 16px/1.65 var(--sans);
}
body.menu-open {
  overflow: hidden;
}
.not-found {
  display: grid;
  min-height: 100dvh;
  place-items: center;
  padding: 30px var(--pad);
  background:
    linear-gradient(rgba(32, 34, 31, 0.8), rgba(32, 34, 31, 0.88)),
    url("../img/hero.jpg") center / cover;
  color: var(--shell);
}
.not-found__card {
  width: min(680px, 100%);
  padding: clamp(32px, 7vw, 72px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(32, 34, 31, 0.9);
}
.not-found__code {
  color: var(--ochre);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.17em;
}
.not-found h1 {
  margin-block: 18px;
  font-size: clamp(3rem, 9vw, 6rem);
}
.not-found p {
  max-width: 52ch;
  color: rgba(255, 255, 255, 0.76);
}
.not-found__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
}
button {
  font: inherit;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: -0.035em;
}
h1 em,
h2 em {
  color: var(--ochre);
  font-weight: 400;
}
.wrap {
  width: min(var(--max), 100%);
  margin: auto;
  padding-inline: var(--pad);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: -999px;
  padding: 12px 16px;
  background: var(--ink);
  color: white;
}
.skip-link:focus {
  left: 10px;
}
:focus-visible {
  outline: 3px solid var(--ochre);
  outline-offset: 3px;
}
.kicker {
  margin-bottom: 16px;
  color: var(--olive-ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.17em;
  line-height: 1.4;
  text-transform: uppercase;
}
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.18s ease;
}
.button:hover {
  transform: translateY(-2px);
}
.button--ochre {
  background: var(--ochre);
  color: #221e16;
}
.button--ink {
  background: var(--ink);
  color: var(--shell);
}
.button--wa {
  background: var(--wa);
  color: #fff;
}
.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid currentColor;
  padding: 8px 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}
.text-link span {
  font-size: 18px;
}
.text-link--light {
  color: var(--shell);
}
.site-header {
  position: fixed;
  z-index: 20;
  inset: 0 0 auto;
  color: var(--shell);
  transition: 0.2s;
}
.site-header.is-scrolled {
  background: rgba(247, 244, 237, 0.95);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.17em;
  white-space: nowrap;
}
.brand img {
  width: 34px;
  height: 34px;
}
.desktop-nav {
  display: flex;
  gap: 24px;
  margin-left: auto;
}
.desktop-nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 12px 0;
  text-decoration: none;
  font-size: 12px;
}
.header-wa {
  margin-left: 10px;
}
.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 0;
  background: none;
  color: inherit;
}
.menu-button i {
  display: block;
  width: 22px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
}
.mobile-nav {
  position: fixed;
  z-index: 19;
  inset: 78px 0 auto;
  padding: 18px var(--pad) 28px;
  background: var(--ink);
  color: var(--shell);
}
.mobile-nav a:not(.button) {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-family: var(--serif);
  font-size: 26px;
  text-decoration: none;
}
.mobile-nav .button {
  margin-top: 20px;
}
.hero {
  position: relative;
  display: grid;
  min-height: max(680px, 100svh);
  overflow: hidden;
  background: var(--ink);
  color: var(--shell);
  isolation: isolate;
}
.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-image {
  z-index: 0;
  object-fit: cover;
}
.hero-overlay {
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(23, 25, 22, 0.9),
      rgba(23, 25, 22, 0.56) 43%,
      rgba(23, 25, 22, 0.08)
    ),
    linear-gradient(0deg, rgba(23, 25, 22, 0.5), transparent 50%);
}
.hero-content {
  position: relative;
  z-index: 2;
  align-self: end;
  padding-bottom: clamp(68px, 10vh, 130px);
}
.hero .kicker {
  color: #e4dbcb;
}
.hero h1 {
  max-width: 850px;
  color: #fff;
  font-size: clamp(3rem, 7vw, 6.3rem);
  text-wrap: balance;
}
.hero h1 em {
  display: block;
  color: #d8c7a9;
}
.intro {
  max-width: 650px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(16px, 1.55vw, 20px);
  line-height: 1.58;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 28px;
  margin-top: 36px;
}
.concept-inline {
  margin-top: 35px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}
.trust-strip {
  background: var(--ink);
  color: var(--shell);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.trust-grid p {
  padding: 26px clamp(18px, 3vw, 40px);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}
.trust-grid p:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}
.trust-grid strong,
.trust-grid span {
  display: block;
}
.trust-grid strong {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
}
.trust-grid span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.63);
  font-size: 13px;
  line-height: 1.5;
}
.section {
  position: relative;
  padding-block: clamp(70px, 10vw, 140px);
}
.section--shell,
.requests {
  background: var(--shell);
}
.section-heading {
  max-width: 750px;
  margin-bottom: 40px;
}
.section-heading h2,
.story h2,
.facade-advice h2,
.faq h2 {
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  text-wrap: balance;
}
.section-heading > p:last-child {
  max-width: 650px;
  margin-top: 20px;
  color: rgba(32, 34, 31, 0.68);
  font-size: 17px;
}
.models:before,
.models:after {
  position: absolute;
  right: 0;
  left: 0;
  height: 7px;
  content: "";
  opacity: 0.42;
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0 22px,
      var(--beige) 22px 24px,
      transparent 24px 58px
    ),
    linear-gradient(
      90deg,
      var(--olive),
      var(--beige),
      var(--ochre),
      var(--olive)
    );
}
.models:before {
  top: 0;
}
.models:after {
  bottom: 0;
  transform: scaleX(-1);
}
.collection-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 13px;
}
.collection-filter {
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}
.collection-filter[aria-pressed="true"] {
  background: var(--ink);
  color: var(--shell);
}
.filter-status {
  min-height: 24px;
  margin-bottom: 20px;
  color: var(--olive-ink);
  font-size: 13px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.product-card {
  min-width: 0;
  border: 1px solid var(--line);
  background: var(--shell);
}
.product-card__open {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}
.product-card__image {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--beige);
  aspect-ratio: 4/3;
}
.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s;
}
.product-card__open:hover img {
  transform: scale(1.045);
}
.concept-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 5px 7px;
  background: rgba(32, 34, 31, 0.82);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.product-card__body {
  position: relative;
  display: grid;
  gap: 6px;
  padding: 15px 16px 16px;
}
.product-card__body:before {
  position: absolute;
  top: 0;
  right: 16px;
  left: 16px;
  height: 4px;
  content: "";
  background: linear-gradient(
    90deg,
    var(--ochre) 0 28%,
    var(--beige) 28% 68%,
    var(--olive) 68%
  );
}
.product-card__collection {
  margin-top: 3px;
  color: var(--olive-ink);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.product-card strong {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
  line-height: 1;
}
.product-card__code,
.dialog-code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.product-card__description {
  min-height: 43px;
  color: rgba(32, 34, 31, 0.65);
  font-size: 13px;
  line-height: 1.55;
}
.product-card__action {
  margin-top: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.product-card__action b {
  margin-left: 6px;
  font-size: 17px;
  font-weight: 400;
}
.concept-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 4vw, 54px);
}
.concept-card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}
.concept-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.concept-card__body {
  padding: 20px 2px 0;
}
.concept-card__body > p:first-child,
.model-reference {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.concept-card__body > p:first-child {
  color: var(--olive-ink);
}
.concept-card h3 {
  margin: 8px 0;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}
.model-reference {
  color: var(--ochre);
}
.concept-card__body > p:nth-of-type(2) {
  margin: 12px 0 18px;
  color: rgba(32, 34, 31, 0.65);
  font-size: 14px;
}
.story {
  border-bottom: 1px solid var(--line);
}
.story-grid,
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(38px, 9vw, 150px);
}
.story-copy {
  padding-top: 12px;
}
.story-copy p {
  margin-bottom: 20px;
  font-size: 18px;
}
.story-copy p:nth-child(2) {
  color: var(--olive-ink);
  font-size: 15px;
}
.process {
  background: var(--ink);
  color: var(--shell);
}
.section-heading--light .kicker {
  color: #d7c59e;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.process-grid li {
  min-height: 240px;
  padding: 32px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}
.process-grid li:first-child {
  border: 0;
}
.process-grid b {
  display: block;
  margin-bottom: 40px;
  color: var(--ochre);
  font-family: ui-monospace, monospace;
  font-size: 13px;
}
.process-grid h3 {
  font-size: 28px;
}
.process-grid p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
}
.facade-advice {
  padding-block: clamp(70px, 11vw, 150px);
  background: var(--beige);
}
.advice-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: clamp(30px, 7vw, 100px);
  align-items: center;
}
.advice-grid > div > p:last-child {
  max-width: 620px;
  margin-top: 22px;
  font-size: 18px;
}
.advice-card {
  position: relative;
  display: flex;
  min-height: 260px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  overflow: hidden;
  padding: clamp(25px, 4vw, 46px);
  background: var(--ink);
  color: var(--shell);
}
.advice-card p {
  z-index: 1;
  max-width: 19ch;
  font-family: var(--serif);
  font-size: 31px;
  line-height: 1.05;
}
.advice-card .button {
  z-index: 1;
}
.stone-strata {
  position: absolute;
  top: -30px;
  right: -100px;
  width: 290px;
  height: 290px;
  transform: rotate(9deg);
  background:
    repeating-linear-gradient(
      163deg,
      transparent 0 13px,
      rgba(201, 185, 157, 0.25) 13px 15px,
      transparent 15px 33px
    ),
    repeating-linear-gradient(
      167deg,
      transparent 0 26px,
      rgba(197, 138, 66, 0.45) 26px 29px,
      transparent 29px 70px
    );
}
.request-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}
.request-grid article {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px;
  background: var(--shell);
}
.request-grid h3 {
  font-size: 27px;
}
.request-grid p {
  margin: 12px 0 20px;
  color: rgba(32, 34, 31, 0.66);
  font-size: 14px;
}
.request-grid .text-link {
  margin-top: auto;
}
.faq-grid > div > p:last-child {
  margin-top: 20px;
  color: var(--olive-ink);
}
#faqList {
  border-top: 1px solid var(--line);
}
details {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
summary {
  position: relative;
  display: flex;
  min-height: 44px;
  align-items: center;
  padding-right: 30px;
  cursor: pointer;
  list-style: none;
  font-family: var(--serif);
  font-size: 23px;
  line-height: 1.15;
}
summary::-webkit-details-marker {
  display: none;
}
summary:after {
  position: absolute;
  top: 0;
  right: 0;
  content: "+";
  color: var(--ochre);
  font-family: var(--sans);
  font-size: 24px;
}
details[open] summary:after {
  content: "−";
}
details p {
  margin-top: 12px;
  color: rgba(32, 34, 31, 0.68);
  font-size: 14px;
}
.footer {
  padding-top: 55px;
  background: var(--ink);
  color: var(--shell);
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 46px;
}
.footer-grid > div:last-child {
  display: grid;
  gap: 12px;
  align-content: start;
}
.footer-grid p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}
.footer-address {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-style: normal;
  line-height: 1.65;
}
.footer-bottom {
  padding-block: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.47);
  font-size: 12px;
}
.floating-wa {
  position: fixed;
  z-index: 15;
  right: 20px;
  bottom: 20px;
  display: flex;
  min-height: 46px;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  background: var(--wa);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.22);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}
.floating-wa span {
  font-size: 18px;
}
.product-dialog {
  width: min(1080px, calc(100% - 28px));
  max-height: calc(100dvh - 28px);
  padding: 0;
  border: 0;
  background: var(--shell);
  color: var(--ink);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}
.product-dialog::backdrop {
  background: rgba(21, 23, 20, 0.74);
}
.dialog-close {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(32, 34, 31, 0.75);
  color: #fff;
  cursor: pointer;
  font-size: 30px;
}
.dialog-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
}
.dialog-image {
  position: relative;
  background: var(--beige);
}
.dialog-image img {
  width: 100%;
  height: 100%;
  max-height: calc(100dvh - 28px);
  object-fit: cover;
}
.dialog-copy {
  padding: clamp(28px, 5vw, 58px);
}
.dialog-copy h2 {
  margin-bottom: 8px;
  font-size: clamp(2.8rem, 5vw, 4.3rem);
}
.dialog-code {
  color: var(--olive-ink);
}
.dialog-copy > p:nth-of-type(2) {
  margin-top: 20px;
  font-size: 17px;
}
.dialog-copy dl {
  margin: 26px 0 0;
}
.dialog-copy dl div {
  padding: 13px 0;
  border-top: 1px solid var(--line);
}
.dialog-copy dt {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.dialog-copy dd {
  margin: 4px 0 0;
  font-size: 14px;
}
.dialog-note {
  margin-top: 16px !important;
  color: var(--olive-ink);
  font-size: 13px !important;
}
.dialog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 25px;
}
.dialog-actions .button {
  font-size: 10px;
}
@media (max-width: 1050px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .request-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .dialog-grid {
    grid-template-columns: 1fr;
  }
  .dialog-image img {
    height: auto;
    max-height: 450px;
  }
}
@media (max-width: 760px) {
  html {
    scroll-padding-top: 68px;
  }
  .header-inner {
    min-height: 68px;
  }
  .brand {
    font-size: 16px;
  }
  .brand img {
    width: 30px;
    height: 30px;
  }
  .desktop-nav,
  .header-wa {
    display: none;
  }
  .menu-button {
    display: block;
  }
  .mobile-nav {
    inset: 68px 0 auto;
  }
  .hero {
    min-height: 720px;
  }
  .hero-overlay {
    background: linear-gradient(
      0deg,
      rgba(23, 25, 22, 0.94),
      rgba(23, 25, 22, 0.72) 45%,
      rgba(23, 25, 22, 0.1)
    );
  }
  .hero-content {
    padding-bottom: 58px;
  }
  .hero h1 {
    font-size: clamp(3rem, 13vw, 4.4rem);
  }
  .intro {
    font-size: 16px;
  }
  .trust-grid,
  .concept-grid,
  .story-grid,
  .faq-grid,
  .advice-grid,
  .process-grid,
  .request-grid {
    grid-template-columns: 1fr;
  }
  .trust-grid p {
    padding: 17px 0;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }
  .trust-grid p:last-child {
    border-bottom: 0;
  }
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .product-card__body {
    padding: 12px;
  }
  .product-card__body:before {
    right: 12px;
    left: 12px;
  }
  .product-card strong {
    font-size: 21px;
  }
  .product-card__description {
    min-height: 0;
    font-size: 12px;
  }
  .product-card__collection,
  .product-card__code {
    font-size: 9px;
  }
  .concept-grid {
    gap: 38px;
  }
  .story-grid,
  .faq-grid {
    gap: 28px;
  }
  .story-copy {
    padding: 0;
  }
  .story-copy p {
    font-size: 16px;
  }
  .process-grid li {
    min-height: 0;
    padding: 25px;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }
  .process-grid li:first-child {
    border: 0;
  }
  .process-grid b {
    margin-bottom: 18px;
  }
  .request-grid article {
    min-height: 180px;
  }
  .footer-grid {
    display: grid;
  }
  .floating-wa {
    right: 14px;
    bottom: 14px;
  }
  .dialog-image img {
    max-height: 280px;
  }
  .dialog-actions {
    display: grid;
  }
  .dialog-actions .button {
    width: 100%;
  }
}
@media (max-width: 380px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .section-heading h2,
  .story h2,
  .facade-advice h2,
  .faq h2 {
    font-size: 2.45rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
