@font-face {
  font-family: "Archivo Var";
  src: url("../fonts/archivo-var.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Instrument Serif";
  src: url("../fonts/instrumentserif.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Instrument Serif";
  src: url("../fonts/instrumentserif-italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --paper: #f7f4ef;
  --cream: #d8d3cb;
  --red: #c66a5d;
  --graphite: #171113;
  --muted: #a9a49d;
  --hair: rgba(255, 255, 255, 0.14);
  --sans: "Archivo Var", "Helvetica Neue", Arial, sans-serif;
  --serif: "Instrument Serif", Georgia, serif;
  --pad: clamp(1.15rem, 4vw, 4.5rem);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  min-height: 100svh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 76% 45%, rgba(143, 56, 47, 0.14), transparent 28rem),
    linear-gradient(145deg, #0d0a0b, var(--graphite) 55%, #100c0d);
  color: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
:focus-visible { outline: 2px solid var(--red); outline-offset: 4px; }

.destination-header {
  position: fixed;
  z-index: 10;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  height: 5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 var(--pad);
  pointer-events: none;
}
.destination-brand,
.destination-nav { pointer-events: auto; }
.destination-brand { display: flex; align-items: center; gap: 0.75rem; }
.destination-brand img { width: 2.65rem; height: 2.65rem; object-fit: contain; }
.destination-brand b { font-size: 0.94rem; letter-spacing: 0.08em; }
.destination-nav { display: flex; gap: clamp(0.9rem, 2.6vw, 2rem); }
.destination-nav a {
  padding: 0.45rem 0;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.destination-nav a:hover { color: var(--paper); }

.destination-main {
  position: relative;
  display: grid;
  min-height: 100svh;
  align-items: center;
  padding: clamp(8rem, 14vh, 11rem) var(--pad) clamp(4rem, 8vh, 7rem);
  isolation: isolate;
}
.destination-main::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 58%, rgba(255, 255, 255, 0.035) 58% 58.08%, transparent 58.08%),
    radial-gradient(circle at 75% 50%, rgba(198, 106, 93, 0.06), transparent 35%);
  content: "";
}
.destination-layout {
  display: grid;
  width: min(100%, 92rem);
  margin-inline: auto;
  grid-template-columns: minmax(0, 0.62fr) minmax(18rem, 0.38fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 9rem);
}
.destination-copy { position: relative; z-index: 2; max-width: 53rem; }
.status {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 2rem;
  color: var(--muted);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.status::before {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 1rem rgba(198, 106, 93, 0.46);
  content: "";
}
h1 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(3.2rem, 8.2vw, 7.9rem);
  font-weight: 610;
  letter-spacing: -0.055em;
  line-height: 0.88;
  text-wrap: balance;
}
h1 em { color: var(--red); font-family: var(--serif); font-weight: 400; }
.lead {
  max-width: 38rem;
  margin: 2.25rem 0 0;
  color: var(--cream);
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  line-height: 1.62;
}
.note {
  max-width: 35rem;
  margin: 1.1rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}
.actions { display: flex; flex-wrap: wrap; gap: 1rem 1.5rem; margin-top: 2.5rem; }
.button {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.15rem 1.45rem;
  background: #8f382f;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.button:hover { background: var(--red); }
.text-link {
  display: inline-flex;
  align-items: center;
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--hair);
  color: var(--cream);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.destination-object {
  position: relative;
  display: grid;
  min-height: min(68svh, 44rem);
  place-items: center;
}
.destination-object::before {
  position: absolute;
  top: 3%;
  right: 7%;
  bottom: 3%;
  left: 7%;
  border: 1px solid rgba(198, 106, 93, 0.3);
  border-bottom-color: transparent;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.028), rgba(0, 0, 0, 0.18));
  box-shadow: inset 0 0 5rem rgba(0, 0, 0, 0.35), 0 4rem 7rem rgba(0, 0, 0, 0.34);
  content: "";
}
.destination-object::after {
  position: absolute;
  right: 18%;
  bottom: 15%;
  left: 18%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  content: "";
}
.destination-object img {
  position: relative;
  z-index: 1;
  width: min(62%, 15rem);
  height: auto;
  filter: brightness(0.76) saturate(0.9) drop-shadow(0 2.5rem 2.8rem rgba(0, 0, 0, 0.65));
  transform-origin: 50% 80%;
  animation: settle 1.25s cubic-bezier(0.18, 0.86, 0.24, 1) both;
}
.destination-index {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  color: var(--muted);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

/* Página do blog: a pedra pousa numa linha editorial, sem simular posts. */
.blog-page .destination-layout { grid-template-columns: minmax(0, 0.68fr) minmax(17rem, 0.32fr); }
.blog-page h1 { max-width: none; font-size: clamp(5rem, 17vw, 15rem); line-height: 0.72; }
.blog-page .destination-object::before { border-radius: 50%; border-color: rgba(198, 106, 93, 0.2); }
.blog-page .destination-object img { width: min(72%, 18rem); transform: rotate(-8deg); }
.editorial-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.2rem;
  margin: 2.4rem 0 0;
  padding: 1rem 0;
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  list-style: none;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.editorial-line li::before { margin-right: 0.45rem; color: var(--red); content: "—"; }

@keyframes settle {
  0% { opacity: 0; transform: translate3d(0, -4rem, 0) rotate(-18deg) scale(0.84); }
  72% { opacity: 1; transform: translate3d(0, 0.35rem, 0) rotate(2deg) scale(1.01); }
  100% { opacity: 1; transform: translate3d(0, 0, 0) rotate(0) scale(1); }
}

@media (max-width: 47.99rem) {
  .destination-header { height: 4.5rem; }
  .destination-brand img { width: 2.3rem; height: 2.3rem; }
  .destination-brand b { display: none; }
  .destination-nav { gap: 0.85rem; }
  .destination-nav a { font-size: 0.58rem; letter-spacing: 0.09em; }
  .destination-main { align-items: start; padding-top: 8rem; }
  .destination-layout,
  .blog-page .destination-layout { display: block; }
  .destination-copy { max-width: 100%; }
  h1 { font-size: clamp(3.15rem, 16vw, 5rem); }
  .blog-page h1 { font-size: clamp(5rem, 31vw, 8.4rem); }
  .lead { font-size: 1.02rem; }
  .destination-object { min-height: 28rem; margin-top: 3rem; }
  .destination-object img { width: min(55%, 12rem); }
}

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