:root {
  --ink: #1a1a1a;
  --charcoal: #2b2927;
  --deep: #29251f;
  --wood: #824121;
  --tan: #a6764e;
  --gold: #e5a93c;
  --cream: #f4efe6;
  --paper: #fbf8f1;
  --line: #d8cec0;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  width: 100%;
  object-fit: cover;
}
.wrap {
  width: min(1180px, 91vw);
  margin-inline: auto;
}
.skip {
  position: fixed;
  z-index: 999;
  top: 10px;
  left: 10px;
  padding: 12px;
  background: #fff;
  transform: translateY(-150%);
}
.skip:focus {
  transform: none;
}
.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 22px 4.5vw;
  color: #fff;
  border-bottom: 1px solid #ffffff29;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 66px;
  height: 50px;
  flex: 0 0 auto;
}
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.brand b {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
}
.brand small {
  display: block;
  margin-top: 4px;
  color: #d9d0c4;
  font-size: 0.52rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.site-header nav {
  display: flex;
  gap: 28px;
  align-items: center;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.site-header nav a {
  padding-block: 10px;
}
.site-header nav a[aria-current="page"] {
  color: var(--gold);
}
.menu {
  display: none;
  border: 1px solid #ffffff55;
  padding: 10px 14px;
  background: transparent;
  color: #fff;
}
.hero,
.inner-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--deep);
  color: #fff;
}
.hero-bg,
.project-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #17130fcf 0%, #17130f66 55%, #17130f22),
    url("../images/hero.png") center/cover;
}
.hero-copy {
  position: relative;
  z-index: 1;
  padding-block: 190px 90px;
}
.eyebrow {
  margin: 0;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.eyebrow.dark {
  color: var(--wood);
}
h1,
h2,
h3,
blockquote {
  font-family: var(--serif);
  font-weight: 500;
}
h1 {
  margin: 20px 0 28px;
  font-size: clamp(4rem, 7.3vw, 7.5rem);
  line-height: 0.86;
  letter-spacing: -0.04em;
}
h2 {
  margin: 10px 0;
  font-size: clamp(3rem, 5vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: -0.035em;
}
em {
  color: var(--tan);
  font-style: italic;
}
.hero-copy > p:not(.eyebrow) {
  max-width: 650px;
  color: #e6ddd2;
  font-family: var(--serif);
  font-size: 1.4rem;
  line-height: 1.5;
}
.actions {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-top: 38px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}
.btn.gold {
  background: var(--gold);
  color: #1d170f;
}
.btn.dark {
  background: var(--ink);
  color: #fff;
}
.btn.outline {
  border-color: #ffffff66;
  color: #fff;
}
.link-light,
.text-link {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.intro {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 9vw;
  padding-block: 130px;
}
.lead p {
  margin-top: 0;
  color: #625c54;
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1.55;
}
.craft {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  background: var(--deep);
  color: #fff;
}
.craft-image {
  min-height: 690px;
  display: flex;
  align-items: flex-end;
  padding: 32px;
  background:
    linear-gradient(0deg, #0007, transparent 50%),
    url("../images/artisan.png") center/cover;
}
.craft-panel {
  padding: 90px 6vw;
}
.craft-panel blockquote {
  margin: 28px 0;
  font-size: clamp(2.8rem, 4vw, 4.8rem);
  line-height: 1;
}
.craft-panel > p:not(.eyebrow) {
  color: #c8beb0;
  line-height: 1.8;
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 70px;
  padding-top: 25px;
  border-top: 1px solid #ffffff20;
}
.stats strong {
  display: block;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 2.6rem;
}
.stats span {
  color: #bdb3a7;
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.featured,
.process {
  padding-block: 125px;
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 55px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.product-grid article:nth-child(1) {
  margin-top: 0;
}
.product-grid article:nth-child(2) {
  margin-top: 70px;
}
.product-grid article:nth-child(3) {
  margin-top: 25px;
}
.product-grid img {
  height: 480px;
  filter: saturate(0.75);
}
.product-grid h3 {
  margin: 18px 0 4px;
  font-size: 1.6rem;
}
.product-grid p {
  margin: 0;
  color: #756d63;
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.project {
  position: relative;
  min-height: 750px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 80px 8vw;
  color: #fff;
}
.project-bg {
  background:
    linear-gradient(90deg, #17130f20 10%, #17130fe6 75%),
    url("../images/boardroom.png") center/cover;
}
.project-copy {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
}
.project-copy p:not(.eyebrow) {
  color: #d6cdc1;
  line-height: 1.7;
}
.project dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-block: 30px;
}
.project dt {
  color: #a69b8c;
  font-size: 0.6rem;
  text-transform: uppercase;
}
.project dd {
  margin: 6px 0 0;
  font-family: var(--serif);
  font-size: 1.2rem;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 60px;
  border-top: 1px solid var(--line);
}
.steps article {
  padding: 30px 28px;
  border-right: 1px solid var(--line);
}
.steps article:first-child {
  padding-left: 0;
}
.steps span {
  color: var(--wood);
  font-size: 0.65rem;
}
.steps h3 {
  margin-top: 50px;
  font-size: 1.9rem;
}
.steps p {
  color: #756d63;
  font-size: 0.85rem;
  line-height: 1.65;
}
.inner-hero {
  min-height: 72svh;
  padding: 170px 0 70px;
  background:
    linear-gradient(90deg, #17130fdd, #17130f55),
    var(--hero, url("../images/hero.png")) center/cover;
}
.inner-hero.board {
  background:
    linear-gradient(90deg, #17130fdd, #17130f55),
    url("../images/boardroom.png") center/cover;
}
.inner-hero.artisan {
  background:
    linear-gradient(90deg, #17130fdd, #17130f55),
    url("../images/artisan.png") center/cover;
}
.page-lead {
  display: grid;
  grid-template-columns: 0.45fr 1fr;
  gap: 70px;
  padding-block: 100px;
}
.page-lead > p:last-child {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.35;
}
.card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding-bottom: 120px;
}
.card-grid article {
  position: relative;
  min-height: 470px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
  overflow: hidden;
  background:
    linear-gradient(0deg, #17130fd9 0%, transparent 70%),
    var(--card) center/cover;
  color: #fff;
}
.card-grid h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 2.3rem;
}
.card-grid p {
  position: relative;
  z-index: 1;
  margin: 5px 0 0;
  color: #d9d0c5;
  font-size: 0.75rem;
}
.contact {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 9vw;
  padding-block: 110px;
}
.contact h2 {
  font-size: 4rem;
}
.contact > div > p:not(.eyebrow) {
  color: #625c54;
  line-height: 1.9;
}
.contact form {
  display: grid;
  gap: 25px;
}
.contact label {
  display: grid;
  gap: 9px;
  color: #6e675f;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.contact input,
.contact select,
.contact textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #b9ad9d;
  padding: 13px 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  outline: none;
}
.form-status {
  color: var(--wood);
  line-height: 1.5;
}
.cta {
  padding: 110px 5vw;
  background:
    linear-gradient(120deg, #181513f7, #372317e3),
    url("../images/hero.png") center/cover;
  color: #fff;
  text-align: center;
}
.cta h2 {
  margin: 25px auto 42px;
}
footer {
  padding-top: 70px;
  background: #171615;
  color: #fff;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr 0.7fr;
  gap: 8vw;
  padding-bottom: 60px;
}
.footer-grid h3 {
  color: var(--gold);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.footer-grid > div > a:not(.brand) {
  display: block;
  margin: 11px 0;
  font-size: 0.78rem;
}
.footer-grid p {
  color: #9e968b;
  line-height: 1.8;
  font-size: 0.8rem;
}
.footer-brand + p {
  max-width: 390px;
  margin-top: 30px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-block: 22px;
  border-top: 1px solid #ffffff18;
  color: #756e65;
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.whatsapp {
  position: fixed;
  z-index: 50;
  right: 24px;
  bottom: 24px;
  padding: 16px 20px;
  border-radius: 30px;
  background: #217b49;
  color: #fff;
  box-shadow: 0 10px 35px #0005;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
@media (max-width: 900px) {
  .site-header nav {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    width: 100%;
    padding: 20px 5vw;
    background: #1a1816;
    flex-direction: column;
    align-items: flex-start;
  }
  .site-header nav.open {
    display: flex;
  }
  .menu {
    display: block;
  }
  .hero-copy {
    padding-top: 160px;
  }
  .intro,
  .craft,
  .page-lead,
  .contact {
    grid-template-columns: 1fr;
  }
  .intro {
    gap: 35px;
  }
  .craft-image {
    min-height: 540px;
  }
  .product-grid {
    grid-template-columns: 1fr 1fr;
  }
  .product-grid article:nth-child(n) {
    margin-top: 0;
  }
  .steps {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid > div:first-child {
    grid-column: 1/-1;
  }
}
@media (max-width: 600px) {
  h1 {
    font-size: 3.8rem;
  }
  .hero {
    min-height: 850px;
  }
  .actions,
  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .intro,
  .featured,
  .process,
  .page-lead,
  .contact {
    padding-block: 80px;
  }
  .craft-panel {
    padding: 70px 6vw;
  }
  .stats {
    grid-template-columns: 1fr;
  }
  .product-grid,
  .card-grid,
  .steps,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .product-grid img {
    height: 390px;
  }
  .steps article {
    padding-left: 0;
  }
  .card-grid article {
    min-height: 390px;
  }
  .footer-grid > div:first-child {
    grid-column: auto;
  }
  .footer-bottom {
    gap: 15px;
    flex-direction: column;
  }
  .whatsapp {
    right: 14px;
    bottom: 14px;
  }
  .contact h2 {
    font-size: 3rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
  }
}
