/* ============================================================
   Intimista — 2026

   This file is the running order, not the styles. Each import
   below is a small file in src/styles/; build.mjs inlines them
   into css/site.css in exactly this order, so the list reads
   as the cascade: tokens, base, shared pieces, then one file
   per section from the top of the page to the bottom.
   ============================================================ */


/* Tokens — palette drawn from the space itself: corten panel + gold
   backlight, sage entrance walls, garden green, bougainvillea. */

@font-face {
  font-family: 'Amsterdam';
  src: url('../font/AmsterdamVariation_3.ttf') format('truetype');
  font-weight: 400; font-style: normal; font-display: swap;
}

:root {
  --noite:  #171110;
  --casca:  #241a16;
  --corten: #8a4a2a;
  --brasa:  #f0b569;
  --sombra: #e3e5de;
  --mata:   #2c3b31;
  --flor:   #ce1a55;

  --luz:         #efe9e2;
  --luz-fraca:   rgba(239, 233, 226, .62);
  --luz-tenue:   rgba(239, 233, 226, .16);
  --tinta-fraca: rgba(44, 59, 49, .70);
  --tinta-tenue: rgba(44, 59, 49, .18);

  --display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --corpo:   'Archivo', 'Helvetica Neue', Arial, sans-serif;
  --dado:    'DM Mono', ui-monospace, 'SFMono-Regular', Menlo, monospace;

  --gutter: clamp(1.25rem, 5vw, 4rem);
  --band-y: clamp(5rem, 11vw, 9.5rem);
  --ease: cubic-bezier(.2, .7, .2, 1);
}


/* Base — reset, motion preference, focus ring and the skip link. */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--noite);
  color: var(--luz);
  font-family: var(--corpo);
  font-size: 1.0625rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video, svg { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select { font: inherit; color: inherit; }
h1, h2, h3, p, ul, figure { margin: 0; }
ul { padding: 0; list-style: none; }

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

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

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--brasa); color: var(--noite);
  padding: .8rem 1.2rem; font-family: var(--dado); font-size: .8rem;
}
.skip:focus { left: 1rem; top: 1rem; }


/* Layout — the widths (.wrap) and the bands (.band) the page stacks into. */

.wrap { width: min(1240px, 100% - var(--gutter) * 2); margin-inline: auto; }
.wrap--narrow { width: min(860px, 100% - var(--gutter) * 2); margin-inline: auto; }

.band { padding-block: var(--band-y); position: relative; }
.band--sage { background: var(--sombra); color: var(--mata); }
.band--dark { background: var(--noite); color: var(--luz); }
.band--casca { background: var(--casca); color: var(--luz); }

/* anchor targets clear the fixed header */
section[id], div[id] { scroll-margin-top: 86px; }


/* Type — eyebrow, headings (.h-xl/.h-lg/.h-md), lead and prose.
   Light bands (.band--sage) restate the ink colours. */

.eyebrow {
  font-family: var(--dado);
  font-size: .7rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--brasa);
  margin-bottom: 1.4rem;
}
.band--sage .eyebrow { color: var(--corten); }

.h-xl, .h-lg, .h-md {
  font-family: var(--display);
  font-variation-settings: 'SOFT' 30, 'WONK' 1, 'opsz' 144;
  font-weight: 300;
  letter-spacing: -.028em;
  text-wrap: balance;
}
.h-xl { font-size: clamp(2.9rem, 8.4vw, 6.6rem); line-height: .96; }
.h-lg { font-size: clamp(2.1rem, 5vw, 4rem); line-height: 1.03; }
.h-md { font-size: clamp(1.45rem, 2.6vw, 2.05rem); line-height: 1.15; letter-spacing: -.02em; }

.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  line-height: 1.6;
  color: var(--luz-fraca);
  max-width: 46ch;
}
.band--sage .lead { color: var(--tinta-fraca); }

.prose p { max-width: 54ch; color: var(--luz-fraca); }
.prose p + p { margin-top: 1.2rem; }
.band--sage .prose p { color: var(--tinta-fraca); }


/* Buttons — .but--primary (flor) and .but--ghost (outline). */

.but {
  display: inline-flex; align-items: center; gap: .7rem;
  padding: 1.05rem 2rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--dado); font-size: .78rem;
  letter-spacing: .16em; text-transform: uppercase;
  text-decoration: none; cursor: pointer;
  transition: background .4s var(--ease), color .4s var(--ease),
              border-color .4s var(--ease), transform .4s var(--ease);
}
.but--primary { background: var(--flor); color: #fff; }
.but--primary:hover { background: var(--brasa); color: var(--noite); transform: translateY(-2px); }
.but--ghost { border-color: var(--luz-tenue); color: var(--luz); }
.but--ghost:hover { border-color: var(--brasa); color: var(--brasa); }
.band--sage .but--ghost { border-color: var(--tinta-tenue); color: var(--mata); }
.band--sage .but--ghost:hover { border-color: var(--corten); color: var(--corten); }


/* Motion — the hero entrance (.rise + .d1…d5) and the scroll reveal,
   driven by scripts/reveal.js. */

/* page-load orchestration */
.rise { opacity: 0; transform: translateY(22px); animation: rise .95s var(--ease) forwards; }
@keyframes rise { to { opacity: 1; transform: none; } }
.d1 { animation-delay: .15s; }
.d2 { animation-delay: .32s; }
.d3 { animation-delay: .49s; }
.d4 { animation-delay: .66s; }
.d5 { animation-delay: .83s; }

/* ---------- reveal on scroll ---------- */
.reveal {
  opacity: 0; transform: translateY(26px);
  transition: opacity .95s var(--ease), transform .95s var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal.is-in { opacity: 1; transform: none; }



/* Fixed header, nav, and the drawer it becomes on small screens. */

.header {
  position: fixed; inset: 0 0 auto; z-index: 60;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1.15rem var(--gutter);
  border-bottom: 1px solid transparent;
  transition: background .5s var(--ease), backdrop-filter .5s var(--ease),
              padding .5s var(--ease), border-color .5s var(--ease);
}
.header.is-stuck {
  background: rgba(23, 17, 16, .86);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: rgba(239, 233, 226, .10);
  padding-block: .85rem;
}

.brand { display: flex; align-items: center; text-decoration: none; color: var(--luz); }
.brand__word {
  font-family: 'Amsterdam', var(--display);
  font-size: 1.9rem; line-height: 1; padding-bottom: .18em;
}

.nav { display: flex; align-items: center; gap: 2rem; }
.nav__link {
  font-family: var(--dado); font-size: .74rem;
  letter-spacing: .15em; text-transform: uppercase;
  text-decoration: none; color: var(--luz-fraca);
  transition: color .3s var(--ease);
}
.nav__link:hover { color: var(--brasa); }
.nav .but { padding: .72rem 1.4rem; font-size: .7rem; }

.burger {
  display: none; width: 44px; height: 44px; padding: 0;
  background: none; border: 1px solid var(--luz-tenue); border-radius: 999px;
  cursor: pointer; place-items: center;
}
.burger span {
  display: block; width: 16px; height: 1px; background: var(--luz);
  margin: 3px auto; transition: transform .35s var(--ease), opacity .25s;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-4px) rotate(-45deg); }

@media (max-width: 940px) {
  .burger { display: grid; }
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(320px, 84vw);
    flex-direction: column; align-items: flex-start; justify-content: center; gap: 1.7rem;
    padding: var(--gutter);
    background: var(--casca);
    border-left: 1px solid rgba(239, 233, 226, .10);
    transform: translateX(100%);
    transition: transform .5s var(--ease);
  }
  .nav.is-open { transform: none; }
  .nav__link { font-size: .95rem; letter-spacing: .12em; color: var(--luz); }
}


/* Hero — the lit panel as the front door, plus the spec strip under it. */

.hero {
  position: relative; isolation: isolate;
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding-top: 8rem;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.07); animation: drift 24s var(--ease) forwards;
}
@keyframes drift { to { transform: scale(1); } }

.hero__veil {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(115% 78% at 76% 20%, rgba(240, 181, 105, .18), transparent 58%),
    linear-gradient(100deg, rgba(23, 17, 16, .88) 0%, rgba(23, 17, 16, .55) 42%, transparent 70%),
    linear-gradient(180deg, rgba(23, 17, 16, .70) 0%, rgba(23, 17, 16, .30) 32%, rgba(23, 17, 16, .92) 100%);
}
.hero__inner { padding-bottom: clamp(2.5rem, 6vw, 4.5rem); }
.hero__word {
  font-family: 'Amsterdam', var(--display);
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  line-height: 1; color: var(--brasa);
  margin-bottom: 1.5rem;
}
.hero h1 { max-width: 15ch; }
.hero__sub { margin: 1.8rem 0 2.4rem; max-width: 44ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; }
@media (max-width: 560px) {
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .but { justify-content: center; }
}

.specstrip { display: flex; flex-wrap: wrap; border-top: 1px solid var(--luz-tenue); margin-top: clamp(2.5rem, 6vw, 4rem); }
.specstrip li {
  flex: 1 1 auto;
  padding: 1.1rem 1.6rem 1.1rem 0;
  font-family: var(--dado); font-size: .72rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--luz-fraca);
}
.specstrip li + li { padding-left: 1.6rem; border-left: 1px solid var(--luz-tenue); }

@media (max-width: 720px) {
  .specstrip li { flex: 0 0 50%; }
  .specstrip li:nth-child(odd) { border-left: 0; padding-left: 0; }
}


/* The shot that opens the door between the hero and the manifesto. */

.reveal-shot { position: relative; height: clamp(300px, 62vh, 640px); overflow: hidden; background: var(--noite); }
.reveal-shot img { width: 100%; height: 100%; object-fit: cover; }
.reveal-shot::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(23, 17, 16, .58), transparent 28%, transparent 74%, rgba(227, 229, 222, .92));
}


/* O espaço — the two manifesto columns. */

.manifesto__cols {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.5rem, 4vw, 3.5rem);
  margin-top: clamp(2.25rem, 5vw, 3.5rem);
}


/* Ambientes — the alternating shots and each room's spec list. */

.rooms { display: grid; gap: clamp(4rem, 9vw, 8rem); margin-top: clamp(3rem, 7vw, 5.5rem); }
.room {
  display: grid; grid-template-columns: 1.25fr .75fr;
  gap: clamp(1.75rem, 4vw, 3.5rem); align-items: center;
}
.room:nth-child(even) .room__shot { order: 2; }
.room__shot { overflow: hidden; border-radius: 2px; background: var(--casca); }
.room__shot img {
  width: 100%; height: clamp(260px, 42vw, 520px); object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.room:hover .room__shot img { transform: scale(1.04); }
/* Portrait shot: hold the crop on the bougainvillea, not the paving. */
.room__shot img.crop-high { object-position: 50% 40%; }
.room__name { margin-bottom: .45rem; }
.room__note { color: var(--luz-fraca); max-width: 38ch; margin-bottom: 1.8rem; }
.room__specs { border-top: 1px solid var(--luz-tenue); }
.room__specs li {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: .68rem 0; border-bottom: 1px solid var(--luz-tenue);
  font-family: var(--dado); font-size: .74rem;
  letter-spacing: .1em; text-transform: uppercase; color: var(--luz-fraca);
}
.room__specs b { font-weight: 400; color: var(--brasa); }

@media (max-width: 880px) {
  .room { grid-template-columns: 1fr; }
  .room:nth-child(even) .room__shot { order: 0; }
}


/* Formatos — the vivências list: name left, note right. */

.viv { margin-top: clamp(2.5rem, 6vw, 4rem); border-top: 1px solid var(--tinta-tenue); }
.viv li { border-bottom: 1px solid var(--tinta-tenue); }
.viv__row {
  display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.45fr);
  gap: .5rem 2rem; align-items: baseline;
  padding-block: clamp(1.4rem, 3vw, 2.2rem);
}
.viv__name {
  font-family: var(--display);
  font-variation-settings: 'SOFT' 30, 'WONK' 1, 'opsz' 100;
  font-weight: 300;
  font-size: clamp(1.8rem, 4.2vw, 3.1rem);
  line-height: 1; letter-spacing: -.025em;
}
.viv__note { color: var(--tinta-fraca); }
.viv__more {
  font-family: var(--display); font-style: italic;
  font-size: clamp(1.15rem, 2vw, 1.6rem);
  color: var(--corten); margin-top: 2rem;
}

@media (max-width: 720px) { .viv__row { grid-template-columns: 1fr; } }


/* Um dia aqui — the sun crosses the hours. Each hour re-grades the
   photograph, the ambient glow and the sun on the arc. Scene tokens
   live on .arc[data-scene]; scripts/um-dia.js moves between them. */

.arc { position: relative; overflow: hidden; isolation: isolate; }
.arc .wrap { position: relative; z-index: 1; }

/* 08h — first light, still cool */
.arc[data-scene="0"] { --tint: rgba(122, 162, 196, .55); --dim: rgba(23, 17, 16, .12); --sun: #dfeef8; --halo: rgba(150, 195, 225, .20); }
/* 10h — plain daylight */
.arc[data-scene="1"] { --tint: rgba(226, 232, 220, .28); --dim: rgba(23, 17, 16, .06); --sun: #f7f3e8; --halo: rgba(238, 238, 222, .14); }
/* 13h — sun overhead, warming */
.arc[data-scene="2"] { --tint: rgba(236, 199, 138, .34); --dim: rgba(23, 17, 16, .05); --sun: #ffeab9; --halo: rgba(250, 215, 150, .18); }
/* 16h — golden, bougainvillea hour */
.arc[data-scene="3"] { --tint: rgba(240, 181, 105, .48); --dim: rgba(23, 17, 16, .10); --sun: #f0b569; --halo: rgba(240, 181, 105, .26); }
/* 19h — lamps on, the deck at night */
.arc[data-scene="4"] { --tint: rgba(46, 62, 104, .62); --dim: rgba(23, 17, 16, .26); --sun: #f0b569; --halo: rgba(240, 181, 105, .20); }

.arc__aura {
  position: absolute; inset: -18% -12% auto; height: 78%;
  z-index: 0; pointer-events: none;
  color: var(--halo);
  background: radial-gradient(58% 62% at 50% 34%, currentColor, transparent 72%);
  filter: blur(44px);
  transition: color 1.2s var(--ease);
}

/* ---- the stage ---- */
.arc__stage {
  position: relative;
  margin-top: clamp(2.25rem, 5vw, 3.5rem);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 2px;
  background: var(--casca);
  box-shadow: 0 40px 90px -40px rgba(0, 0, 0, .9), 0 0 0 1px var(--luz-tenue);
}
@media (max-width: 720px) { .arc__stage { aspect-ratio: 4 / 5; } }

.arc__slide {
  position: absolute; inset: 0;
  opacity: 0; visibility: hidden;
  transition: opacity 1.1s var(--ease), visibility 0s linear 1.1s;
}
.arc__slide.is-on { opacity: 1; visibility: visible; transition: opacity 1.1s var(--ease), visibility 0s; }

.arc__slide img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.07);
  transition: transform 1.2s var(--ease);
}
/* while a scene holds, it settles almost imperceptibly */
.arc__slide.is-on img { transform: scale(1); transition: transform 9s linear; }
/* portrait frame: hold the crop on the bougainvillea, not the paving */
.arc__slide img.crop-high { object-position: 50% 34%; }

/* colour grade + legibility veil, both driven by the scene tokens */
.arc__slide::before,
.arc__slide::after { content: ''; position: absolute; inset: 0; pointer-events: none; }
.arc__slide::before {
  background: var(--tint);
  mix-blend-mode: soft-light;
  transition: background-color 1.2s var(--ease);
}
.arc__slide::after {
  background-color: var(--dim);
  background-image: linear-gradient(180deg, rgba(23, 17, 16, .42), rgba(23, 17, 16, 0) 34%, rgba(23, 17, 16, .12) 56%, rgba(23, 17, 16, .88));
  transition: background-color 1.2s var(--ease);
}

.arc__cap {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: clamp(1.25rem, 4vw, 2.75rem);
  max-width: 46ch;
}
.arc__slide.is-on .arc__cap > * { animation: rise .85s var(--ease) both; }
.arc__slide.is-on .arc__cap > :nth-child(1) { animation-delay: .18s; }
.arc__slide.is-on .arc__cap > :nth-child(2) { animation-delay: .28s; }
.arc__slide.is-on .arc__cap > :nth-child(3) { animation-delay: .38s; }
.arc__hour-big {
  font-family: var(--dado); font-size: .72rem;
  letter-spacing: .24em; color: var(--brasa); margin-bottom: .5rem;
}
.arc__note { margin-top: .7rem; max-width: 40ch; color: rgba(239, 233, 226, .8); }

/* ---- the arc the sun travels ---- */
/* inset by half a cell so the ends sit under the first and last labels */
.arc__sky {
  position: relative;
  height: clamp(70px, 8vw, 112px);
  margin: clamp(1.5rem, 3.5vw, 2.5rem) 10% 0;
}
.arc__sky svg { width: 100%; height: 100%; display: block; overflow: visible; }
.arc__rail, .arc__lit { fill: none; vector-effect: non-scaling-stroke; stroke-linecap: round; }
.arc__rail { stroke: var(--luz-tenue); stroke-width: 1; }
.arc__lit {
  stroke: url(#arcLit); stroke-width: 2;
  stroke-dasharray: var(--len, 0);
  stroke-dashoffset: var(--off, 0);
  transition: stroke-dashoffset 1s var(--ease);
}
.arc__sun {
  position: absolute; left: 0%; top: 91.7%;
  width: 13px; height: 13px; margin: -6.5px 0 0 -6.5px;
  border-radius: 50%;
  background: var(--sun);
  box-shadow: 0 0 0 5px var(--halo), 0 0 30px 9px var(--halo);
  transition: left 1s var(--ease), top 1s var(--ease),
              background-color 1.2s var(--ease), box-shadow 1.2s var(--ease);
}

/* ---- the hours ---- */
.arc__hours { display: flex; gap: .4rem; margin-top: .5rem; }
.arc__hour {
  flex: 1 1 0; min-width: 0;
  display: flex; flex-direction: column; align-items: center; gap: .25rem;
  padding: .55rem .2rem .2rem;
  position: relative;
  background: none; border: 0;
  font-family: var(--dado); color: var(--luz-fraca);
  cursor: pointer; text-align: center;
  transition: color .45s var(--ease);
}
.arc__hour b { font-weight: 400; font-size: .86rem; letter-spacing: .06em; }
.arc__hour span {
  font-size: .6rem; letter-spacing: .16em; text-transform: uppercase;
  opacity: .62; white-space: nowrap;
}
.arc__hour:hover { color: var(--luz); }
.arc__hour::before {
  content: ''; position: absolute; top: 0; left: 50%;
  width: 46px; height: 1px; margin-left: -23px;
  background: currentColor; opacity: 0;
  transition: opacity .45s var(--ease);
}
.arc__hour.is-on { color: var(--sun); }
.arc__hour.is-on::before { opacity: 1; }
.arc__hour.is-on span { opacity: .8; }

@media (max-width: 420px) {
  .arc__hours { gap: .15rem; }
  .arc__hour b { font-size: .78rem; }
  .arc__hour span { font-size: .54rem; letter-spacing: .08em; }
}


/* O passeio — the vertical walkthrough in its phone frame. */

.tour { display: grid; grid-template-columns: 1fr auto; gap: clamp(2.5rem, 6vw, 5rem); align-items: center; }
.phone {
  width: min(300px, 74vw); aspect-ratio: 478 / 850;
  padding: 9px; border-radius: 34px;
  background: linear-gradient(160deg, #3a2c26, #14100e 55%);
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, .85), 0 0 0 1px rgba(239, 233, 226, .10);
  justify-self: center;
}
.phone video { width: 100%; height: 100%; object-fit: cover; border-radius: 26px; background: #000; }

@media (max-width: 880px) { .tour { grid-template-columns: 1fr; } }


/* Reserva — the two invitations and the what-to-write aside. */

.convite {
  display: flex; flex-wrap: wrap; gap: .9rem;
  margin-top: clamp(2.5rem, 6vw, 3.5rem);
}
@media (max-width: 560px) {
  .convite { flex-direction: column; align-items: stretch; }
  .convite .but { justify-content: center; }
}

.convite__aside {
  margin-top: clamp(2.5rem, 6vw, 3.5rem);
  padding-top: 1.75rem;
  border-top: 1px solid var(--tinta-tenue);
}
.convite__label {
  font-family: var(--dado); font-size: .68rem;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--corten); margin-bottom: 1.1rem;
}
.convite__lista { display: flex; flex-wrap: wrap; gap: .5rem 2.25rem; }
.convite__lista li {
  font-family: var(--dado); font-size: .74rem;
  letter-spacing: .1em; text-transform: uppercase; color: var(--tinta-fraca);
}
.convite__lista li::before { content: '— '; color: var(--corten); }
.convite__nota { margin-top: 1.6rem; color: var(--tinta-fraca); font-size: .95rem; }
.convite__nota a {
  color: var(--corten); text-decoration: none;
  border-bottom: 1px solid var(--tinta-tenue);
  transition: border-color .3s var(--ease);
}
.convite__nota a:hover { border-bottom-color: var(--corten); }


/* Contato — the desaturated map and the address blocks. */

.contact { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 5vw, 4rem); }
.map {
  position: relative;
  min-height: 340px; overflow: hidden;
  border: 1px solid var(--luz-tenue); border-radius: 2px;
}
.map__canvas { position: absolute; inset: 0; filter: grayscale(.82) contrast(.95) brightness(.9); }
.map iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }

/* the embed drops its pin dead centre, tip on the address — ours sits on the
   same point, outside the filter, and covers it */
.map__pin {
  position: absolute; left: 50%; bottom: calc(50% - 3px);
  width: 46px; transform: translateX(-50%);
  filter: drop-shadow(0 8px 12px rgba(23, 17, 16, .5));
  pointer-events: none;
}
.contact__block + .contact__block { margin-top: 2rem; }
.contact__label {
  font-family: var(--dado); font-size: .68rem;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--brasa); margin-bottom: .55rem;
}
.contact address { font-style: normal; color: var(--luz-fraca); }
.contact a { text-decoration: none; border-bottom: 1px solid var(--luz-tenue); transition: color .3s var(--ease), border-color .3s var(--ease); }
.contact a:hover { color: var(--brasa); border-bottom-color: var(--brasa); }

@media (max-width: 880px) { .contact { grid-template-columns: 1fr; } }


/* Footer. */

.footer {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem;
  margin-top: clamp(3rem, 7vw, 5rem); padding-top: 1.75rem;
  border-top: 1px solid var(--luz-tenue);
  font-family: var(--dado); font-size: .68rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--luz-fraca);
}

