@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Prata&display=swap");

:root {
  --bg: #f3efe7;
  --bg-2: #ebe5da;
  --panel: #fffcf7;
  --ink: #201915;
  --muted: #695b4d;
  --line: #ddd0bf;
  --accent: #c45524;
  --accent-deep: #8f3d1f;
  --accent-purple: #5b2a88;
  --mint: #7acbca;
  --yellow: #f0c12a;
  --teal: #106f63;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

main [id] {
  scroll-margin-top: 86px;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  line-height: 1.6;
  background:
    radial-gradient(circle at 8% 0%, #fff8ee 0, transparent 38%),
    radial-gradient(circle at 100% 12%, #efe2cf 0, transparent 40%),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.12) 0,
      rgba(255, 255, 255, 0.12) 2px,
      transparent 2px,
      transparent 14px
    ),
    linear-gradient(140deg, var(--bg), var(--bg-2));
}

body.home {
  position: relative;
  isolation: isolate;
}

body.home::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.9;
  background:
    radial-gradient(circle at -5% 18%, transparent 0 115px, rgba(240, 193, 42, 0.9) 116px 124px, transparent 125px),
    radial-gradient(circle at 20% 18%, transparent 0 88px, rgba(240, 193, 42, 0.9) 89px 97px, transparent 98px),
    radial-gradient(circle at 92% 36%, transparent 0 130px, rgba(122, 203, 202, 0.9) 131px 139px, transparent 140px),
    radial-gradient(circle at 74% 40%, transparent 0 80px, rgba(122, 203, 202, 0.9) 81px 89px, transparent 90px);
}

.container {
  width: min(1060px, 92%);
  margin: 0 auto;
}

header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(222, 208, 190, 0.8);
  backdrop-filter: blur(8px);
  background: rgba(243, 238, 228, 0.9);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
}

.brand {
  font-size: 31px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  background: linear-gradient(92deg, var(--accent), var(--accent-purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

a.brand {
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
}

.nav-links::-webkit-scrollbar {
  display: none;
}

.nav-links a {
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  border-bottom: 1px solid transparent;
  transition: border-color 160ms ease, opacity 160ms ease;
}

.nav-links a:hover {
  border-color: rgba(31, 25, 20, 0.6);
  opacity: 0.9;
}

.hero {
  padding: 42px 0 24px;
}

.card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 252, 247, 0.98));
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 14px 32px rgba(28, 18, 8, 0.08);
}

.hero-shell {
  display: grid;
  gap: 18px;
  grid-template-columns: 1.2fr 0.8fr;
}

.side-stack {
  display: grid;
  gap: 14px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-deep);
  padding: 6px 10px;
  border: 1px solid rgba(196, 85, 36, 0.35);
  border-radius: 999px;
  background: rgba(196, 85, 36, 0.08);
}

h1,
h2,
h3,
h4 {
  margin: 0 0 14px;
  line-height: 1.2;
}

h1 {
  font-family: "Prata", serif;
  font-size: clamp(32px, 5.4vw, 58px);
  letter-spacing: 0.01em;
}

h2 {
  font-family: "Prata", serif;
  font-size: clamp(24px, 3.4vw, 38px);
}

h3 {
  font-size: clamp(18px, 2.4vw, 24px);
}

h4 {
  font-size: 16px;
}

p,
li {
  color: var(--ink);
}

small,
.muted {
  color: var(--muted);
}

.kpi {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.kpi-item {
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(122, 203, 202, 0.12);
  border: 1px solid rgba(16, 111, 99, 0.25);
}

.kpi-item strong {
  display: block;
  font-size: 17px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 700;
  transition: transform 160ms ease, box-shadow 160ms ease, opacity 160ms ease;
}

.cta.primary {
  color: #fff;
  background: linear-gradient(120deg, var(--accent), var(--accent-purple));
  box-shadow: 0 8px 22px rgba(127, 62, 32, 0.32);
}

.cta.secondary {
  color: var(--accent);
  border: 1px solid rgba(196, 85, 36, 0.4);
  background: rgba(255, 245, 235, 0.95);
}

.cta:hover {
  transform: translateY(-1px);
  opacity: 0.96;
}

.grid {
  display: grid;
  gap: 16px;
}

.grid.two {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.section {
  margin-top: 16px;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.gallery-card {
  margin: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(221, 208, 191, 0.85);
  background: #fff;
}

.gallery-card img {
  display: block;
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.gallery-card figcaption {
  padding: 10px 12px 12px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--muted);
}

.trust-note {
  margin-top: 10px;
  font-size: 13px;
}

.note {
  font-size: 14px;
  padding: 10px 12px;
  border-left: 3px solid rgba(240, 193, 42, 0.9);
  background: rgba(240, 193, 42, 0.13);
  border-radius: 8px;
}

.voice {
  border: 1px solid rgba(221, 208, 191, 0.9);
  border-radius: 18px;
  padding: 18px;
  background: linear-gradient(180deg, #fff, #fffaf2);
  box-shadow: 0 8px 20px rgba(30, 23, 18, 0.04);
}

.voice p {
  margin-top: 0;
}

.voice cite {
  color: var(--muted);
  font-style: normal;
  font-size: 14px;
}

.photo-card {
  overflow: visible;
  position: relative;
  padding: 12px 12px 10px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #e7dccd;
  box-shadow: 0 16px 30px rgba(29, 20, 8, 0.14);
  transform: rotate(-0.6deg);
}

.photo-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
  object-fit: cover;
}

.photo-card figcaption {
  margin-top: 10px;
  font-size: 13px;
}

.photo-card::before {
  content: "";
  position: absolute;
  top: -11px;
  left: 50%;
  width: 72px;
  height: 22px;
  border-radius: 3px;
  transform: translateX(-50%) rotate(-4deg);
  background: rgba(206, 187, 158, 0.8);
  box-shadow: 0 1px 2px rgba(20, 14, 10, 0.2);
}

.side-stack .photo-card {
  transform: rotate(-0.4deg);
}

.section .photo-card {
  transform: rotate(0.6deg);
}

.legal-block {
  font-size: 14px;
  background: linear-gradient(180deg, #f9f2e4, #f4e7d4);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
}

.meta-list {
  display: grid;
  gap: 6px;
  margin: 0;
}

.reveal {
  animation: rise 460ms ease both;
}

.reveal:nth-child(2) {
  animation-delay: 90ms;
}

.reveal:nth-child(3) {
  animation-delay: 160ms;
}

footer {
  border-top: 1px solid rgba(222, 208, 190, 0.9);
  margin-top: 28px;
  padding: 18px 0 34px;
  background: rgba(243, 238, 228, 0.55);
}

ul {
  padding-left: 20px;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 860px) {
  .hero-shell {
    grid-template-columns: 1fr;
  }

  .kpi {
    grid-template-columns: 1fr;
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .brand {
    font-size: 27px;
  }

  .photo-card,
  .side-stack .photo-card,
  .section .photo-card {
    transform: none;
  }
}
