:root {
  --ink: #171819;
  --ink-soft: #242628;
  --paper: #f1eee8;
  --paper-deep: #e7e0d7;
  --white: #fffdf9;
  --wood: #a87950;
  --wood-light: #d7b38d;
  --line: rgba(23, 24, 25, .15);
  --line-dark: rgba(255, 255, 255, .14);
  --muted: #696a69;
  --pad: clamp(22px, 5vw, 82px);
  --radius: 3px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 92px;
  padding: 12px var(--pad);
  color: var(--white);
  border-bottom: 1px solid transparent;
  transition: min-height .3s ease, background .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.site-header.is-scrolled {
  min-height: 74px;
  background: rgba(20, 21, 22, .92);
  border-color: var(--line-dark);
  box-shadow: 0 10px 35px rgba(0, 0, 0, .14);
  backdrop-filter: blur(15px);
}
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand img { width: 48px; height: 48px; object-fit: contain; }
.brand__text { display: grid; line-height: 1.1; }
.brand__text strong { font-family: "Manrope", sans-serif; font-size: 13px; letter-spacing: .24em; }
.brand__text small { margin-top: 5px; opacity: .58; font-size: 8px; letter-spacing: .16em; text-transform: uppercase; }
.desktop-nav { display: flex; justify-content: center; gap: clamp(22px, 3vw, 44px); }
.desktop-nav a,
.footer-links a {
  position: relative;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.desktop-nav a::after,
.footer-links a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--wood-light);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}
.desktop-nav a:hover::after,
.footer-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.header-actions { display: flex; align-items: center; gap: 14px; }
.os-access {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}
.os-access svg { width: 14px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
.os-access:hover { color: var(--ink); background: var(--wood-light); border-color: var(--wood-light); }
.menu-toggle { display: none; width: 42px; height: 42px; padding: 0; border: 0; background: transparent; }
.menu-toggle span { display: block; width: 24px; height: 1px; margin: 7px auto; background: currentColor; transition: transform .25s ease; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: grid;
  align-content: center;
  padding: 105px var(--pad) 42px;
  color: var(--white);
  background: var(--ink);
}
.mobile-menu[hidden] { display: none; }
.mobile-menu nav { display: grid; }
.mobile-menu nav a {
  padding: 12px 0;
  font-family: "Newsreader", serif;
  font-size: clamp(36px, 10vw, 58px);
  line-height: 1.05;
  border-bottom: 1px solid var(--line-dark);
}
.mobile-menu__os { display: flex; justify-content: space-between; margin-top: 28px; padding: 16px 0; color: var(--wood-light); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; }

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}
.hero__image,
.hero__veil { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__image { object-fit: cover; object-position: center; animation: hero-enter 1.5s cubic-bezier(.2,.7,.2,1) both; }
.hero__veil {
  background:
    linear-gradient(90deg, rgba(11, 12, 13, .78) 0%, rgba(11, 12, 13, .42) 48%, rgba(11, 12, 13, .22) 100%),
    linear-gradient(0deg, rgba(11, 12, 13, .72) 0%, transparent 48%);
}
.hero__content { position: relative; z-index: 2; max-width: 1040px; padding: 175px var(--pad) clamp(100px, 13vh, 145px); }
.eyebrow { margin: 0 0 18px; color: var(--wood); font-size: 10px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow--light { color: var(--wood-light); }
.hero h1,
.manifesto h2,
.section-heading h2,
.services__intro h2,
.store__content h2,
.contact h2 {
  margin: 0;
  font-family: "Newsreader", serif;
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: .98;
}
.hero h1 { max-width: 940px; font-size: clamp(50px, 7.2vw, 108px); }
.hero h1 em,
.manifesto h2 em,
.contact h2 em { color: var(--wood-light); font-weight: 400; }
.hero__intro { max-width: 580px; margin: 30px 0 0; color: rgba(255, 255, 255, .74); font-size: clamp(14px, 1.3vw, 18px); }
.hero__actions { display: flex; align-items: center; gap: 30px; margin-top: 38px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}
.button span { font-size: 15px; transition: transform .2s ease; }
.button:hover span { transform: translate(2px, -2px); }
.button--gold { color: var(--ink); background: var(--wood-light); }
.button--gold:hover { background: var(--white); transform: translateY(-2px); }
.button--dark { color: var(--white); background: var(--ink); }
.button--dark:hover { background: var(--wood); transform: translateY(-2px); }
.button--outline { border-color: var(--line); }
.button--outline:hover { color: var(--white); background: var(--ink); }
.text-link { display: inline-flex; align-items: center; gap: 14px; font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }
.text-link--light { color: rgba(255,255,255,.82); }
.text-link span { color: var(--wood-light); font-size: 14px; }
.hero__proof { position: absolute; z-index: 2; right: var(--pad); bottom: clamp(95px, 13vh, 142px); display: flex; align-items: end; gap: 12px; padding-left: 22px; border-left: 1px solid rgba(255,255,255,.3); }
.hero__proof strong { font-family: "Newsreader", serif; font-size: 52px; font-weight: 400; line-height: .8; }
.hero__proof span { color: rgba(255,255,255,.62); font-size: 9px; line-height: 1.4; letter-spacing: .12em; text-transform: uppercase; }
.hero__scroll { position: absolute; z-index: 2; bottom: 25px; left: 50%; display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.55); font-size: 8px; letter-spacing: .18em; text-transform: uppercase; transform: translateX(-50%); }
.hero__scroll span { width: 50px; height: 1px; overflow: hidden; background: rgba(255,255,255,.24); }
.hero__scroll span::after { display: block; width: 50%; height: 100%; content: ""; background: var(--wood-light); animation: scroll-line 2s ease-in-out infinite; }

.section-pad { padding: clamp(82px, 12vw, 170px) var(--pad); }
.section-index { color: var(--wood); font-size: 10px; letter-spacing: .16em; }
.manifesto { display: grid; grid-template-columns: minmax(70px, .35fr) 2fr; gap: 40px; background: var(--paper); }
.manifesto__content { max-width: 1140px; }
.manifesto h2 { font-size: clamp(40px, 5.6vw, 82px); }
.manifesto h2 em { color: var(--wood); }
.manifesto__content > p:last-child { max-width: 650px; margin: 40px 0 0 auto; color: var(--muted); font-size: clamp(15px, 1.3vw, 19px); }

.projects { padding-top: clamp(50px, 7vw, 105px); background: var(--white); }
.section-heading { display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; gap: 50px; margin-bottom: clamp(48px, 7vw, 92px); }
.section-heading h2 { max-width: 700px; font-size: clamp(40px, 5vw, 72px); }
.section-heading > p { max-width: 430px; margin: 0; color: var(--muted); font-size: 14px; }
.project-grid { display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(280px, .8fr); align-items: start; gap: clamp(24px, 4vw, 62px); }
.project--portrait { margin-top: clamp(90px, 13vw, 190px); }
.project__image-wrap { position: relative; overflow: hidden; background: var(--paper-deep); }
.project__image-wrap::after { position: absolute; inset: 0; content: ""; border: 1px solid rgba(255,255,255,.12); pointer-events: none; }
.project__image-wrap img { width: 100%; height: clamp(460px, 58vw, 790px); object-fit: cover; transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.project__image-wrap--product img { height: clamp(420px, 44vw, 640px); object-fit: cover; }
.project:hover .project__image-wrap img { transform: scale(1.025); }
.project__number { position: absolute; right: 16px; bottom: 16px; display: grid; width: 42px; height: 42px; place-items: center; color: var(--white); border: 1px solid rgba(255,255,255,.35); border-radius: 50%; background: rgba(20,21,22,.35); font-size: 9px; backdrop-filter: blur(6px); }
.project__meta { display: flex; align-items: end; justify-content: space-between; gap: 20px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.project__meta p { margin: 0 0 3px; color: var(--wood); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.project__meta h3 { margin: 0; font-family: "Newsreader", serif; font-size: 28px; font-weight: 400; }
.project__meta > span { color: var(--muted); font-size: 9px; letter-spacing: .09em; text-align: right; text-transform: uppercase; }
.project-cta { margin-top: 58px; }

.services { display: grid; grid-template-columns: .9fr 1.25fr; color: var(--white); background: var(--ink); }
.services__intro { padding-right: clamp(32px, 6vw, 96px); }
.services__intro h2 { max-width: 620px; font-size: clamp(48px, 6.4vw, 88px); }
.services__intro > p:last-child { max-width: 490px; margin: 30px 0 0; color: rgba(255,255,255,.58); font-size: 14px; }
.service-list { border-left: 1px solid var(--line-dark); }
.service-card { display: grid; grid-template-columns: 80px .8fr 1fr; gap: 24px; align-items: start; min-height: 210px; padding: clamp(42px, 5vw, 72px); border-bottom: 1px solid var(--line-dark); }
.service-card:last-child { border-bottom: 0; }
.service-card > span { color: var(--wood-light); font-size: 10px; }
.service-card h3 { margin: 0; font-family: "Newsreader", serif; font-size: clamp(29px, 3vw, 42px); font-weight: 400; line-height: 1.05; }
.service-card p { margin: 0; color: rgba(255,255,255,.55); font-size: 13px; }

.process { background: var(--paper-deep); }
.process-list { margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.process-list li { display: grid; grid-template-columns: 100px 1fr; gap: 25px; align-items: center; min-height: 150px; padding: 28px 0; border-bottom: 1px solid var(--line); }
.process-list li > span { color: var(--wood); font-family: "Newsreader", serif; font-size: 32px; }
.process-list div { display: grid; grid-template-columns: .7fr 1fr; gap: 35px; align-items: center; }
.process-list h3 { margin: 0; font-family: "Newsreader", serif; font-size: clamp(34px, 4.3vw, 62px); font-weight: 400; }
.process-list p { max-width: 540px; margin: 0; color: var(--muted); font-size: 14px; }

.store { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(45px, 8vw, 125px); align-items: center; background: var(--white); }
.store__visual { position: relative; min-height: 670px; overflow: hidden; background: var(--paper); }
.store__visual img { width: 100%; height: 100%; min-height: 670px; object-fit: cover; }
.store__tag { position: absolute; z-index: 2; top: 20px; left: 20px; padding: 8px 11px; color: var(--white); background: var(--ink); font-size: 8px; letter-spacing: .14em; text-transform: uppercase; }
.store__content { max-width: 600px; }
.store__content h2 { font-size: clamp(44px, 5vw, 73px); }
.store__content > p { margin: 28px 0; color: var(--muted); font-size: 14px; }
.store__product { display: flex; justify-content: space-between; gap: 24px; margin: 36px 0; padding: 20px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.store__product div { display: grid; }
.store__product span { color: var(--muted); font-size: 9px; letter-spacing: .09em; text-transform: uppercase; }
.store__product strong { margin-top: 4px; font-family: "Newsreader", serif; font-size: 26px; font-weight: 400; }

.contact { position: relative; min-height: 780px; display: grid; grid-template-columns: 1.4fr .6fr; align-items: end; gap: 70px; overflow: hidden; padding: clamp(95px, 13vw, 180px) var(--pad) 80px; color: var(--white); background: #111213; }
.contact::before { position: absolute; top: -220px; right: -160px; width: 670px; height: 670px; content: ""; border: 1px solid rgba(215,179,141,.16); border-radius: 50%; box-shadow: 0 0 0 90px rgba(215,179,141,.025), 0 0 0 180px rgba(215,179,141,.02); }
.contact__grain { position: absolute; inset: 0; opacity: .16; background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px); background-size: 54px 54px; }
.contact__content,
.contact__details { position: relative; z-index: 1; }
.contact h2 { max-width: 950px; font-size: clamp(50px, 7.2vw, 104px); }
.contact .button { margin-top: 42px; }
.contact__details { display: grid; gap: 24px; padding: 28px; border: 1px solid var(--line-dark); background: rgba(255,255,255,.035); backdrop-filter: blur(8px); }
.contact__details div { display: grid; gap: 2px; padding-bottom: 18px; border-bottom: 1px solid var(--line-dark); }
.contact__details div:last-child { padding-bottom: 0; border-bottom: 0; }
.contact__details span { color: var(--wood-light); font-size: 8px; letter-spacing: .16em; text-transform: uppercase; }
.contact__details strong { font-size: 12px; font-weight: 400; }

.site-footer { display: grid; grid-template-columns: 1fr 1fr auto; align-items: center; gap: 30px; padding: 36px var(--pad); color: rgba(255,255,255,.72); background: #0b0c0d; border-top: 1px solid var(--line-dark); }
.brand--footer { color: var(--white); }
.site-footer > p { margin: 0; font-family: "Newsreader", serif; font-size: 18px; }
.footer-links { display: flex; gap: 28px; }
.site-footer > small { grid-column: 1 / -1; padding-top: 26px; color: rgba(255,255,255,.35); border-top: 1px solid rgba(255,255,255,.08); font-size: 8px; letter-spacing: .14em; text-transform: uppercase; }

.whatsapp-float { position: fixed; z-index: 80; right: 22px; bottom: 22px; display: grid; width: 54px; height: 54px; place-items: center; color: var(--white); border: 1px solid rgba(255,255,255,.3); border-radius: 50%; background: #1f8f5f; box-shadow: 0 10px 30px rgba(0,0,0,.2); transition: transform .2s ease, background .2s ease; }
.whatsapp-float:hover { background: #18794f; transform: translateY(-3px); }
.whatsapp-float svg { display: block; width: 25px; height: 25px; overflow: visible; fill: currentColor; }

.reveal { opacity: 1; transform: translateY(0); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.reveal-pending { opacity: 0; transform: translateY(35px); }
.reveal.reveal-pending.is-visible { opacity: 1; transform: translateY(0); }

@keyframes hero-enter { from { opacity: .55; transform: scale(1.045); } to { opacity: 1; transform: scale(1); } }
@keyframes scroll-line { 0%,100% { transform: translateX(-100%); } 50% { transform: translateX(200%); } }

@media (max-width: 1120px) {
  .desktop-nav { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .menu-toggle { display: block; }
  .services { grid-template-columns: 1fr; }
  .services__intro { padding-bottom: 75px; }
  .service-list { border-top: 1px solid var(--line-dark); border-left: 0; }
  .site-footer { grid-template-columns: 1fr auto; }
  .site-footer > p { display: none; }
}

@media (max-width: 780px) {
  :root { --pad: 22px; }
  .site-header { min-height: 78px; }
  .site-header.is-scrolled { min-height: 68px; }
  .brand img { width: 42px; height: 42px; }
  .brand__text strong { font-size: 11px; }
  .os-access { width: 42px; padding: 0; justify-content: center; }
  .os-access span { display: none; }
  .hero__image { object-position: 58% center; }
  .hero__veil { background: linear-gradient(0deg, rgba(11,12,13,.88) 0%, rgba(11,12,13,.45) 67%, rgba(11,12,13,.24) 100%); }
  .hero__content { padding-top: 135px; padding-bottom: 112px; }
  .hero h1 { font-size: clamp(45px, 14.5vw, 68px); }
  .hero__intro { margin-top: 22px; font-size: 14px; }
  .hero__actions { align-items: flex-start; flex-direction: column; gap: 20px; margin-top: 30px; }
  .hero__actions .button { width: 100%; }
  .hero__proof { display: none; }
  .hero__scroll { left: var(--pad); transform: none; }
  .manifesto { grid-template-columns: 1fr; gap: 25px; }
  .manifesto h2 { font-size: 43px; }
  .manifesto__content > p:last-child { margin-top: 28px; }
  .section-heading { grid-template-columns: 1fr; gap: 24px; }
  .section-heading h2 { font-size: 43px; }
  .project-grid { grid-template-columns: 1fr; }
  .project--portrait { margin-top: 25px; }
  .project__image-wrap img,
  .project__image-wrap--product img { height: min(118vw, 610px); }
  .project__meta { align-items: start; flex-direction: column; gap: 8px; }
  .project__meta > span { text-align: left; }
  .project-cta { width: 100%; }
  .services__intro h2 { font-size: 50px; }
  .service-card { grid-template-columns: 50px 1fr; gap: 16px; min-height: 0; padding: 40px 22px; }
  .service-card p { grid-column: 2; }
  .process-list li { grid-template-columns: 55px 1fr; }
  .process-list div { grid-template-columns: 1fr; gap: 8px; }
  .process-list p { font-size: 13px; }
  .store { grid-template-columns: 1fr; gap: 50px; }
  .store__visual,
  .store__visual img { min-height: 480px; }
  .store__content h2 { font-size: 47px; }
  .store__product { align-items: start; flex-direction: column; }
  .store__content .button { width: 100%; }
  .contact { grid-template-columns: 1fr; min-height: 780px; gap: 70px; }
  .contact h2 { font-size: clamp(50px, 14vw, 68px); }
  .contact .button { width: 100%; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-links { flex-wrap: wrap; }
  .whatsapp-float { right: 16px; bottom: 16px; width: 50px; height: 50px; }
}

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