/* ==========================================================================
   L2 Receber Bem · Tapetes (landing)
   Implementation of "L2 Tapetes - Landing.dc.html" (Claude Design project
   41a8e3ae-311e-48e4-9555-7429eee0e020). Source kept in design/ for reference.
   ========================================================================== */

:root {
  /* Palette.
     The browns were pulled off terracotta (hue ~26°) onto the gold axis
     (hue ~40°) at the same luminance, so contrast is preserved while the
     page reads gold instead of clay-red. */
  --sand: #efe8dd;      /* page background */
  --clay: #ded1c1;      /* alternating band background */
  --gold: #876722;      /* accent — kept at 4.3:1, it carries small text */
  --umber: #6d5423;     /* headings (was #814819) */
  --espresso: #3f3116;  /* footer (was #4a2a10) */

  /* Decorative gold ramp. Only --gold and --gold-deep are safe behind text;
     the brighter steps are for surfaces, glows and large display type. */
  --gold-deep: #6b5219;
  --gold-warm: #a8832f;
  --gold-lit: #cda85a;
  --gold-glow: #e6cf96;

  /* Illuminated golds. The button ramp runs gold -> darker so the label keeps
     its contrast; the "lit" feeling comes from the moving sheen, not from a
     pale background. */
  --grad-btn: linear-gradient(160deg, #8d6d24 0%, #7a5e1f 58%, #6b5219 100%);
  --grad-btn-deep: linear-gradient(160deg, #7d6020 0%, #644c17 60%, #533f13 100%);
  --grad-script: linear-gradient(96deg, #6b5219 0%, #8d6d24 28%, #9c7a2a 48%, #7f6221 72%, #6b5219 100%);
  --grad-script-dark: linear-gradient(96deg, #b08a33 0%, #e6cf96 45%, #c9a34c 75%, #a8832f 100%);
  --grad-rule: linear-gradient(90deg, transparent, rgba(168, 131, 47, 0.55) 22%, rgba(205, 168, 90, 0.85) 50%, rgba(168, 131, 47, 0.55) 78%, transparent);

  /* Umber at the opacities the design uses for supporting text */
  --umber-85: rgba(109, 84, 35, 0.85);
  --umber-80: rgba(109, 84, 35, 0.8);
  --umber-78: rgba(109, 84, 35, 0.78);
  --umber-75: rgba(109, 84, 35, 0.75);
  --umber-70: rgba(109, 84, 35, 0.7);
  --umber-68: rgba(109, 84, 35, 0.68);
  --umber-62: rgba(109, 84, 35, 0.62);
  --umber-60: rgba(109, 84, 35, 0.6);
  --umber-55: rgba(109, 84, 35, 0.55);

  /* Gold hairlines */
  --rule-strong: rgba(151, 117, 40, 0.4);
  --rule-mid: rgba(151, 117, 40, 0.32);
  --rule: rgba(151, 117, 40, 0.25);
  --rule-soft: rgba(151, 117, 40, 0.2);

  /* Footer sand at opacity */
  --clay-78: rgba(222, 209, 193, 0.78);
  --clay-72: rgba(222, 209, 193, 0.72);
  --clay-70: rgba(222, 209, 193, 0.7);
  --clay-55: rgba(222, 209, 193, 0.55);
  --clay-50: rgba(222, 209, 193, 0.5);
  --clay-25: rgba(222, 209, 193, 0.25);
  --clay-22: rgba(222, 209, 193, 0.22);

  --shell: 1280px;
  --pad-x: clamp(28px, 6vw, 64px);
  --band-y: clamp(72px, 9vw, 130px);
  --header-h: 101px;
}

/* --------------------------------------------------------------- Base ---- */

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--sand);
  color: var(--umber);
  font-family: Inter, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--umber); }

h1, h2, h3, p, figure, blockquote { margin: 0; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.site-footer :focus-visible,
.wa-float:focus-visible {
  outline-color: var(--clay);
}

[id] { scroll-margin-top: calc(var(--header-h) + 16px); }

.skip-link {
  position: absolute;
  left: 16px;
  top: -100px;
  z-index: 100;
  background: var(--gold);
  color: var(--sand);
  padding: 12px 20px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 16px; color: var(--sand); }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.shell {
  max-width: var(--shell);
  margin: 0 auto;
  padding-inline: var(--pad-x);
}

/* ------------------------------------------------------ Type utilities --- */

.eyebrow {
  display: block;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}

.script {
  font-family: Italianno, "Brush Script MT", cursive;
  line-height: 0.9;
  color: var(--gold);
}

/* Gold-leaf gradient on the display script. Guarded: without background-clip
   the transparent fill would erase the text, so the flat gold above stays. */
@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .script {
    background-image: var(--grad-script);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }
  /* On the dark footer the gradient can run genuinely bright. */
  .site-footer .script,
  .footer-base__motto {
    background-image: var(--grad-script-dark);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }
}

/* Gold hairline with a lit centre, used on the section rules. */
.rule-gold {
  border-style: solid;
  border-width: 0;
  border-image: var(--grad-rule) 1;
}

.section-title {
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 200;
  line-height: 1.22;
  margin-top: 22px;
  color: var(--umber);
  text-wrap: balance;
}

.lede {
  font-size: 16px;
  line-height: 1.8;
  font-weight: 300;
  color: var(--umber-75);
  text-wrap: pretty;
}

/* ------------------------------------------------------------ Buttons ---- */

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 18px 40px;
  border: 1px solid transparent;
  transition: background-color 0.25s ease, color 0.25s ease,
              border-color 0.25s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.btn--solid {
  background-color: var(--gold);
  background-image: var(--grad-btn);
  color: var(--sand);
  box-shadow: 0 1px 0 rgba(230, 207, 150, 0.28) inset;
}
.btn--solid:hover {
  background-image: var(--grad-btn-deep);
  color: var(--sand);
  box-shadow: 0 1px 0 rgba(230, 207, 150, 0.4) inset,
              0 10px 26px rgba(107, 82, 25, 0.28);
}

.btn--outline {
  padding: 18px 34px;
  border-color: rgba(151, 117, 40, 0.5);
  color: var(--gold);
}
.btn--outline:hover {
  border-color: var(--gold);
  background-color: rgba(151, 117, 40, 0.07);
  color: var(--gold);
  box-shadow: 0 8px 22px rgba(107, 82, 25, 0.14);
}

.btn--card { padding: 16px 34px; }

.btn--major {
  align-self: flex-start;
  background-color: var(--gold-deep);
  background-image: var(--grad-btn-deep);
  color: var(--sand);
  padding: 20px 46px;
  box-shadow: 0 1px 0 rgba(230, 207, 150, 0.3) inset;
}
.btn--major:hover {
  background-image: var(--grad-btn);
  color: var(--sand);
  box-shadow: 0 1px 0 rgba(230, 207, 150, 0.45) inset,
              0 12px 30px rgba(107, 82, 25, 0.3);
}

/* A band of light travelling across the gold, on a loop with a long pause. */
.btn--solid::after,
.btn--major::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 46%;
  pointer-events: none;
  background: linear-gradient(
    100deg,
    rgba(255, 249, 232, 0) 0%,
    rgba(255, 249, 232, 0.26) 42%,
    rgba(255, 253, 245, 0.42) 50%,
    rgba(255, 249, 232, 0.26) 58%,
    rgba(255, 249, 232, 0) 100%
  );
  transform: translateX(-170%) skewX(-18deg);
  animation: btn-sheen 5.5s cubic-bezier(0.42, 0, 0.25, 1) infinite;
}
.btn--solid:hover::after,
.btn--major:hover::after { animation-duration: 2.2s; }

@keyframes btn-sheen {
  0%, 58% { transform: translateX(-170%) skewX(-18deg); }
  100%    { transform: translateX(340%) skewX(-18deg); }
}

/* ------------------------------------------------------------- Header ---- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(239, 232, 221, 0.72);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid var(--rule-soft);
}

.site-header__inner {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand { display: flex; align-items: center; gap: 14px; }
.brand__logo { height: 72px; width: auto; }

.brand__text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  border-left: 1px solid var(--rule-mid);
  padding-left: 14px;
}
.brand__name {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.brand__kind {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--umber-60);
}

.site-nav { display: flex; align-items: center; gap: 34px; }

.nav-links {
  display: flex;
  gap: 28px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.nav-links a {
  color: var(--umber-78);
  padding-block: 4px;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.nav-links a:hover { color: var(--gold); border-bottom-color: var(--rule-mid); }

.icon-link {
  width: 36px;
  height: 36px;
  flex: none;
  border: 1px solid var(--rule-strong);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.25s ease, border-color 0.25s ease;
}
.icon-link:hover { background: rgba(135, 103, 34, 0.08); border-color: var(--gold); }

.header__cta {
  padding: 13px 26px;
  letter-spacing: 0.2em;
  white-space: nowrap;
}
.header__cta .is-short { display: none; }

/* --------------------------------------------------------------- Hero ---- */

.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  /* min() keeps the track from forcing the page wider than the viewport
     on phones narrower than the stated minimum. */
  grid-template-columns: repeat(auto-fit, minmax(min(420px, 100%), 1fr));
  align-items: stretch;
  background: var(--sand);
}

.hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 7vw, 110px) clamp(28px, 6vw, 96px);
}

.hero__copy .eyebrow { margin-bottom: 28px; }

.hero__title {
  font-size: clamp(38px, 4.4vw, 62px);
  font-weight: 200;
  line-height: 1.14;
  letter-spacing: -0.02em;
  margin-bottom: 26px;
  color: var(--umber);
  text-wrap: pretty;
}

.hero__sub {
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.8;
  font-weight: 300;
  color: var(--umber-78);
  max-width: 46ch;
  margin-bottom: 40px;
  text-wrap: pretty;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero__stats {
  display: flex;
  gap: 36px;
  margin-top: 64px;
  padding-top: 30px;
  border-top: 1px solid rgba(135, 103, 34, 0.2);
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; gap: 6px; }
.stat__value { font-size: 26px; font-weight: 200; }
.stat__label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--umber-62);
}

.hero__media { position: relative; min-height: 520px; }

.cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__caption {
  position: absolute;
  left: 28px;
  bottom: 28px;
  background: rgba(239, 232, 221, 0.78);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.45);
  padding: 16px 22px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.hero__caption .script { font-size: 30px; }
.hero__caption span:last-child {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--umber-70);
}

/* ------------------------------------------------------- Benefit strip --- */

.assurances {
  background: var(--clay);
  border-top: 1px solid rgba(135, 103, 34, 0.16);
}
.assurances__grid {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 26px 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  gap: 18px;
}
.assurance {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--umber-85);
}
.assurance::before {
  content: "";
  width: 6px;
  height: 6px;
  flex: none;
  background: var(--gold);
  transform: rotate(45deg);
}

/* -------------------------------------------------------------- Brand ---- */

.brand-story {
  max-width: var(--shell);
  margin: 0 auto;
  padding: clamp(72px, 10vw, 140px) var(--pad-x);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}

.brand-story__statement {
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 200;
  line-height: 1.5;
  margin-top: 28px;
  color: var(--umber);
  text-wrap: pretty;
}

.brand-story__body {
  font-size: 17px;
  line-height: 1.85;
  font-weight: 300;
  color: var(--umber-75);
  margin-top: 26px;
  max-width: 52ch;
  text-wrap: pretty;
}

.signature {
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.signature .script { font-size: 52px; }
.signature span:last-child {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--umber-60);
}

.mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* Explicit rows: the source photographs are portrait, so auto rows would
     stretch this block to ~1170px. The design's min-heights (240 / 150) ask
     for a compact tile group. */
  grid-template-rows: repeat(2, clamp(150px, 22vw, 260px));
  gap: 18px;
}
.mosaic img { width: 100%; height: 100%; object-fit: cover; }
.mosaic__tall { grid-row: span 2; }

/* ----------------------------------------------------------- Coleção ----- */

.band-clay { background: var(--clay); }
.band-sand { background: var(--sand); }
.band { padding-block: var(--band-y); }

/* Cabeçalho seguido de lista/apoio: o respiro grande fica depois do bloco. */
.section-head--tight { margin-bottom: clamp(32px, 4vw, 48px); }

/* Os quatro ambientes, em colunas separadas por fio de ouro. */
.ambientes {
  list-style: none;
  margin: 0 auto clamp(32px, 4vw, 48px);
  padding: 0;
  max-width: 1000px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--rule-mid);
  border-bottom: 1px solid var(--rule-mid);
}

.ambientes li {
  padding: 24px 18px 26px;
  text-align: center;
  font-size: clamp(16px, 1.4vw, 19px);
  font-weight: 300;
  line-height: 1.4;
  color: var(--umber);
  border-left: 0;
}
.ambientes li:not(:nth-child(4n + 1)) { border-left: 1px solid var(--rule-soft); }

.ambientes__note {
  display: block;
  margin-top: 9px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1.6;
  color: var(--umber-60);
}

.colecao-note {
  max-width: 64ch;
  margin: 0 auto clamp(56px, 7vw, 92px);
  display: grid;
  gap: 14px;
  text-align: center;
}

/* ------------------------------------------------- Textura e iluminação --- */
/* A woven-fabric tile plus two gold light pools. Both are pseudo-elements at
   z-index 0 with the content lifted to z-index 1 — a negative z-index would
   drop them behind the section's own background and disappear. */

.textured { position: relative; overflow: hidden; isolation: isolate; }

.textured::before,
.textured::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.textured::before {
  background-image: url("assets/textura-trama.jpg");
  background-size: 360px;
  background-repeat: repeat;
  opacity: 0.07;
  mix-blend-mode: multiply;
}

.textured::after {
  background:
    radial-gradient(1100px 520px at 50% -6%, rgba(230, 207, 150, 0.5), transparent 68%),
    radial-gradient(760px 420px at 88% 42%, rgba(205, 168, 90, 0.26), transparent 70%),
    radial-gradient(700px 400px at 6% 88%, rgba(168, 131, 47, 0.16), transparent 72%);
  mix-blend-mode: soft-light;
}

.textured > .shell { position: relative; z-index: 1; }

/* A soft gold pool behind the opening screen. */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(760px 520px at 18% 26%, rgba(230, 207, 150, 0.42), transparent 66%);
  z-index: 0;
}
.hero > * { position: relative; z-index: 1; }

.section-head--center {
  text-align: center;
  max-width: 60ch;
  margin: 0 auto clamp(56px, 7vw, 96px);
}
.section-head--center .section-title {
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1.2;
  margin-bottom: 18px;
}

.linha {
  background: var(--sand);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(360px, 100%), 1fr));
}
.linha + .linha { margin-top: clamp(28px, 4vw, 52px); }

.linha__media { position: relative; min-height: 440px; }

.linha__tag {
  position: absolute;
  top: 0;
  background: rgba(239, 232, 221, 0.82);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  padding: 12px 20px;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}
.linha__tag--left { left: 0; }
.linha__tag--right { right: 0; }

/* ---------------------------------------------------------- Carrossel --- */

.slider { position: absolute; inset: 0; }

.slider__track {
  display: flex;
  height: 100%;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.slider__track::-webkit-scrollbar { display: none; }

.slider__slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  scroll-snap-align: center;
  scroll-snap-stop: always;
}

/* Arrows and dots only appear once the script has wired them up, so the
   no-JS experience is a plain swipeable strip rather than dead controls. */
.slider__nav,
.slider__dots { display: none; }

.slider[data-ready] .slider__nav { display: flex; }
.slider[data-ready] .slider__dots { display: flex; }

/* Soft scrim so the markers stay readable over pale photographs. */
.slider[data-ready]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 96px;
  background: linear-gradient(to top, rgba(63, 49, 22, 0.42), rgba(63, 49, 22, 0));
  pointer-events: none;
}

.slider__nav {
  position: absolute;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  border: 1px solid rgba(135, 103, 34, 0.35);
  border-radius: 50%;
  background: rgba(239, 232, 221, 0.82);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  color: var(--gold);
  transition: background-color 0.25s ease, border-color 0.25s ease, opacity 0.25s ease;
}
.slider__nav:hover { background: var(--sand); border-color: var(--gold); }
.slider__nav[disabled] { opacity: 0.3; cursor: default; }
.slider__nav[disabled]:hover { background: rgba(239, 232, 221, 0.82); border-color: rgba(135, 103, 34, 0.35); }
.slider__nav--prev { left: 16px; }
.slider__nav--next { right: 16px; }
.slider__nav svg { width: 16px; height: 16px; }

.slider__dots {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 10px;
  justify-content: center;
  gap: 8px;
}
.slider__dot {
  /* 26x4 bar, but a 26x24 touch target: the padding is part of the button
     and background-clip keeps the paint on the content box. */
  box-sizing: content-box;
  width: 26px;
  height: 4px;
  padding: 10px 0;
  border: 0;
  cursor: pointer;
  background: rgba(239, 232, 221, 0.55);
  background-clip: content-box;
  transition: background-color 0.25s ease;
}
/* background-color, not the shorthand: `background` would reset background-clip
   and paint the whole 24px touch target instead of the 4px bar. */
.slider__dot[aria-current="true"] { background-color: var(--sand); }
.slider__dot:hover { background-color: var(--sand); }

.linha__body { padding: clamp(32px, 4vw, 60px); }

.linha__title {
  font-size: clamp(26px, 2.4vw, 34px);
  font-weight: 200;
  margin-bottom: 10px;
  color: var(--umber);
  text-wrap: pretty;
}
.linha__kicker { font-size: 34px; margin-bottom: 24px; }
.linha__text {
  font-size: 16px;
  line-height: 1.8;
  font-weight: 300;
  color: var(--umber-78);
  margin-bottom: 30px;
  max-width: 48ch;
  text-wrap: pretty;
}
/* Quando a descrição tem mais de um parágrafo, o espaço entre eles é menor
   que o espaço que separa o bloco todo da ficha técnica. */
.linha__text:has(+ .linha__text) { margin-bottom: 16px; }

.specs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(130px, 100%), 1fr));
  gap: 16px;
  padding-block: 22px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  margin: 0;
}
.spec { display: flex; flex-direction: column; gap: 7px; }
.spec dt {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--umber-55);
}
.spec dd { font-size: 14px; font-weight: 400; margin: 0; }

.linha__label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 30px 0 18px;
}

.sizes {
  display: flex;
  align-items: flex-end;
  gap: 26px;
  flex-wrap: wrap;
}
.size { display: flex; flex-direction: column; gap: 9px; }
.size__figure {
  border: 1px solid rgba(135, 103, 34, 0.5);
  background: rgba(135, 103, 34, 0.07);
}
.size__label {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--umber-80);
}
.size__note {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--umber-70);
  max-width: 22ch;
  padding-bottom: 2px;
}
/* Preço e uso ficam colados no rótulo da medida, não no espaçamento do bloco. */
.size__price {
  margin-top: -3px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--gold);
}
.size__use {
  margin-top: -3px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.5;
  color: var(--umber-60);
}
.sizes__note {
  margin-top: 18px;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--umber-70);
}

.swatches {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.swatch {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.swatch__chip {
  width: 54px;
  height: 54px;
  border: 1px solid var(--rule-mid);
}
.swatch__name {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--umber-60);
}
.swatches__note {
  font-size: 12px;
  font-weight: 300;
  color: var(--umber-60);
  margin-left: 6px;
}

.yarns {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
.yarns img {
  width: 132px;
  height: 64px;
  object-fit: cover;
  border: 1px solid rgba(135, 103, 34, 0.25);
}
.yarns p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--umber-75);
  max-width: 34ch;
}

/* Duas fotos de amostra lado a lado, dentro do card da linha. */
.samples-pair { display: flex; gap: 14px; flex-wrap: wrap; }
.samples-pair figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.samples-pair img {
  width: 132px;
  height: 88px;
  object-fit: cover;
  border: 1px solid rgba(135, 103, 34, 0.25);
}
.samples-pair figcaption {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--umber-60);
}

.linha .btn { margin-top: 38px; }

/* ---------------------------------------------------------- Comparison --- */

.section-head--left {
  max-width: 56ch;
  margin-bottom: clamp(44px, 6vw, 72px);
}

.compare-scroll { overflow-x: auto; }

.compare {
  min-width: 900px;
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  text-align: left;
}
.compare col:first-child { width: 200px; }

.compare thead th {
  padding: 0 22px 20px;
  font-weight: 400;
  vertical-align: bottom;
}
.compare thead th:first-child { padding: 0 0 20px; }
.compare__idx {
  display: block;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.compare__env {
  display: block;
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 6px;
}
.compare__mat { display: block; font-size: 12px; color: var(--umber-60); }

.compare tbody th,
.compare tbody td {
  padding: 18px 22px;
  border-top: 1px solid var(--rule-soft);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  vertical-align: top;
}
.compare tbody th {
  padding-inline: 0;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--umber-60);
  font-weight: 400;
}
.compare tbody tr:first-child th,
.compare tbody tr:first-child td { border-top-color: var(--rule-strong); }
.compare tbody tr:last-child th,
.compare tbody tr:last-child td { border-bottom: 1px solid var(--rule-strong); }

.compare .is-highlight { font-weight: 400; color: var(--gold); }

.compare-note {
  font-size: 13px;
  font-weight: 300;
  color: var(--umber-60);
  margin-top: 22px;
}

/* -------------------------------------------------------- Diferenciais --- */

.pillars {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: clamp(18px, 2.4vw, 28px);
}

.pillar {
  background: var(--sand);
  border: 1px solid var(--rule-soft);
  border-radius: 22px;
  padding: clamp(28px, 3vw, 42px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.pillar:hover {
  transform: translateY(-4px);
  border-color: var(--rule-strong);
  box-shadow: 0 18px 42px rgba(63, 49, 22, 0.1);
}

.pillar__icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(135, 103, 34, 0.1);
  border: 1px solid rgba(135, 103, 34, 0.16);
  color: var(--gold);
  margin-bottom: 4px;
}
.pillar__icon svg { width: 26px; height: 26px; }

.pillar__title {
  font-size: clamp(19px, 1.5vw, 22px);
  font-weight: 300;
  line-height: 1.3;
  color: var(--umber);
  text-wrap: pretty;
}
.pillar__text {
  font-size: 15px;
  line-height: 1.8;
  font-weight: 300;
  color: var(--umber-75);
  text-wrap: pretty;
}

/* ------------------------------------------------------ L2 vs. mercado --- */

.versus {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(330px, 100%), 1fr));
  gap: clamp(16px, 1.8vw, 22px);
}

.vs-card {
  background: var(--clay);
  border: 1px solid rgba(135, 103, 34, 0.14);
  border-radius: 22px;
  padding: clamp(22px, 2.2vw, 30px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.vs-card:hover {
  transform: translateY(-4px);
  border-color: var(--rule-strong);
  box-shadow: 0 18px 42px rgba(63, 49, 22, 0.12);
}

.vs-card__head { display: flex; align-items: center; gap: 14px; }
.vs-card__head h3 {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.01em;
  color: var(--umber);
  text-wrap: pretty;
}
.vs-card__icon {
  width: 46px;
  height: 46px;
  flex: none;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(135, 103, 34, 0.12);
  border: 1px solid rgba(135, 103, 34, 0.18);
  color: var(--gold);
}
.vs-card__icon svg { width: 22px; height: 22px; }

.vs-row { display: flex; flex-direction: column; gap: 9px; }
.vs-row p {
  font-size: 14px;
  line-height: 1.75;
  font-weight: 300;
  color: var(--umber-75);
  text-wrap: pretty;
}

.vs-row--common { padding-inline: 2px; }

/* The L2 side sits on a raised panel so the answer reads before the text does. */
.vs-row--l2 {
  margin-top: auto;
  background: var(--sand);
  border-radius: 15px;
  padding: 16px 18px;
}
.vs-row--l2 p { color: var(--umber-80); }
.vs-row--l2 strong { font-weight: 500; color: var(--umber); }

.vs-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
}
.vs-tag svg { width: 13px; height: 13px; flex: none; }
.vs-tag--common { color: var(--umber-55); }
.vs-tag--l2 { color: var(--gold); }

/* --------------------------------------------------- Reveal ao rolar ----- */
/* Gated on .js so the content is never hidden when the script does not run. */

.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: calc(var(--i, 0) * 80ms);
}
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; }
}

/* ------------------------------------------------------------ Amostras --- */

.samples-head {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 36px;
  align-items: end;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.samples-head .lede { max-width: 44ch; }

.samples-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
  gap: 18px;
}
.samples-grid img {
  width: 100%;
  /* height:auto is required: the width/height attributes on the <img> are
     presentational hints that would otherwise make aspect-ratio a no-op. */
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}
.samples-grid figcaption {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--umber-68);
  padding-top: 14px;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 18px;
  margin-top: 18px;
}
.rooms-grid img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* ----------------------------------------------------------- Instagram --- */

.insta-head {
  text-align: center;
  margin-bottom: clamp(34px, 4.5vw, 54px);
}
.insta-head h2 {
  font-size: clamp(30px, 3.4vw, 46px);
  font-weight: 200;
  line-height: 1.15;
  margin-top: 20px;
  color: var(--umber);
  text-wrap: balance;
}
.insta-head .script {
  font-size: clamp(48px, 5.4vw, 78px);
  display: inline-block;
  vertical-align: -0.06em;
  margin-inline: 0.06em;
}
.insta-head__handle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.insta-head__handle svg { width: 16px; height: 16px; }
.insta-head__handle:hover { color: var(--gold-deep); }

/* Full-bleed marquee. The item list is duplicated in the markup and the
   track slides exactly half its width, so the loop is seamless. */
.insta-marquee {
  position: relative;
  overflow: hidden;
  --insta-h: clamp(200px, calc((100vw - 80px) / 5 / 0.875), 340px);
  --insta-gap: clamp(10px, 1.1vw, 16px);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.insta-track {
  display: flex;
  width: max-content;
  gap: var(--insta-gap);
  padding-inline: calc(var(--insta-gap) / 2);
  animation: insta-scroll 52s linear infinite;
  will-change: transform;
}
.insta-marquee:hover .insta-track,
.insta-marquee:focus-within .insta-track { animation-play-state: paused; }

/* The markup holds the six photos twice and the padding is gap/2 on each
   side, so half the track width lands photo 7 exactly where photo 1 was. */
@keyframes insta-scroll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

.insta-item {
  flex: none;
  display: block;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(63, 49, 22, 0.12);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.insta-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(63, 49, 22, 0.22);
}
/* Fixed height, automatic width: every photo is shown whole, never cropped
   and never squashed, whatever its aspect ratio. */
.insta-item img {
  height: var(--insta-h);
  width: auto;
  max-width: none;
  display: block;
}
.insta-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, rgba(230, 207, 150, 0.22), transparent 45%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.insta-item:hover::after { opacity: 1; }

/* ---------------------------------------------------------- Sob medida --- */

.bespoke {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(380px, 100%), 1fr));
  align-items: stretch;
  background: var(--sand);
}
.bespoke__media { position: relative; min-height: 480px; }
.bespoke__panel {
  background: var(--clay);
  padding: clamp(48px, 7vw, 110px) clamp(28px, 6vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.bespoke__script {
  font-size: clamp(56px, 6vw, 84px);
  margin: 26px 0 18px;
}
.bespoke__title {
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 200;
  line-height: 1.35;
  margin-bottom: 22px;
  color: var(--umber);
  max-width: 30ch;
  text-wrap: pretty;
}
.bespoke__text {
  font-size: 17px;
  line-height: 1.85;
  font-weight: 300;
  color: var(--umber-78);
  margin-bottom: 40px;
  max-width: 44ch;
  text-wrap: pretty;
}

/* ------------------------------------------------------------- Footer ---- */

.site-footer {
  background: var(--espresso);
  color: var(--clay);
  /* Bottom padding clears the fixed WhatsApp button once the page is
     scrolled all the way down. */
  padding: clamp(56px, 7vw, 96px) 0 96px;
}
.site-footer a { color: var(--clay); }
.site-footer a:hover { color: var(--sand); }

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  gap: 44px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--clay-22);
}
.footer-grid__logo { height: 96px; width: auto; margin-bottom: 20px; }
.footer-blurb {
  font-size: 14px;
  line-height: 1.8;
  font-weight: 300;
  color: var(--clay-72);
  max-width: 34ch;
}

.footer-col { display: flex; flex-direction: column; gap: 14px; }
.footer-col h2 {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--clay-55);
  font-weight: 400;
}
.footer-col a { font-size: 16px; font-weight: 300; }
.footer-col li {
  font-size: 14px;
  line-height: 1.8;
  font-weight: 300;
  color: var(--clay-78);
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }

.footer-base {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 26px;
  align-items: baseline;
}
.footer-base__copy { font-size: 12px; font-weight: 300; color: var(--clay-50); }
.footer-base__motto {
  font-family: Italianno, "Brush Script MT", cursive;
  font-size: 26px;
  color: var(--clay-70);
}

/* -------------------------------------------------- Floating WhatsApp ---- */

.wa-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(63, 49, 22, 0.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  color: var(--clay);
  padding: 14px 22px 14px 18px;
  border: 1px solid var(--clay-25);
  box-shadow: 0 10px 30px rgba(63, 49, 22, 0.22);
  transition: background-color 0.25s ease;
}
.wa-float:hover { background: var(--umber); color: var(--clay); }
.wa-float svg { flex: none; }
.wa-float__text { display: flex; flex-direction: column; gap: 2px; }
.wa-float__kicker {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clay-70);
}
.wa-float__label { font-size: 13px; letter-spacing: 0.06em; }

/* --------------------------------------------------------- Responsive ---- */

@media (max-width: 1040px) {
  .nav-links { display: none; }
  .site-nav { gap: 18px; }
}

@media (max-width: 820px) {
  /* Single column: always lead with the photograph so every line card
     keeps the same rhythm. */
  .linha { grid-template-columns: 1fr; }
  .linha__media { order: -1; min-height: 340px; }
  .bespoke { grid-template-columns: 1fr; }
  .bespoke__media { min-height: 340px; }
  .hero { min-height: 0; }
  .hero__media { min-height: 420px; }
  .hero__stats { margin-top: 48px; gap: 28px; }

  /* Os quatro ambientes passam a duas colunas. */
  .ambientes { grid-template-columns: repeat(2, 1fr); max-width: 560px; }
  .ambientes li:not(:nth-child(4n + 1)) { border-left: 0; }
  .ambientes li:not(:nth-child(2n + 1)) { border-left: 1px solid var(--rule-soft); }
  .ambientes li:nth-child(n + 3) { border-top: 1px solid var(--rule-soft); }
}

@media (max-width: 620px) {
  :root { --header-h: 85px; }
  .brand__logo { height: 56px; }
  .brand__text { display: none; }
  .header__cta { padding: 12px 18px; letter-spacing: 0.16em; }
  .header__cta .is-long { display: none; }
  .header__cta .is-short { display: inline; }
  .site-header__inner { padding: 14px 20px; }
  .assurances__grid { padding-inline: 20px; }

  .hero__caption { left: 16px; right: 16px; bottom: 16px; }
  .hero__actions .btn { width: 100%; }

  /* Uma coluna: os fios verticais somem e cada ambiente ganha o seu. */
  .ambientes { grid-template-columns: 1fr; max-width: 340px; }
  .ambientes li:not(:nth-child(2n + 1)) { border-left: 0; }
  .ambientes li { padding: 20px 12px 22px; }
  .ambientes li + li { border-top: 1px solid var(--rule-soft); }

  /* No celular os três números quebram em duas linhas e o terceiro fica
     sozinho. Sai daqui: "pet friendly" continua na faixa logo abaixo. */
  .stat--pet { display: none; }

  .wa-float {
    right: 16px;
    bottom: 16px;
    padding: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    justify-content: center;
    gap: 0;
  }
  .wa-float__text { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    /* Without this, the looping animations would restart thousands of times
       a second instead of stopping. */
    animation-iteration-count: 1 !important;
  }
  .btn--solid::after,
  .btn--major::after { display: none; }
  .insta-track { animation: none; transform: none; }
}

@media print {
  .site-header, .wa-float, .skip-link { display: none !important; }
  body { background: #fff; }
}
