:root {
  --ink: #161817;
  --ink-soft: #222522;
  --paper: #f3f2ed;
  --white: #ffffff;
  --grey: #70736e;
  --line: #cfcec7;
  --lime: #B8875B;
  --lime-dark: #9F7048;
  --green: #1f6f4a;
  --max: 1240px;
  --header: 82px;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body { margin: 0; min-width: 320px; overflow-x: hidden; background: var(--paper); }
body.menu-open { overflow: hidden; }

img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }

.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;
}

.section-shell { width: min(calc(100% - 56px), var(--max)); margin: 0 auto; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(28px, 4vw, 76px);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  transition: height 180ms ease, background 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  height: 68px;
  color: var(--ink);
  background: rgba(243, 242, 237, 0.96);
  border-bottom-color: var(--line);
  backdrop-filter: blur(16px);
}

.logo { display: inline-flex; align-items: center; gap: 13px; min-width: max-content; }

.logo-mark {
  display: grid;
  grid-template-columns: repeat(2, 10px);
  grid-template-rows: repeat(2, 10px);
  gap: 2px;
  transform: rotate(45deg);
}

.logo-mark i { display: block; border: 1px solid currentColor; }
.logo-mark i:nth-child(1), .logo-mark i:nth-child(4) { background: var(--lime); border-color: var(--lime); }

.logo-word { display: grid; grid-template-columns: auto auto; gap: 5px; font-size: 0.94rem; letter-spacing: 0; }
.logo-word strong { font-weight: 900; }
.logo-word span { font-weight: 400; opacity: 0.72; }

.site-nav { display: flex; align-items: center; gap: 30px; font-size: 0.86rem; font-weight: 700; }
.site-nav > a:not(.nav-cta) { padding: 10px 0; border-bottom: 1px solid transparent; }
.site-nav > a:not(.nav-cta):hover { border-color: currentColor; }

.nav-cta {
  display: inline-flex;
  gap: 20px;
  align-items: center;
  padding: 12px 16px;
  color: var(--ink);
  background: var(--lime);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid currentColor;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) { display: block; width: 19px; height: 1px; margin: 6px auto; background: currentColor; transition: transform 160ms ease; }
.site-header.is-open .menu-toggle span:first-child { transform: translateY(3.5px) rotate(45deg); }
.site-header.is-open .menu-toggle span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

.hero { color: var(--white); background: var(--ink); }

.hero-stage {
  min-height: 760px;
  height: 100vh;
  max-height: 900px;
  display: grid;
  grid-template-columns: minmax(560px, 0.9fr) minmax(560px, 1.1fr);
}

.hero-copy-block {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--header) + 44px) clamp(44px, 5vw, 88px) 52px clamp(34px, 4vw, 78px);
  background: var(--ink);
}

.hero-copy-block::after {
  position: absolute;
  content: "";
  inset: var(--header) 0 0;
  pointer-events: none;
  opacity: 0.1;
  background-image: linear-gradient(rgba(255,255,255,.38) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.38) 1px, transparent 1px);
  background-size: 112px 112px;
  mask-image: linear-gradient(90deg, transparent, #000);
}

.hero-copy-block > * { position: relative; z-index: 1; }

.kicker {
  margin: 0 0 20px;
  color: #75806b;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .kicker, .process-section .kicker, .contact-section .kicker { color: var(--lime); }

h1, h2, h3, p { overflow-wrap: break-word; }
h1, h2 { margin: 0; letter-spacing: 0; }

h1 {
  max-width: 760px;
  font-size: clamp(3.5rem, 4.25vw, 5.45rem);
  font-weight: 900;
  line-height: 0.91;
  text-transform: uppercase;
  overflow-wrap: normal;
  word-break: keep-all;
  hyphens: none;
}

h1 span { display: block; }
h1 span { white-space: nowrap; }
h1 span:last-child { max-width: 650px; color: var(--lime); }

h2 { font-size: clamp(2.4rem, 4.4vw, 5rem); font-weight: 850; line-height: 0.94; }
h3 { margin: 0; font-size: 1.25rem; line-height: 1.2; }

p { color: var(--grey); line-height: 1.6; }

.hero-intro { max-width: 500px; margin: 22px 0 0; color: rgba(255,255,255,.72); font-size: 1.08rem; }
.hero-actions { display: flex; align-items: center; gap: 26px; margin-top: 22px; }

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 14px 18px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease;
}

.button:hover { transform: translateY(-2px); }
.button-accent { color: var(--ink); background: var(--lime); }
.button-accent:hover { background: var(--lime-dark); }

.text-link { display: inline-flex; align-items: center; gap: 18px; font-size: 0.88rem; font-weight: 750; border-bottom: 1px solid rgba(255,255,255,.4); padding-bottom: 5px; }
.text-link.dark { border-color: var(--ink); }

.hero-quote-card {
  scroll-margin-top: 108px;
  max-width: 700px;
  margin-top: 28px;
  color: var(--ink);
  background: var(--lime);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
}

.hero-proof { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 26px; font-size: 0.75rem; }

.hero-proof span { color: var(--lime); font-weight: 800; }
.hero-proof p { margin: 0; color: rgba(255,255,255,.58); line-height: 1.2; }

.hero-media { position: relative; min-width: 0; margin: 0; overflow: hidden; }
.hero-media::after { position: absolute; content: ""; inset: 0; background: linear-gradient(90deg, rgba(22,24,23,.36), transparent 30%); pointer-events: none; }
.hero-media img { height: 100%; object-fit: cover; object-position: 57% center; }

.hero-media figcaption {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 28px;
  display: grid;
  gap: 4px;
  padding: 14px 18px;
  color: var(--white);
  border-left: 3px solid var(--lime);
  background: rgba(22,24,23,.72);
  backdrop-filter: blur(12px);
}

.hero-media figcaption span { font-size: 0.68rem; opacity: .66; text-transform: uppercase; letter-spacing: .12em; }
.hero-media figcaption strong { font-size: 0.88rem; }

.quote-heading { display: flex; flex-direction: column; justify-content: center; gap: 5px; padding: 18px 22px 16px; border-bottom: 1px solid rgba(22,24,23,.26); }
.quote-heading span { font-size: .7rem; font-weight: 850; text-transform: uppercase; letter-spacing: .1em; }
.quote-heading strong { font-size: 1.08rem; }

.quote-form { display: grid; grid-template-columns: 1.25fr 0.75fr 1fr; align-items: stretch; }
.quote-form label { display: flex; flex-direction: column; justify-content: center; gap: 7px; min-width: 0; padding: 15px 18px; border-right: 1px solid rgba(22,24,23,.26); border-bottom: 1px solid rgba(22,24,23,.26); }
.quote-form label > span { font-size: .68rem; font-weight: 850; text-transform: uppercase; }
.quote-form input, .quote-form select { width: 100%; min-width: 0; padding: 0; border: 0; color: var(--ink); background: transparent; outline: none; font-weight: 750; }
.quote-form input::placeholder { color: rgba(22,24,23,.52); }
.quote-form button { grid-column: 1 / -1; min-height: 54px; padding: 16px 22px; border: 0; color: var(--white); background: var(--ink); font-weight: 800; cursor: pointer; }
.quote-form button span { margin-left: 18px; }
.quote-form button:hover { background: #2b2f2c; }

.work-section { padding: clamp(86px, 10vw, 150px) 0; }
.work-heading { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(280px, .5fr); gap: 56px; align-items: end; margin-bottom: 60px; }
.work-heading > p { max-width: 400px; margin: 0 0 6px; font-size: 1.02rem; }

.work-grid { display: grid; grid-template-columns: 1.35fr .65fr; grid-template-rows: 320px 320px; gap: 14px; }
.work-item { position: relative; min-width: 0; margin: 0; overflow: hidden; background: #dad9d3; }
.work-item-main { grid-row: span 2; }
.work-item img { height: 100%; object-fit: cover; transition: transform 500ms ease; }
.work-item-main img { object-position: 62% center; }
.work-item-detail img { object-position: center 45%; }
.work-item:hover img { transform: scale(1.025); }
.work-item::after { position: absolute; content: ""; inset: 45% 0 0; background: linear-gradient(transparent, rgba(16,18,17,.72)); }

.work-item figcaption {
  position: absolute;
  z-index: 2;
  inset: auto 22px 20px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2px 12px;
  color: var(--white);
}

.work-item figcaption span { grid-row: span 2; padding-top: 3px; color: var(--lime); font-size: .72rem; font-weight: 850; }
.work-item figcaption strong { font-size: 1rem; }
.work-item figcaption small { opacity: .68; }

.services-section { padding: clamp(90px, 11vw, 160px) 0; background: var(--white); }
.services-layout { display: grid; grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr); gap: clamp(60px, 9vw, 140px); }
.services-intro { position: sticky; top: 118px; align-self: start; }
.services-intro > p:not(.kicker) { max-width: 390px; margin: 24px 0 34px; font-size: 1.02rem; }

.service-index { padding: 0; margin: 0; list-style: none; border-top: 1px solid var(--line); }
.service-index li { display: grid; grid-template-columns: 54px minmax(190px, .75fr) minmax(220px, 1fr); gap: 20px; align-items: baseline; padding: 31px 0; border-bottom: 1px solid var(--line); }
.service-index li > span { color: #8a8e87; font-size: .72rem; font-weight: 850; }
.service-index li h3 { font-size: clamp(1.2rem, 2vw, 1.65rem); }
.service-index li p { margin: 0; }

.craft-section { display: grid; grid-template-columns: 1.08fr .92fr; min-height: 680px; background: #d9d9d2; }
.craft-image { min-width: 0; }
.craft-image img { height: 100%; object-fit: cover; }
.craft-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(54px, 8vw, 120px); }
.craft-copy > p:not(.kicker) { max-width: 540px; margin: 28px 0 32px; font-size: 1.04rem; color: #50534f; }
.craft-copy ul { display: grid; gap: 16px; padding: 0; margin: 0; list-style: none; font-weight: 750; }
.craft-copy li { display: flex; gap: 14px; align-items: center; }
.craft-copy li span { color: var(--green); }

.process-section { padding: clamp(90px, 11vw, 150px) 0; color: var(--white); background: var(--ink); }
.process-heading { display: grid; grid-template-columns: 1.2fr 1fr; gap: 0 70px; align-items: end; margin-bottom: 64px; }
.process-heading .kicker { grid-column: 1 / -1; }
.process-heading > p:last-child { max-width: 330px; margin: 0 0 6px; color: rgba(255,255,255,.56); }
.process-list { display: grid; grid-template-columns: repeat(3, 1fr); padding: 0; margin: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.22); }
.process-list li { min-height: 260px; padding: 30px 38px 30px 0; border-right: 1px solid rgba(255,255,255,.22); }
.process-list li + li { padding-left: 38px; }
.process-list li:last-child { border-right: 0; }
.process-list span { display: block; margin-bottom: 72px; color: var(--lime); font-size: .72rem; font-weight: 850; }
.process-list p { max-width: 290px; margin: 14px 0 0; color: rgba(255,255,255,.55); }

.faq-section { padding: clamp(90px, 11vw, 150px) 0; }
.faq-layout { display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(60px, 9vw, 140px); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 26px 54px 26px 0; font-size: 1.05rem; font-weight: 800; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { position: absolute; content: "+"; right: 4px; top: 24px; font-size: 1.3rem; font-weight: 400; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 620px; margin: -7px 50px 25px 0; }

.contact-section { position: relative; overflow: hidden; padding: clamp(90px, 12vw, 170px) 0 65px; color: var(--white); background: #29302d; }
.contact-section::before { position: absolute; content: ""; width: 620px; aspect-ratio: 1; right: -150px; top: -180px; opacity: .1; background-image: linear-gradient(var(--white) 1px, transparent 1px), linear-gradient(90deg, var(--white) 1px, transparent 1px); background-size: 103px 103px; transform: rotate(12deg); }
.contact-inner { position: relative; }
.contact-inner h2 { max-width: 760px; font-size: clamp(3.5rem, 7vw, 7.5rem); text-transform: uppercase; }
.contact-inner .button { margin-top: 42px; }
.contact-meta { display: flex; flex-wrap: wrap; gap: 20px 42px; margin-top: 90px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.68); font-size: .88rem; }

.floating-whatsapp { position: fixed; z-index: 45; right: 22px; bottom: 22px; display: inline-flex; align-items: center; gap: 10px; min-height: 50px; padding: 8px 15px 8px 8px; color: var(--white); background: var(--green); box-shadow: 0 14px 36px rgba(10,30,22,.25); }
.floating-whatsapp > span { display: inline-flex; width: 34px; height: 34px; align-items: center; justify-content: center; border-radius: 50%; color: var(--green); background: var(--white); font-size: .64rem; font-weight: 900; }
.floating-whatsapp strong { font-size: .82rem; }

.site-footer { padding: 34px 0; color: rgba(255,255,255,.72); background: var(--ink); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.footer-inner p, .footer-inner > span { margin: 0; color: inherit; font-size: .78rem; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 520ms ease, transform 520ms ease; }
.reveal.is-visible { opacity: 1; transform: none; }

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

@media (max-width: 1020px) {
  .menu-toggle { display: block; }
  .site-nav { position: fixed; inset: 68px 14px auto; display: grid; gap: 0; padding: 10px; color: var(--ink); background: var(--paper); border: 1px solid var(--line); opacity: 0; pointer-events: none; transform: translateY(-8px); transition: opacity 160ms ease, transform 160ms ease; }
  .site-nav.is-open { opacity: 1; pointer-events: auto; transform: none; }
  .site-nav a { padding: 14px; }
  .site-nav > a:not(.nav-cta) { border-bottom: 0; }
  .nav-cta { justify-content: space-between; margin-top: 4px; }

  .hero-stage { min-height: 760px; grid-template-columns: 1fr 1fr; }
  .hero-copy-block { padding-left: 28px; padding-right: 36px; }
  h1 { font-size: clamp(3rem, 6.7vw, 4.7rem); }
  .hero-proof { margin-top: 34px; }

  .quote-form { min-height: 104px; }

  .services-layout, .faq-layout { grid-template-columns: 1fr; }
  .services-intro { position: static; }
  .service-index li { grid-template-columns: 54px minmax(190px,.7fr) 1fr; }
  .craft-section { grid-template-columns: 1fr; }
  .craft-image { height: 520px; }
  .process-heading { grid-template-columns: 1fr; }
  .process-heading > p:last-child { margin-top: 22px; }
}

@media (max-width: 720px) {
  :root { --header: 68px; }
  .section-shell { width: min(calc(100% - 28px), var(--max)); }
  .site-header { padding-inline: 14px; }

  .hero-stage { min-height: auto; height: auto; max-height: none; display: flex; flex-direction: column-reverse; }
  .hero-media { height: 30svh; min-height: 220px; max-height: 280px; }
  .hero-media::after { background: linear-gradient(0deg, var(--ink), transparent 35%); }
  .hero-media figcaption { display: none; }
  .hero-copy-block { padding: 42px 14px 48px; }
  .hero-copy-block::after { inset: 0; background-size: 78px 78px; }
  h1 { max-width: 100%; font-size: 1.82rem; line-height: .96; }
  h1 span { white-space: nowrap; }
  h2 { font-size: clamp(2.25rem, 11vw, 3.5rem); }
  .hero-intro { max-width: 20rem; margin-top: 22px; }
  .hero-actions { display: grid; align-items: stretch; gap: 20px; }
  .hero-actions .button { width: 100%; justify-content: space-between; }
  .hero-actions .text-link { width: max-content; }
  .hero-proof { margin-top: 36px; }
  .hero-proof { grid-template-columns: auto 1fr; width: max-content; }

  .quote-heading { padding: 20px 14px; }
  .quote-form { display: grid; grid-template-columns: 1fr 1fr; }
  .quote-form label { padding: 16px 14px; border-bottom: 1px solid rgba(22,24,23,.28); }
  .quote-form label:first-child { grid-column: 1 / -1; }
  .quote-form label:nth-child(3) { border-right: 0; }
  .quote-form button { grid-column: 1 / -1; min-height: 58px; }

  .work-heading { grid-template-columns: 1fr; gap: 22px; margin-bottom: 36px; }
  .work-grid { display: grid; grid-template-columns: 1fr; grid-template-rows: repeat(3, 330px); }
  .work-item-main { grid-row: auto; }

  .service-index li { grid-template-columns: 36px 1fr; gap: 10px; }
  .service-index li p { grid-column: 2; }
  .craft-image { height: 380px; }
  .craft-copy { padding: 60px 14px; }

  .process-heading { margin-bottom: 42px; }
  .process-list { grid-template-columns: 1fr; }
  .process-list li, .process-list li + li { min-height: auto; padding: 26px 0 30px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.22); }
  .process-list li:last-child { border-bottom: 0; }
  .process-list span { margin-bottom: 34px; }

  .contact-inner h2 { font-size: clamp(3.1rem, 15vw, 5rem); }
  .contact-inner .button { width: 100%; justify-content: space-between; }
  .contact-meta { display: grid; margin-top: 68px; }

  .floating-whatsapp { right: 14px; bottom: 14px; width: 52px; height: 52px; justify-content: center; padding: 0; border-radius: 50%; }
  .floating-whatsapp > span { width: 32px; height: 32px; }
  .floating-whatsapp strong { display: none; }

  .footer-inner { display: grid; justify-items: start; }
}
