:root {
  --ink: #171714;
  --ink-soft: #272722;
  --paper: #f1eee7;
  --paper-deep: #e5e0d5;
  --sand: #c7a77c;
  --line: rgba(23, 23, 20, .18);
  --white-line: rgba(255, 255, 255, .24);
  --shell: min(100% - 48px, 1440px);
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: "Helvetica Neue", "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }
.shell { width: var(--shell); margin-inline: auto; }
.section { padding-block: clamp(90px, 10vw, 170px); }
.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;
  top: 10px;
  left: 10px;
  z-index: 999;
  transform: translateY(-150%);
  padding: 10px 16px;
  color: var(--paper);
  background: var(--ink);
}
.skip-link:focus { transform: translateY(0); }

.eyebrow {
  margin: 0 0 25px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  line-height: 1.4;
  text-transform: uppercase;
}
.display {
  margin: 0;
  font: 400 clamp(58px, 8.1vw, 132px)/.88 var(--serif);
  letter-spacing: -.055em;
}
.display em,
.hero h1 em,
.contact-intro h2 em { color: var(--sand); font-weight: 400; }
.lead {
  margin-top: 0;
  font: 400 clamp(24px, 2.25vw, 38px)/1.22 var(--serif);
  letter-spacing: -.02em;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  padding-inline: max(24px, calc((100vw - 1440px) / 2));
  color: #fff;
  border-bottom: 1px solid var(--white-line);
  transition: color .3s, background .3s, height .3s, border-color .3s;
}
.site-header.scrolled {
  height: 72px;
  color: var(--ink);
  background: rgba(241, 238, 231, .95);
  border-color: var(--line);
  backdrop-filter: blur(12px);
}
.brand { position: relative; display: block; width: 190px; height: 57px; flex: 0 0 auto; }
.brand-logo { display: block; width: 190px; height: auto; transition: opacity .25s; }
.brand .logo-dark { position: absolute; inset: 0; opacity: 0; }
.site-header.scrolled .brand .logo-light { opacity: 0; }
.site-header.scrolled .brand .logo-dark { opacity: 1; }
.menu-open .site-header .brand .logo-light { opacity: 1; }
.menu-open .site-header .brand .logo-dark { opacity: 0; }
.site-nav { display: flex; align-items: center; gap: clamp(25px, 3vw, 54px); }
.site-nav a { font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.site-nav a:not(.nav-cta) { position: relative; }
.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  inset: auto 0 -7px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s;
}
.site-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { padding: 11px 16px; border: 1px solid currentColor; }
.menu-toggle { display: none; background: none; border: 0; padding: 12px 0 12px 12px; }
.menu-toggle > span:not(.sr-only) { display: block; width: 26px; height: 1px; margin: 6px 0; background: currentColor; transition: .25s; }

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 0;
  height: 100vh;
  height: 100svh;
  color: #fff;
  background: #161612;
  overflow: hidden;
}
@supports (height: 100dvh) {
  .hero { height: 100dvh; }
}
.hero-image, .hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-image { object-fit: cover; object-position: center; }
.hero-shade { background: linear-gradient(90deg, rgba(8,8,7,.8) 0%, rgba(8,8,7,.6) 27%, rgba(8,8,7,.05) 70%), linear-gradient(0deg, rgba(8,8,7,.38), transparent 42%); }
.hero-content { position: relative; z-index: 1; padding-top: clamp(62px, 8.8svh, 80px); }
.hero .eyebrow { margin-bottom: clamp(12px, 2.5svh, 25px); }
.hero h1 {
  max-width: 900px;
  margin: 0 0 clamp(16px, 3svh, 28px);
  font: 400 clamp(74px, 10.5vw, 175px)/.78 var(--serif);
  font-size: clamp(64px, min(10.5vw, 17svh), 175px);
  letter-spacing: -.065em;
}
.hero-copy {
  max-width: 500px;
  margin: 0;
  font-size: clamp(17px, 1.5vw, 23px);
  font-size: clamp(15px, min(1.5vw, 2.4svh), 23px);
  line-height: 1.45;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 34px);
  margin-top: clamp(20px, 4.2svh, 42px);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 52px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color .25s, background .25s, border-color .25s;
}
.button-light { color: var(--ink); background: var(--paper); }
.button-light:hover { color: #fff; background: transparent; border-color: #fff; }
.button-dark { color: var(--paper); background: var(--ink); }
.button-dark:hover { color: var(--ink); background: transparent; border-color: var(--ink); }
.button-outline-light { color: #fff; background: transparent; border-color: rgba(255,255,255,.6); }
.button-outline-light:hover { color: var(--ink); background: #fff; }
.button-whatsapp { background: transparent; border-color: var(--line); }
.button-whatsapp:hover { color: var(--paper); background: var(--ink); }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding-bottom: 7px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.text-link span { transition: transform .25s; }
.text-link:hover span { transform: translate(3px, -3px); }
.text-link-light { color: #fff; }
.hero-meta {
  position: absolute;
  z-index: 2;
  right: max(24px, calc((100vw - 1440px) / 2));
  bottom: clamp(15px, 3.4svh, 33px);
  display: flex;
  gap: 28px;
  font-size: 10px;
  letter-spacing: .18em;
}
.hero-scroll {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: clamp(13px, 2.8svh, 27px);
  display: grid;
  justify-items: center;
  gap: 9px;
  transform: translateX(-50%);
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.hero-scroll i { display: block; width: 1px; height: 34px; background: rgba(255,255,255,.7); animation: scroll-line 1.8s infinite; }
@keyframes scroll-line { 0%,100% { transform: scaleY(.35); transform-origin: top; } 50% { transform: scaleY(1); } }

.intro { background: var(--paper); }
.intro-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(50px, 10vw, 180px); align-items: end; }
.intro-copy { max-width: 610px; padding-bottom: 8px; }
.intro-copy > p:not(.lead) { max-width: 480px; margin: 26px 0 44px; color: #55544d; font-size: 17px; }

.collections { padding-top: 100px; color: var(--paper); background: var(--ink); }
.section-heading { display: grid; grid-template-columns: 1.25fr .75fr; gap: 60px; align-items: end; margin-bottom: 65px; }
.section-heading h2 { margin: 0; font: 400 clamp(58px, 7.5vw, 110px)/.9 var(--serif); letter-spacing: -.05em; }
.section-heading > p { max-width: 490px; margin: 0 0 5px auto; color: #99968d; font-size: 16px; }
.product-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.16); }
.product-card { min-width: 0; background: #20201d; }
.product-card-wide { grid-column: 1 / -1; display: grid; grid-template-columns: 1.35fr .65fr; }
.product-media { position: relative; overflow: hidden; aspect-ratio: 3 / 2; background: #222; }
.product-card-wide .product-media { aspect-ratio: auto; min-height: 530px; }
.product-media::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(255,255,255,.08); pointer-events: none; }
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.product-card:hover .product-media img { transform: scale(1.035); }
.product-number { position: absolute; top: 19px; left: 20px; padding: 6px 9px; color: #fff; background: rgba(16,16,14,.72); font-size: 10px; letter-spacing: .15em; backdrop-filter: blur(8px); }
.product-body { display: grid; gap: 27px; padding: clamp(30px, 4vw, 58px); }
.product-card:not(.product-card-wide) .product-body { grid-template-rows: auto 1fr auto; min-height: 380px; }
.product-kicker { margin: 0 0 13px; color: #a8a59b; font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.product-body h3 { margin: 0; font: 400 clamp(42px, 4.5vw, 70px)/.92 var(--serif); letter-spacing: -.04em; }
.product-body > p { align-self: end; max-width: 410px; margin: 0; color: #aaa79f; font-size: 15px; }
.product-link { justify-self: start; padding: 0 0 6px; color: var(--paper); background: none; border: 0; border-bottom: 1px solid #77756e; font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; cursor: pointer; }
.product-link span { margin-left: 14px; }
.product-card-dark .product-body { background: #11110f; }
.visual-note { max-width: 800px; margin: 35px 0 0 auto; color: #77756e; font-size: 11px; line-height: 1.65; }

.statement { position: relative; min-height: 720px; display: grid; align-items: center; color: #fff; overflow: hidden; }
.statement-image { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(15,14,12,.9), rgba(15,14,12,.38)), url("assets/rammed-earth.webp") center/cover; transform: scale(1.03); }
.statement-content { position: relative; z-index: 1; }
.statement blockquote { max-width: 940px; margin: 0 0 50px; font: 400 clamp(42px, 6vw, 88px)/1.02 var(--serif); letter-spacing: -.04em; }

.approach { background: var(--paper-deep); }
.approach .section-heading { margin-bottom: 80px; }
.process-list { display: grid; grid-template-columns: repeat(4, 1fr); margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.process-list li { min-height: 320px; padding: 25px clamp(18px, 2.7vw, 38px) 0 0; border-right: 1px solid var(--line); }
.process-list li:not(:first-child) { padding-left: clamp(18px, 2.7vw, 38px); }
.process-list li:last-child { border-right: 0; }
.process-list span { display: block; margin-bottom: 80px; color: #817d72; font-size: 10px; letter-spacing: .15em; }
.process-list h3 { margin: 0 0 20px; font: 400 38px/1 var(--serif); }
.process-list p { max-width: 250px; margin: 0; color: #68665f; font-size: 14px; }

.about { color: var(--paper); background: #23231f; }
.about-grid { display: grid; grid-template-columns: 120px 1fr; gap: clamp(40px, 7vw, 105px); }
.about-index { display: flex; flex-direction: column; justify-content: space-between; min-height: 650px; padding-block: 9px; color: #77746c; font: 400 14px/1 var(--serif); }
.about-content { max-width: 1150px; }
.about-copy { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(40px, 7vw, 100px); align-items: start; margin-top: 80px; padding-top: 40px; border-top: 1px solid var(--white-line); }
.about-copy > p:last-child { color: #aaa79f; }
.about-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 70px; }
.about-facts div { padding-top: 18px; border-top: 1px solid var(--white-line); }
.about-facts strong, .about-facts span { display: block; }
.about-facts strong { margin-bottom: 8px; font: 400 28px/1.1 var(--serif); }
.about-facts span { color: #8f8c84; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }

.contact { background: var(--paper); }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(65px, 10vw, 165px); }
.contact-intro h2 { margin: 0; font: 400 clamp(60px, 7.5vw, 115px)/.88 var(--serif); letter-spacing: -.055em; }
.contact-intro > p:not(.eyebrow) { max-width: 430px; margin: 40px 0; color: #5f5d56; }
.direct-contact { display: grid; gap: 16px; }
.direct-contact a { display: flex; justify-content: space-between; max-width: 430px; padding-bottom: 10px; border-bottom: 1px solid var(--line); font-size: 13px; }
.inquiry-form { padding-top: 45px; border-top: 1px solid var(--line); }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.inquiry-form label:not(.consent) { display: grid; gap: 8px; margin-bottom: 26px; }
.inquiry-form label > span:first-child { font-size: 10px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.inquiry-form input, .inquiry-form textarea, .inquiry-form select {
  width: 100%;
  padding: 11px 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid #aaa69b;
  border-radius: 0;
  outline: 0;
}
.inquiry-form textarea { min-height: 125px; resize: vertical; }
.inquiry-form input:focus, .inquiry-form textarea:focus, .inquiry-form select:focus { border-color: var(--ink); box-shadow: 0 1px 0 var(--ink); }
.inquiry-form ::placeholder { color: #99958a; }
.consent { display: flex; align-items: flex-start; gap: 11px; margin: 5px 0 28px; color: #66645d; font-size: 12px; }
.consent input { flex: 0 0 auto; width: 15px; margin-top: 3px; }
.consent a { text-decoration: underline; }
.form-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.form-note { max-width: 620px; margin: 18px 0 0; color: #858178; font-size: 11px; }

.site-footer { padding-block: 75px 30px; color: var(--paper); background: #121210; }
.footer-top { display: grid; grid-template-columns: 1fr 1fr auto; align-items: center; gap: 40px; padding-bottom: 60px; border-bottom: 1px solid var(--white-line); }
.brand-footer { width: 230px; height: 69px; }
.brand-footer .brand-logo { width: 230px; }
.footer-top p { margin: 0; color: #87847c; font: 400 22px/1.3 var(--serif); }
.back-top { font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.footer-bottom { display: grid; grid-template-columns: 1fr 1fr auto; gap: 40px; padding-top: 24px; color: #74716a; font-size: 10px; letter-spacing: .06em; }
.footer-bottom p { margin: 0; }

.material-dialog {
  width: min(660px, calc(100% - 30px));
  max-height: calc(100dvh - 30px);
  padding: clamp(36px, 6vw, 72px);
  color: var(--ink);
  background: var(--paper);
  border: 0;
  box-shadow: 0 35px 90px rgba(0,0,0,.4);
}
.material-dialog::backdrop { background: rgba(11,11,9,.78); backdrop-filter: blur(5px); }
.dialog-close { position: absolute; top: 16px; right: 20px; padding: 6px; background: none; border: 0; font: 300 32px/1 var(--sans); cursor: pointer; }
.material-dialog h2 { margin: 0 0 24px; font: 400 clamp(48px, 7vw, 78px)/.9 var(--serif); letter-spacing: -.045em; }
.dialog-lead { color: #5f5c54; font-size: 17px; }
.dialog-details { margin: 35px 0; padding-top: 24px; border-top: 1px solid var(--line); }
.dialog-details h3 { margin: 0 0 15px; font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }
.dialog-details ul { display: grid; grid-template-columns: 1fr 1fr; gap: 9px 25px; margin: 0; padding: 0; list-style: none; color: #605e57; font-size: 13px; }
.dialog-details li::before { content: "— "; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  :root { --shell: min(100% - 36px, 880px); }
  .site-header { height: 74px; padding-inline: 18px; }
  .menu-toggle { display: block; z-index: 2; }
  .site-nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 28px;
    padding: 90px 32px 40px;
    color: var(--paper);
    background: var(--ink);
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.7,0,.2,1);
  }
  .site-nav.open { transform: translateX(0); }
  .site-nav a { font: 400 42px/1 var(--serif); letter-spacing: -.03em; text-transform: none; }
  .site-nav .nav-cta { margin-top: 20px; padding: 15px 18px; font: 700 11px/1 var(--sans); letter-spacing: .1em; text-transform: uppercase; }
  .menu-open .menu-toggle { color: var(--paper); }
  .menu-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
  .menu-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .intro-grid, .section-heading, .contact-grid { grid-template-columns: 1fr; }
  .section-heading > p { margin-left: 0; }
  .product-card-wide { grid-template-columns: 1fr; }
  .product-card-wide .product-media { min-height: 0; aspect-ratio: 3 / 2; }
  .process-list { grid-template-columns: 1fr 1fr; }
  .process-list li:nth-child(2) { border-right: 0; }
  .process-list li:nth-child(n+3) { border-top: 1px solid var(--line); }
  .about-copy { grid-template-columns: 1fr; }
  .contact-intro > p:not(.eyebrow) { margin-bottom: 30px; }
}

@media (max-width: 660px) {
  :root { --shell: calc(100% - 30px); }
  .section { padding-block: 88px; }
  .site-header .brand { width: 165px; height: 50px; }
  .site-header .brand-logo { width: 165px; }
  .hero { min-height: 0; height: 100vh; height: 100svh; align-items: end; }
  .hero-image { object-position: 63% center; }
  .hero-shade { background: linear-gradient(0deg, rgba(8,8,7,.9) 0%, rgba(8,8,7,.58) 55%, rgba(8,8,7,.2)); }
  .hero-content { padding: 0 0 clamp(64px, 14svh, 120px); }
  .hero .eyebrow { margin-bottom: clamp(8px, 2.2svh, 20px); }
  .hero h1 {
    margin-bottom: clamp(12px, 2.8svh, 28px);
    font-size: clamp(64px, 20vw, 88px);
    font-size: clamp(54px, min(20vw, 10.8svh), 88px);
    line-height: .82;
  }
  .hero-copy { max-width: 340px; font-size: 16px; }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: clamp(14px, 2.8svh, 24px);
    margin-top: clamp(16px, 3.5svh, 30px);
  }
  .hero-scroll { display: none; }
  .hero-meta { right: 15px; bottom: 18px; }
  .display { font-size: 62px; }
  .intro-grid { gap: 55px; }
  .section-heading { gap: 28px; margin-bottom: 45px; }
  .section-heading h2 { font-size: 58px; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card-wide { grid-column: auto; }
  .product-card:not(.product-card-wide) .product-body { min-height: 0; }
  .product-body { padding: 29px 24px 38px; }
  .product-body h3 { font-size: 45px; }
  .statement { min-height: 650px; }
  .statement blockquote { font-size: 43px; }
  .process-list { grid-template-columns: 1fr; }
  .process-list li, .process-list li:not(:first-child) { min-height: 250px; padding: 26px 0; border-right: 0; border-top: 1px solid var(--line); }
  .process-list span { margin-bottom: 45px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-index { display: none; }
  .about-copy { margin-top: 50px; }
  .about-facts { grid-template-columns: 1fr; }
  .contact-intro h2 { font-size: 64px; }
  .field-grid { grid-template-columns: 1fr; gap: 0; }
  .form-actions { display: grid; }
  .footer-top, .footer-bottom { grid-template-columns: 1fr; }
  .footer-top { gap: 28px; }
  .footer-bottom { gap: 12px; }
  .dialog-details ul { grid-template-columns: 1fr; }
}

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