:root {
  --walnut-950: #100d09;
  --walnut-900: #18120d;
  --walnut-850: #21170f;
  --walnut-800: #2d2118;
  --cedar-700: #764426;
  --cedar-600: #995c31;
  --honey-500: #d49a3a;
  --honey-400: #e6b85a;
  --sage-700: #4f5f3c;
  --sage-500: #7f9062;
  --sage-300: #b8c39b;
  --paper-100: #f7eddb;
  --paper-200: #ead8b9;
  --paper-300: #d5bd92;
  --white: #fffaf1;
  --ink: #18110b;
  --muted-dark: #6e604f;
  --muted-light: #d8c7ac;
  --line-dark: rgba(24, 17, 11, 0.15);
  --line-light: rgba(255, 250, 241, 0.18);
  --shadow-soft: 0 18px 50px rgba(24, 17, 11, 0.18);
  --shadow-deep: 0 28px 90px rgba(0, 0, 0, 0.38);
  --radius: 8px;
  --container: 1180px;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 36px);
  background: var(--walnut-950);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--white);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  background:
    linear-gradient(90deg, rgba(255, 250, 241, 0.035) 1px, transparent 1px) 0 0 / 92px 92px,
    linear-gradient(180deg, var(--walnut-950), var(--walnut-900));
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(127, 144, 98, 0.09), transparent 42%),
    linear-gradient(25deg, transparent 58%, rgba(153, 92, 49, 0.12) 58% 59%, transparent 59%);
}

img,
svg {
  display: block;
}

picture {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--honey-400);
  outline-offset: 4px;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section-pad {
  padding: clamp(76px, 9vw, 124px) 0;
  scroll-margin-top: calc(var(--header-height) + 36px);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 900;
  letter-spacing: 0;
}

h1 {
  max-width: 13.4ch;
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(3.35rem, 6.8vw, 6.35rem);
  line-height: 0.95;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 4.6vw, 4.8rem);
  line-height: 0.98;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
  line-height: 1.25;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 50;
  width: min(calc(100% - 32px), 1240px);
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(255, 250, 241, 0.16);
  border-radius: var(--radius);
  background: rgba(16, 13, 9, 0.74);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
  transform: translateX(-50%);
  transition: top 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
  top: 10px;
  background: rgba(16, 13, 9, 0.94);
  border-color: rgba(212, 154, 58, 0.38);
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.38);
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 2px solid var(--honey-400);
  color: var(--honey-400);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 900;
  background: rgba(212, 154, 58, 0.08);
}

.brand-copy {
  min-width: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--white);
  font-size: 0.98rem;
  line-height: 1.1;
  white-space: nowrap;
}

.brand small {
  margin-top: 4px;
  color: var(--muted-light);
  font-size: 0.74rem;
}

.nav-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.nav-menu a {
  padding: 10px 12px;
  color: rgba(255, 250, 241, 0.78);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease;
}

.nav-menu a:hover {
  color: var(--walnut-950);
  background: var(--honey-400);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(255, 250, 241, 0.07);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--walnut-950);
  background: var(--honey-400);
  box-shadow: 7px 7px 0 rgba(153, 92, 49, 0.72);
}

.btn-primary:hover {
  background: #f0c566;
}

.btn-quiet {
  color: var(--white);
  border-color: rgba(255, 250, 241, 0.26);
  background: rgba(255, 250, 241, 0.08);
}

.btn-dark {
  color: var(--white);
  background: var(--walnut-950);
  box-shadow: 7px 7px 0 rgba(153, 92, 49, 0.28);
}

.btn-light-outline {
  color: var(--ink);
  border-color: rgba(24, 17, 11, 0.28);
  background: transparent;
}

.btn-large {
  min-height: 54px;
  padding-inline: 24px;
}

.eyebrow,
.edition-label,
.card-index {
  color: var(--honey-400);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  flex: 0 0 34px;
  background: currentColor;
}

.eyebrow.dark {
  color: var(--cedar-700);
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 148px 0 56px;
  display: flex;
  align-items: stretch;
  isolation: isolate;
  overflow: hidden;
}

.hero-plate {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background: var(--walnut-950);
}

.hero-plate img,
.hero-plate picture,
.hero-plate .image-fallback {
  width: 100%;
  height: 100%;
}

.hero-plate img {
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) contrast(1.05);
  opacity: 0.58;
}

.hero-plate::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 13, 9, 0.96) 0%, rgba(16, 13, 9, 0.86) 48%, rgba(16, 13, 9, 0.52) 100%),
    linear-gradient(180deg, rgba(16, 13, 9, 0.2), rgba(16, 13, 9, 0.92));
}

.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  width: min(34vw, 460px);
  height: min(46vh, 440px);
  background: linear-gradient(135deg, transparent 0 50%, rgba(118, 68, 38, 0.82) 50%);
}

.hero-layout {
  min-height: calc(100svh - 204px);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.5fr);
  grid-template-rows: auto auto auto auto;
  gap: 30px clamp(32px, 6vw, 82px);
  align-items: end;
}

.edition-label {
  grid-column: 1;
  grid-row: 1;
  max-width: 42ch;
  margin: 0;
}

.hero-title-wrap {
  grid-column: 1;
  grid-row: 2;
  position: relative;
  z-index: 2;
  align-self: end;
}

.hero-number {
  position: absolute;
  right: clamp(-16px, 1vw, 16px);
  bottom: -0.14em;
  z-index: -1;
  color: rgba(255, 250, 241, 0.08);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(7rem, 18vw, 16rem);
  font-weight: 900;
  line-height: 1;
}

.hero-brief {
  grid-column: 1;
  grid-row: 3;
  max-width: 690px;
}

.hero-brief p {
  margin-bottom: 28px;
  color: var(--paper-100);
  font-size: clamp(1.06rem, 1.6vw, 1.25rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-facts {
  grid-column: 1;
  grid-row: 4;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 0;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.hero-facts div {
  padding: 17px 0;
  border-bottom: 1px solid var(--line-light);
}

.hero-facts div:last-child {
  border-bottom: 0;
}

.hero-facts dt {
  color: var(--honey-400);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 4px 0 0;
  color: var(--white);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.hero-showcase {
  grid-column: 2;
  grid-row: 2 / 5;
  position: relative;
  z-index: 1;
  align-self: stretch;
  min-height: 440px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 241, 0.2);
  border-radius: var(--radius);
  background: var(--walnut-850);
  box-shadow: var(--shadow-deep);
}

.hero-showcase::before {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 2;
  border: 1px solid rgba(255, 250, 241, 0.22);
  pointer-events: none;
}

.hero-showcase picture,
.hero-showcase img {
  width: 100%;
  height: 100%;
}

.hero-showcase img {
  object-fit: cover;
  filter: saturate(0.9) contrast(1.03);
}

.hero-showcase figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 3;
  padding: 16px;
  border: 1px solid rgba(255, 250, 241, 0.18);
  color: var(--white);
  background: rgba(16, 13, 9, 0.82);
}

.hero-showcase figcaption span,
.hero-showcase figcaption strong {
  display: block;
}

.hero-showcase figcaption span {
  margin-bottom: 4px;
  color: var(--honey-400);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.intro-section {
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(24, 17, 11, 0.06) 1px, transparent 1px) 0 0 / 92px 92px,
    var(--paper-100);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1fr);
  gap: clamp(32px, 7vw, 92px);
  align-items: start;
}

.intro-kicker h2 {
  color: var(--ink);
}

.intro-copy {
  padding-left: clamp(22px, 4vw, 44px);
  border-left: 6px solid var(--sage-700);
}

.intro-copy p {
  color: rgba(24, 17, 11, 0.78);
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
}

.intro-copy p:last-child {
  margin-bottom: 0;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 44px;
}

.section-heading p {
  color: inherit;
  font-size: 1.08rem;
}

.gallery-section {
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(24, 17, 11, 0.06) 1px, transparent 1px) 0 0 / 92px 92px,
    linear-gradient(180deg, var(--paper-200), var(--paper-100));
}

.gallery-section .section-heading p {
  color: var(--muted-dark);
}

.gallery-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: clamp(82px, 8vw, 118px);
  gap: 14px;
  align-items: stretch;
  padding: 14px;
  border: 1px solid rgba(24, 17, 11, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 250, 241, 0.06), rgba(255, 250, 241, 0.02)),
    var(--walnut-900);
  box-shadow: var(--shadow-soft);
}

.gallery-card {
  position: relative;
  grid-column: span 4;
  grid-row: span 3;
  min-height: 0;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 241, 0.15);
  border-radius: var(--radius);
  color: var(--white);
  background: var(--walnut-850);
  box-shadow: none;
  isolation: isolate;
  transition: transform 180ms ease, border-color 180ms ease;
}

.gallery-card-large {
  grid-column: span 7;
  grid-row: span 5;
}

.gallery-card-wide {
  grid-column: span 8;
  grid-row: span 3;
}

.gallery-card:hover {
  transform: translateY(-4px);
  border-color: rgba(230, 184, 90, 0.48);
}

.gallery-card picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  overflow: hidden;
  border: 0;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.88) contrast(1.04);
  transform: scale(1.012);
  transition: transform 420ms ease, filter 420ms ease;
}

.gallery-card:hover img {
  filter: saturate(0.95) contrast(1.06);
  transform: scale(1.045);
}

.gallery-card:nth-child(1) img {
  object-position: center 56%;
}

.gallery-card:nth-child(2) {
  grid-column: span 5;
  grid-row: span 2;
}

.gallery-card:nth-child(2) img {
  object-position: center 46%;
}

.gallery-card:nth-child(3) {
  grid-column: span 5;
  grid-row: span 3;
}

.gallery-card:nth-child(4) {
  grid-column: span 4;
  grid-row: span 3;
}

.gallery-card:nth-child(6),
.gallery-card:nth-child(7) {
  grid-column: span 6;
  grid-row: span 3;
}

.gallery-card:nth-child(5) img {
  object-position: center 58%;
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 42%, rgba(16, 13, 9, 0.84)),
    linear-gradient(90deg, rgba(16, 13, 9, 0.12), transparent 48%);
  pointer-events: none;
}

.gallery-content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  max-width: 92%;
  padding: clamp(14px, 2vw, 22px);
  color: var(--white);
}

.gallery-content h3 {
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(1rem, 1.6vw, 1.32rem);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.34);
}

.gallery-content p {
  margin-bottom: 0;
  color: var(--paper-100);
  font-size: 0.94rem;
}

.card-index {
  margin-bottom: 7px !important;
  color: var(--honey-400) !important;
}

.gallery-card:not(.gallery-card-large):not(.gallery-card-wide) .gallery-content p:not(.card-index) {
  display: none;
}

.custom-section {
  background:
    linear-gradient(90deg, rgba(255, 250, 241, 0.035) 1px, transparent 1px) 0 0 / 92px 92px,
    linear-gradient(135deg, var(--walnut-950), var(--walnut-850) 62%, #202716);
}

.custom-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 5vw, 54px);
  align-items: start;
}

.custom-spotlight {
  position: sticky;
  top: calc(var(--header-height) + 32px);
  padding-left: 26px;
  border-left: 6px solid var(--honey-400);
}

.custom-spotlight h2 {
  color: var(--white);
}

.custom-spotlight p {
  margin-bottom: 28px;
  color: var(--muted-light);
  font-size: 1.08rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.benefit-card {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.075), rgba(255, 250, 241, 0.035)),
    rgba(16, 13, 9, 0.54);
}

.benefit-card span {
  display: inline-block;
  margin-bottom: 32px;
  color: var(--honey-400);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.benefit-card p {
  margin-bottom: 0;
  color: var(--muted-light);
}

.wood-section {
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(24, 17, 11, 0.06) 1px, transparent 1px) 0 0 / 92px 92px,
    var(--paper-100);
}

.wood-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.76fr) minmax(0, 1fr);
  gap: clamp(32px, 7vw, 88px);
  align-items: center;
}

.image-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(24, 17, 11, 0.14);
  border-radius: var(--radius);
  background: var(--walnut-850);
  box-shadow: var(--shadow-soft);
}

.image-frame::before {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 1;
  border: 1px solid rgba(255, 250, 241, 0.28);
  pointer-events: none;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-frame picture {
  width: 100%;
  height: 100%;
}

.wood-image {
  aspect-ratio: 4 / 3;
}

.wood-copy p {
  color: var(--muted-dark);
  font-size: 1.06rem;
}

.wood-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.wood-list li {
  padding: 10px 13px;
  border: 1px solid rgba(79, 95, 60, 0.34);
  border-radius: var(--radius);
  color: var(--sage-700);
  font-weight: 900;
  background: rgba(184, 195, 155, 0.22);
}

.wood-note {
  padding-top: 22px;
  border-top: 1px solid var(--line-dark);
}

.process-section {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(255, 250, 241, 0.035) 1px, transparent 1px) 0 0 / 92px 92px,
    var(--walnut-900);
}

.process-section .section-heading p {
  color: var(--muted-light);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 250, 241, 0.045);
}

.process-card {
  min-height: 230px;
  padding: 24px;
  border-right: 1px solid var(--line-light);
}

.process-card:last-child {
  border-right: 0;
}

.process-card span {
  display: block;
  margin-bottom: 44px;
  color: var(--honey-400);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
}

.process-card p {
  margin: 0;
  color: var(--paper-100);
  font-weight: 800;
}

.contact-section {
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(24, 17, 11, 0.06) 1px, transparent 1px) 0 0 / 92px 92px,
    linear-gradient(180deg, var(--paper-200), var(--paper-100));
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.38fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.contact-copy h2 {
  max-width: 850px;
  color: var(--ink);
}

.contact-copy p {
  max-width: 760px;
  margin-bottom: 28px;
  color: rgba(24, 17, 11, 0.76);
  font-size: 1.08rem;
}

.contact-card {
  padding: 24px;
  border: 1px solid rgba(24, 17, 11, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.62);
  box-shadow: var(--shadow-soft);
}

.contact-card dl {
  display: grid;
  gap: 18px;
  margin: 0;
}

.contact-card div {
  padding-bottom: 17px;
  border-bottom: 1px solid var(--line-dark);
}

.contact-card div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.contact-card dt {
  color: rgba(24, 17, 11, 0.62);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-card dd {
  margin: 5px 0 0;
  color: var(--ink);
  font-weight: 900;
}

.site-footer {
  padding: 32px 20px 40px;
  color: rgba(255, 250, 241, 0.72);
  text-align: center;
  background: var(--walnut-950);
}

.site-footer p {
  margin: 0;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 45;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(16, 13, 9, 0.18);
  border-radius: 50%;
  color: #0d2916;
  background: #42d86f;
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.34);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.42);
}

.whatsapp-float svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 680ms ease, transform 680ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.image-fallback {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: inherit;
  padding: 28px;
  color: var(--paper-100);
  font-weight: 900;
  text-align: center;
  background: linear-gradient(135deg, var(--walnut-800), var(--walnut-950) 58%, #28301d);
}

.image-fallback::before {
  content: attr(data-alt);
  max-width: 26ch;
}

.image-frame > .image-fallback {
  height: 100%;
}

@media (max-width: 1080px) {
  :root {
    --header-height: 72px;
  }

  .site-header {
    grid-template-columns: auto auto auto;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line-light);
    border-radius: var(--radius);
    background: rgba(16, 13, 9, 0.98);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a {
    padding: 14px 16px;
  }

  .menu-toggle {
    display: grid;
    grid-column: 2;
  }

  .header-cta {
    grid-column: 3;
  }

  .hero-layout,
  .intro-grid,
  .custom-grid,
  .wood-layout,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    min-height: calc(100svh - 188px);
  }

  .hero-brief,
  .hero-facts {
    max-width: 720px;
  }

  .hero-showcase {
    grid-column: 1;
    grid-row: 3;
    width: min(100%, 620px);
    min-height: auto;
    aspect-ratio: 4 / 3;
  }

  .hero-brief {
    grid-row: 4;
  }

  .hero-facts {
    grid-row: 5;
  }

  .custom-spotlight {
    position: static;
  }

  .gallery-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-auto-rows: clamp(78px, 12vw, 112px);
  }

  .gallery-card,
  .gallery-card-large,
  .gallery-card-wide,
  .gallery-card:nth-child(2),
  .gallery-card:nth-child(3),
  .gallery-card:nth-child(4),
  .gallery-card:nth-child(6),
  .gallery-card:nth-child(7) {
    grid-column: span 3;
    grid-row: span 3;
  }

  .gallery-card-large,
  .gallery-card-wide {
    grid-column: span 6;
    grid-row: span 4;
  }

  .wood-image {
    width: min(100%, 520px);
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-card:nth-child(2) {
    border-right: 0;
  }

  .process-card:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-light);
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section-pad {
    padding: 72px 0;
  }

  .site-header {
    top: 10px;
    width: min(calc(100% - 20px), 1240px);
    min-height: 66px;
    grid-template-columns: 1fr auto;
    gap: 10px;
    padding: 10px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    font-size: 1.35rem;
  }

  .brand strong {
    max-width: 190px;
    overflow: hidden;
    font-size: 0.9rem;
    text-overflow: ellipsis;
  }

  .brand small {
    font-size: 0.69rem;
  }

  .menu-toggle {
    grid-column: 2;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 116px 0 54px;
  }

  .hero-plate img {
    opacity: 0.42;
  }

  .hero-plate::after {
    background:
      linear-gradient(180deg, rgba(16, 13, 9, 0.68), rgba(16, 13, 9, 0.94) 46%, rgba(16, 13, 9, 0.98)),
      linear-gradient(90deg, rgba(16, 13, 9, 0.75), rgba(16, 13, 9, 0.42));
  }

  .hero::after {
    width: 62vw;
    height: 220px;
  }

  .hero-layout {
    min-height: auto;
    gap: 28px;
  }

  .hero-facts {
    padding-right: 58px;
  }

  h1 {
    max-width: 9.8ch;
    font-size: clamp(2.35rem, 10.1vw, 2.95rem);
    line-height: 0.96;
    overflow-wrap: break-word;
  }

  h2 {
    font-size: clamp(2.1rem, 10.8vw, 3.35rem);
    line-height: 1;
  }

  .hero-number {
    right: 0;
    bottom: -0.18em;
    font-size: 7rem;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn-large {
    width: 100%;
  }

  .eyebrow {
    align-items: flex-start;
    line-height: 1.35;
  }

  .eyebrow::before {
    margin-top: 0.62em;
  }

  .intro-copy {
    padding-left: 18px;
    border-left-width: 5px;
  }

  .gallery-grid,
  .benefits-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-auto-rows: auto;
    gap: 12px;
    padding: 10px;
  }

  .gallery-card,
  .gallery-card-large,
  .gallery-card-wide,
  .gallery-card:nth-child(2),
  .gallery-card:nth-child(3),
  .gallery-card:nth-child(4),
  .gallery-card:nth-child(6),
  .gallery-card:nth-child(7) {
    grid-column: 1;
    grid-row: auto;
    min-height: 268px;
    aspect-ratio: 4 / 3;
  }

  .gallery-card-large {
    min-height: 330px;
  }

  .gallery-content {
    max-width: 100%;
    padding: 16px;
  }

  .benefit-card,
  .process-card {
    min-height: auto;
  }

  .benefit-card span,
  .process-card span {
    margin-bottom: 24px;
  }

  .process-card,
  .process-card:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .process-card:last-child {
    border-bottom: 0;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }

  .whatsapp-float svg {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 430px) {
  .brand strong {
    max-width: 152px;
  }

  .brand small {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .edition-label {
    font-size: 0.7rem;
    line-height: 1.45;
  }
}

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

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
