/* ============================================================
   dialogai.lt — clean stylesheet (only what index.html needs)
   ============================================================ */

/* ── Custom properties ──────────────────────────────────── */
:root {
  --ink: #073F38;
  --forest: #0F5A50;
  --mint: #DDF1E8;
  --cream: #FBF7EF;
  --sand: #EFE3D0;
  --clay: #B9704A;
  --slate: #334155;
  --muted: #64748b;
  --white: #ffffff;
  --shadow-soft: 0 24px 70px rgba(7, 63, 56, .14);
  --shadow-card: 0 12px 40px rgba(7, 63, 56, .08);
  --radius-xl: 2rem;
  --ease-soft: cubic-bezier(.22, .61, .36, 1);
}

/* ── Reset / base ───────────────────────────────────────── */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--cream);
  color: var(--slate);
  line-height: 1.6;
}

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

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

p { margin: 0; }

/* ── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4 {
  margin: 0;
  color: var(--ink);
  line-height: 1.05;
}

h1, h2 {
  font-family: Fraunces, Georgia, serif;
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(2.8rem, 5.2vw, 5.6rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.035em;
  max-width: 760px;
}

h1 span { display: block; color: var(--forest); }

h2 {
  font-size: clamp(2.4rem, 4vw, 4.5rem);
  font-weight: 800;
}

h3 {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.45rem;
  font-weight: 900;
}

/* ── Layout helpers ─────────────────────────────────────── */
.container {
  width: min(100% - 2.5rem, 1280px);
  margin-inline: auto;
}

.section { padding: 6rem 0; }

.white { background: #fff; }

.dark-mesh {
  background:
    radial-gradient(circle at 10% 20%, rgba(221,241,232,.16), transparent 30%),
    radial-gradient(circle at 90% 10%, rgba(185,112,74,.25), transparent 28%),
    linear-gradient(135deg, #073f38 0%, #0b4b43 52%, #042923 100%);
}

/* ── Site header / navigation ───────────────────────────── */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding: 1rem;
}

.nav-shell {
  width: min(100%, 1280px);
  margin: 0 auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: .75rem 1.25rem;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 1rem;
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-card);
}

.brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: var(--ink);
  font-weight: 900;
}

/* Logo wordmark */
.logo-wordmark {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  font-family: Fraunces, Georgia, serif;
  font-size: 1.65rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.035em;
  text-transform: lowercase;
  white-space: nowrap;
  transition: color .45s var(--ease-soft), transform .45s var(--ease-soft);
}

/* No dot after wordmark */
.logo-wordmark::after { content: none; display: none; }

.logo-wordmark:hover {
  color: var(--forest);
  transform: translateY(-1px);
}

.footer .logo-wordmark { font-size: 1.8rem; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  font-weight: 800;
  font-size: .9rem;
  color: rgba(7,63,56,.78);
}

.main-nav a,
.footer a {
  transition: color .45s var(--ease-soft), transform .45s var(--ease-soft), background .45s var(--ease-soft);
}

.main-nav a:hover,
.footer a:hover {
  color: var(--forest);
}

.main-nav a {
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--forest);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease-soft);
}

.main-nav a.active {
  color: var(--forest);
}

.main-nav a.active::after {
  transform: scaleX(1);
}

/* Buttons */
.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  border-radius: 1rem;
  padding: .95rem 1.45rem;
  font-weight: 900;
  font-family: inherit;
  transition: transform .45s var(--ease-soft), box-shadow .45s var(--ease-soft), background .45s var(--ease-soft), color .45s var(--ease-soft);
}

.nav-cta,
.btn-dark {
  background: var(--ink);
  color: #fff;
}

.btn-mint {
  background: var(--mint);
  color: var(--ink);
}

.nav-cta:hover,
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 35px rgba(7,63,56,.18);
}

.nav-cta:hover,
.btn-dark:hover { background: var(--forest); }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: .9rem;
  background: var(--ink);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
  border-radius: 999px;
}

/* ── Section kicker / head ──────────────────────────────── */
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--forest);
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .78rem;
  font-weight: 900;
}

.section-head {
  margin-bottom: 4rem;
}

.section-head.center {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.section-head.center p:not(.section-kicker) {
  margin-top: 1rem;
  color: #475569;
  font-size: 1.05rem;
  line-height: 1.7;
}

.section-head.split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}

.section-head.split > p {
  max-width: 560px;
  color: #475569;
  font-size: 1.05rem;
}

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  padding-top: 8rem;
}

/* Final hero background (v43) */
.hero.mesh {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 8.5rem;
  background:
    linear-gradient(90deg, rgba(251,247,239,.97) 0%, rgba(251,247,239,.91) 38%, rgba(251,247,239,.62) 68%, rgba(251,247,239,.36) 100%),
    linear-gradient(180deg, rgba(7,63,56,.04), rgba(7,63,56,.20)),
    url("assets/hero-dialogo-ratas.png") center right / cover no-repeat;
}

.hero.mesh::before,
.hero.mesh::after {
  display: none !important;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 3rem;
  padding-bottom: 7rem;
  padding-top: 2rem;
}

/* Final hero grid: single-column block */
.hero-grid.hero-final {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 1280px;
  padding-top: 2rem;
  padding-bottom: 6rem;
}

.hero-final .hero-copy { max-width: 760px; }
.hero-final .lead { max-width: 680px; }

.hero-copy {
  align-self: center;
}

.lead {
  max-width: 42rem;
  margin-top: 1.75rem;
  font-size: 1.25rem;
  line-height: 1.8;
  color: #475569;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.25rem;
}

.hero-actions .btn:only-child {
  min-width: 260px;
}

/* ── Stats (elegant variant) ────────────────────────────── */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.stats.stats-elegant {
  width: min(100%, 720px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .9rem;
  margin-top: 2.35rem;
}

.stats.stats-elegant div {
  position: relative;
  overflow: hidden;
  min-height: 128px;
  padding: 1.15rem 1.2rem;
  border-radius: 1.45rem;
  text-align: left;
  background: linear-gradient(135deg, rgba(255,255,255,.84), rgba(255,255,255,.58));
  border: 1px solid rgba(255,255,255,.76);
  box-shadow: 0 14px 34px rgba(7,63,56,.09);
  backdrop-filter: blur(14px);
  transition: transform .45s var(--ease-soft), box-shadow .45s var(--ease-soft);
}

.stats.stats-elegant div::before {
  content: "";
  position: absolute;
  right: -2.4rem;
  top: -2.5rem;
  width: 7.2rem;
  height: 7.2rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(221,241,232,.95), rgba(221,241,232,0) 68%);
}

.stats.stats-elegant div::after {
  content: "";
  position: absolute;
  left: 1.2rem;
  bottom: 0;
  width: 42%;
  height: 4px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--forest), rgba(15,90,80,.18));
}

.stats.stats-elegant small {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-bottom: .65rem;
  color: var(--forest);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.stats.stats-elegant strong {
  position: relative;
  z-index: 1;
  display: block;
  color: var(--ink);
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(2rem, 3vw, 2.75rem);
  line-height: .95;
  letter-spacing: -.04em;
}

.stats.stats-elegant span {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: .55rem;
  color: #475569;
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.stats.stats-elegant div:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(7,63,56,.11);
}

/* ── Highlights section ─────────────────────────────────── */
.highlights {
  background: #fff;
  padding: 4rem 0;
}

.highlight-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(4, 1fr);
}

.highlight-grid.highlights-photo {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.highlight-grid article {
  border-radius: 1.75rem;
  background: var(--cream);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(214, 202, 180, .55);
}

/* Round photo in highlight card */
.highlight-photo {
  width: 72px;
  height: 72px;
  overflow: hidden;
  border-radius: 999px;
  border: 5px solid rgba(221, 241, 232, .95);
  background: var(--mint);
  box-shadow: 0 16px 34px rgba(7, 63, 56, .14);
}

.highlight-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .65s var(--ease-soft);
}

.highlights-photo article { text-align: left; }

.highlights-photo article:hover .highlight-photo img {
  transform: scale(1.08);
}

.highlights-photo h3 { margin-top: 1.35rem; }

/* ── Why section ────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 3rem;
  align-items: center;
}

.why-grid.why-photo {
  grid-template-columns: .95fr 1.05fr;
  align-items: stretch;
}

.text-card {
  position: relative;
  border-radius: 2rem;
  background: #fff;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(214, 202, 180, .6);
}

.text-card h2 {
  margin-top: 1rem;
  font-size: clamp(2.2rem, 3.6vw, 3.6rem);
}

.rich-text {
  margin-top: 2rem;
  display: grid;
  gap: 1.2rem;
  font-size: 1.05rem;
  line-height: 1.75;
  color: #475569;
}

.why-main-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Why photo cards */
.why-photo-cards {
  display: grid;
  gap: 1rem;
}

.why-photo-card {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 1.2rem;
  align-items: center;
  min-height: 158px;
  border-radius: 2rem;
  padding: 1.35rem;
  background: #fff;
  border: 1px solid rgba(214, 202, 180, .65);
  box-shadow: var(--shadow-card);
  transition: transform .45s var(--ease-soft), box-shadow .45s var(--ease-soft);
}

.why-photo-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.why-photo-card.dark {
  background: linear-gradient(135deg, var(--ink), var(--forest));
  color: #fff;
}

.why-photo-card.soft {
  background: linear-gradient(135deg, var(--mint), var(--cream), var(--sand));
}

.why-round-photo {
  width: 92px;
  height: 92px;
  overflow: hidden;
  border-radius: 999px;
  border: 5px solid rgba(255, 255, 255, .9);
  background: var(--mint);
  box-shadow: 0 18px 36px rgba(7, 63, 56, .14);
}

.why-photo-card.dark .why-round-photo {
  border-color: rgba(221, 241, 232, .88);
  box-shadow: 0 18px 36px rgba(0,0,0,.20);
}

.why-round-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s var(--ease-soft);
}

.why-photo-card:hover .why-round-photo img {
  transform: scale(1.07);
}

.why-photo-card p {
  margin: 0 0 .35rem;
  color: var(--forest);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.why-photo-card.dark p { color: var(--mint); }

.why-photo-card h3 {
  color: var(--ink);
  font-size: 1.35rem;
}

.why-photo-card.dark h3 { color: #fff; }

.why-photo-card span {
  display: block;
  margin-top: .45rem;
  color: #64748b;
  line-height: 1.55;
}

.why-photo-card.dark span { color: rgba(255,255,255,.76); }

/* ── Method grid ────────────────────────────────────────── */
.method-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(3, 1fr);
}

.method-grid article {
  border-radius: 1.75rem;
  background: var(--cream);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(214, 202, 180, .55);
  transition: transform .45s var(--ease-soft), box-shadow .45s var(--ease-soft);
}

.method-grid article:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.method-grid b {
  display: inline-flex;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  padding: .45rem .9rem;
}

.method-grid h3 { margin-top: 2rem; }

.method-grid p {
  margin-top: 1rem;
  color: #64748b;
}

/* ── Nansen section ─────────────────────────────────────── */
.nansen {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 2.5rem;
  margin-top: 4rem;
  border-radius: 2.5rem;
  padding: clamp(2rem, 4vw, 3.5rem);
  color: #fff;
  background: linear-gradient(135deg, var(--ink), var(--forest), #042923);
  box-shadow: var(--shadow-soft);
}

.nansen h3,
.nansen h4 {
  color: #fff;
  margin-top: 1rem;
}

.nansen h3 {
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
}

.nansen h4 {
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(1.9rem, 3vw, 3rem);
}

.nansen p {
  margin-top: 1rem;
  color: rgba(255,255,255,.78);
}

.nansen .btn { margin-top: 2rem; }

.nansen-intro { position: relative; }

.nansen-photo {
  width: 132px;
  height: 132px;
  margin-bottom: 1.5rem;
  overflow: hidden;
  border-radius: 999px;
  border: 6px solid rgba(221, 241, 232, .82);
  box-shadow:
    0 22px 48px rgba(0, 0, 0, .18),
    0 0 0 1px rgba(255, 255, 255, .18);
  background: rgba(255,255,255,.12);
}

.nansen-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .45s var(--ease-soft);
}

.nansen:hover .nansen-photo img {
  transform: scale(1.06);
}

.nansen-stat {
  margin-top: 2rem;
  border-radius: 1.5rem;
  padding: 1.5rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.1);
}

.nansen-stat strong {
  display: block;
  color: var(--mint);
  font-size: 2.5rem;
  line-height: 1;
}

.nansen-stat span {
  display: block;
  margin-top: .6rem;
  color: rgba(255,255,255,.75);
  font-weight: 800;
}

/* ── Spaces section ─────────────────────────────────────── */
.spaces-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(3, 1fr);
}

/* Final variant: photo on the left (v36) */
.spaces-grid.spaces-round-fit article {
  display: grid;
  grid-template-columns: 132px 1fr;
  align-items: center;
  gap: 1.25rem;
  min-height: 190px;
  padding: 1.35rem;
  text-align: left;
  overflow: hidden;
  border-radius: 2rem;
  background: #fff;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(214, 202, 180, .6);
}

.spaces-grid.spaces-round-fit article.dark {
  background: var(--ink);
  color: #fff;
}

.spaces-grid.spaces-round-fit article > div:not(.space-photo-round) {
  padding: 0;
}

.space-photo-round {
  width: 132px;
  height: 132px;
  flex: 0 0 132px;
  margin: 0;
  border-radius: 50%;
  overflow: hidden;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  border: 6px solid rgba(221, 241, 232, .95);
  box-shadow: 0 20px 44px rgba(7, 63, 56, .15);
  transform: translateZ(0);
  position: relative;
  transition: transform .45s var(--ease-soft), box-shadow .45s var(--ease-soft);
}

.space-photo-round::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.45);
  pointer-events: none;
}

.spaces-grid.spaces-round-fit article.dark .space-photo-round {
  border-color: rgba(255,255,255,.86);
  box-shadow: 0 20px 44px rgba(0,0,0,.22);
}

.spaces-grid.spaces-round-fit article:hover .space-photo-round {
  transform: scale(1.015);
  box-shadow: 0 24px 50px rgba(7, 63, 56, .18);
}

.spaces-grid.spaces-round-fit h3 { margin: 0; }

.spaces-grid.spaces-round-fit p { margin-top: .55rem; }

.spaces-note {
  max-width: 760px;
  margin: 2rem auto 0;
  text-align: center;
  color: #64748b;
  font-size: .95rem;
}

/* ── Process list ───────────────────────────────────────── */
.process-list {
  display: grid;
  gap: 1rem;
}

.process-list article {
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: center;
  gap: 1.25rem;
  border-radius: 2rem;
  background: var(--cream);
  padding: 1.25rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(214, 202, 180, .6);
}

.process-list article.dark {
  background: var(--ink);
  color: #fff;
}

.process-list b {
  width: 80px;
  height: 80px;
  display: grid;
  place-items: center;
  border-radius: 1.4rem;
  background: linear-gradient(135deg, var(--ink), var(--forest));
  color: var(--mint);
  font-size: 1.5rem;
}

.process-list .dark b {
  background: var(--mint);
  color: var(--ink);
}

.process-list h3 { font-size: 1.45rem; }
.process-list .dark h3 { color: #fff; }

.process-list p {
  margin-top: .5rem;
  color: #64748b;
}

.process-list .dark p { color: rgba(255,255,255,.75); }

/* ── FAQ / info cards ───────────────────────────────────── */
.faq-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(3, 1fr);
}

.info-card {
  border-radius: 1.75rem;
  background: var(--cream);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(214, 202, 180, .55);
}

.info-card h2 {
  margin-top: .9rem;
  font-size: 2.3rem;
}

.info-card p {
  margin-top: 1rem;
  color: #64748b;
}

.info-card details:first-of-type {
  margin-top: 1.25rem;
}

.dark-card {
  background: var(--ink);
  color: #fff;
}

.dark-card h2 { color: #fff; }
.dark-card p { color: rgba(255,255,255,.78); }

details {
  margin-top: 1rem;
  border-radius: 1rem;
  background: var(--cream);
  padding: 1rem;
}

summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 900;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* ── CTA section ────────────────────────────────────────── */
.cta {
  padding: 6rem 0;
  color: #fff;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 3rem;
  align-items: center;
}

.cta h2 {
  font-family: Fraunces, Georgia, serif;
  color: #fff;
  font-size: clamp(3rem, 5vw, 5rem);
}

.cta p {
  margin-top: 1rem;
  color: rgba(255,255,255,.78);
  font-size: 1.05rem;
}

.cta-box {
  border-radius: 2rem;
  background: #fff;
  padding: 1.5rem;
  color: var(--ink);
  box-shadow: var(--shadow-soft);
}

.cta-box h3 { color: var(--ink); }
.cta-box p { color: #64748b; }

.cta-box .btn {
  width: 100%;
  margin-top: 1rem;
}

/* ── Support section ────────────────────────────────────── */
.support-box {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  align-items: center;
  border-radius: 2rem;
  background: #fff;
  padding: 2rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(214, 202, 180, .6);
}

.support-box h2 {
  font-size: clamp(2.3rem, 4vw, 4rem);
}

.support-box p {
  margin-top: 1rem;
  color: #475569;
}

.support-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.support-links a {
  min-height: 96px;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 1rem;
  background: var(--cream);
  color: var(--ink);
  font-weight: 900;
  box-shadow: 0 6px 20px rgba(7,63,56,.08);
  transition: transform .45s var(--ease-soft), background .45s var(--ease-soft), box-shadow .45s var(--ease-soft);
}

.support-links a:hover {
  transform: translateY(-2px);
  background: var(--mint);
  box-shadow: var(--shadow-card);
}

/* Two-button variant (Buy Me a Coffee + Patreon) */
.support-links.support-links-two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.support-links.support-links-two a {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 1.35rem;
  text-align: left;
  border-radius: 1.35rem;
  background:
    radial-gradient(circle at 92% 18%, rgba(221,241,232,.9), transparent 34%),
    var(--cream);
}

.support-links.support-links-two a span {
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 900;
}

.support-links.support-links-two a small {
  display: block;
  margin-top: .35rem;
  color: #64748b;
  font-size: .82rem;
  font-weight: 800;
}

.support-links.support-links-two a:hover {
  background:
    radial-gradient(circle at 92% 18%, rgba(255,255,255,.85), transparent 34%),
    var(--mint);
}

/* ── Footer ─────────────────────────────────────────────── */
.footer {
  border-top: 1px solid #e7ded0;
  background: var(--cream);
  padding: 3rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr 1fr;
  gap: 2.5rem;
}

.footer p {
  margin-top: 1rem;
  max-width: 360px;
  color: #64748b;
  font-size: .95rem;
}

.footer h4 {
  margin: 0 0 1rem;
  color: var(--forest);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .2em;
}

.footer-grid > div:nth-child(2) a {
  display: block;
  margin-top: .7rem;
  color: #64748b;
  font-weight: 800;
}

.footer-grid > div:nth-child(3) {
  text-align: right;
}

.footer-grid > div:nth-child(3) > a {
  display: inline-block;
  margin-top: .5rem;
  color: var(--forest);
  font-weight: 900;
}

.footer-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: .75rem;
  margin-top: 1.25rem;
}

.footer-buttons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  padding: .5rem 1rem;
  font-size: .75rem;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(7,63,56,.08);
  transition: background .45s var(--ease-soft), color .45s var(--ease-soft), transform .45s var(--ease-soft), box-shadow .45s var(--ease-soft);
}

.footer-buttons a:hover {
  background: var(--mint);
  color: var(--ink);
  transform: translateY(-2px);
}

/* Facebook button */
.footer-buttons a.footer-facebook,
.footer-buttons a.footer-facebook:visited {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  background: #1877f2;
  color: #fff;
  padding: .65rem 1.05rem;
  box-shadow: 0 10px 24px rgba(24,119,242,.22);
}

.footer-buttons a.footer-facebook span {
  display: inline-grid;
  place-items: center;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: .9rem;
  font-weight: 900;
  line-height: 1;
}

.footer-buttons a.footer-facebook:hover {
  background: #0f63d8;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(24,119,242,.28);
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e7ded0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #64748b;
  font-size: .9rem;
}

.footer-bottom p {
  margin-top: 0;
  max-width: none;
}

.footer-brand {
  text-decoration: none;
}

/* ── Header scroll state ─────────────────────────────────── */
.site-header {
  transition: padding .3s var(--ease-soft);
}
.site-header.scrolled {
  padding: .3rem 1rem;
}
.site-header.scrolled .nav-shell {
  min-height: 56px;
  box-shadow: 0 6px 28px rgba(7,63,56,.13);
}

/* ── Reveal animation ───────────────────────────────────── */
.reveal {
  animation: rise .7s var(--ease-soft) both;
}

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


/* ── Responsive: ≤ 1024px ───────────────────────────────── */
@media (max-width: 1024px) {
  .main-nav { display: none; }
  .menu-toggle { display: block; }
  .nav-cta { display: none; }

  .nav-shell.menu-open .main-nav {
    display: grid;
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: 5.7rem;
    gap: 0;
    border-radius: 1rem;
    background: #fff;
    box-shadow: var(--shadow-card);
    padding: .8rem;
  }

  .nav-shell.menu-open .main-nav a {
    padding: .9rem;
  }

  .hero.mesh {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(251,247,239,.98) 0%, rgba(251,247,239,.92) 52%, rgba(251,247,239,.72) 100%),
      url("assets/hero-dialogo-ratas.png") center / cover no-repeat;
  }

  .hero-grid,
  .why-grid,
  .why-grid.why-photo,
  .nansen,
  .cta-grid,
  .support-box {
    grid-template-columns: 1fr;
  }

  .highlight-grid,
  .method-grid,
  .faq-grid,
  .spaces-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .highlight-grid.highlights-photo {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .section-head.split {
    display: block;
  }

  .section-head.split > p {
    margin-top: 1rem;
  }

  .nansen-photo {
    width: 118px;
    height: 118px;
  }

  .spaces-grid.spaces-round-fit article {
    grid-template-columns: 118px 1fr;
  }

  .spaces-grid.spaces-round-fit .space-photo-round {
    width: 118px;
    height: 118px;
  }
}

/* ── Responsive: ≤ 800px ────────────────────────────────── */
@media (max-width: 800px) {
  .highlight-grid.highlights-photo {
    grid-template-columns: 1fr;
  }
}

/* ── Responsive: ≤ 700px ────────────────────────────────── */
@media (max-width: 700px) {
  .container { width: min(100% - 1.5rem, 1280px); }

  .section { padding: 4rem 0; }

  .hero { padding-top: 7rem; }

  .hero-grid { padding-bottom: 4rem; }

  .hero.mesh {
    padding-top: 7.5rem;
    background:
      linear-gradient(180deg, rgba(251,247,239,.98) 0%, rgba(251,247,239,.93) 56%, rgba(251,247,239,.78) 100%),
      url("assets/hero-dialogo-ratas.png") center / cover no-repeat;
  }

  h1 {
    font-size: clamp(2.35rem, 11vw, 3.55rem);
    line-height: 1.04;
  }

  .stats,
  .stats.stats-elegant {
    grid-template-columns: 1fr;
  }

  .stats.stats-elegant div {
    min-height: auto;
  }

  .highlight-grid,
  .method-grid,
  .spaces-grid,
  .faq-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .process-list article {
    grid-template-columns: 1fr;
  }

  .footer-grid > div:nth-child(3) {
    text-align: left;
  }

  .footer-buttons {
    justify-content: start;
    flex-wrap: wrap;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: .75rem;
  }

  .logo-wordmark {
    font-size: 1.38rem;
  }

  .footer .logo-wordmark {
    font-size: 1.55rem;
  }

  .why-photo-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .why-round-photo {
    width: 84px;
    height: 84px;
  }

  .nansen-photo {
    width: 104px;
    height: 104px;
    margin-bottom: 1.1rem;
  }

  .spaces-grid.spaces-round-fit article {
    grid-template-columns: 88px 1fr;
    gap: 1rem;
    min-height: auto;
    padding: 1.2rem;
  }

  .spaces-grid.spaces-round-fit .space-photo-round {
    width: 88px;
    height: 88px;
    border-width: 5px;
  }

  .support-links.support-links-two {
    grid-template-columns: 1fr;
  }

  .highlight-photo {
    width: 64px;
    height: 64px;
    border-width: 4px;
  }
}

/* ── Reduced motion ─────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}
