/* Sonq'o Wasi — site styles */

:root {
  /* Brand palette — from identity PDF */
  --wine: #79204A;          /* primary script color */
  --wine-deep: #5A1638;
  --bordo: #AC3A4F;         /* accent rose-bordo */
  --green: #2E3927;         /* primary body */
  --green-deep: #1E2719;
  --green-moss: #4A681E;    /* moss accent */
  --green-soft: #4F5E45;
  --turquoise: #55B0A7;     /* cool accent */
  --terra: #CD5C22;         /* warm accent */
  --cream: #ECE2D1;         /* official cream */
  --cream-warm: #E5D9C2;
  --paper: #F6F0E2;
  --paper-deep: #EFE7D3;
  --ink: #2A2520;
  --ink-soft: #5A4F45;
  --rule: rgba(46, 57, 39, 0.18);
  --rule-strong: rgba(46, 57, 39, 0.4);

  /* Emerald family — the identity background */
  --emerald: #1F4438;
  --emerald-deep: #122a21;
  --emerald-mist: #2C5446;
  --rose: #E89AAE;          /* light rose, for accents on dark */
  --gold: #E7CFA6;          /* warm cream-gold */

  /* Type — per identity PDF */
  --f-script: "Pinyon Script", "Allura", "Snell Roundhand", cursive;
  --f-display: "Fraunces", "The Seasons", "Cormorant Garamond", Georgia, serif;
  --f-serif: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --f-sans: "Poppins", "Manrope", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  font-family: var(--f-serif);
  background: var(--paper);
  color: var(--green-deep);
  font-size: 18px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* ── TYPE ─────────────────────────────────────────────────────── */
.script {
  font-family: var(--f-script);
  font-weight: 400;
  color: var(--wine);
  line-height: 1;
  letter-spacing: 0.005em;
}
.serif { font-family: var(--f-serif); }
.sans { font-family: var(--f-sans); }
.eyebrow {
  font-family: var(--f-sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--green-soft);
  font-weight: 500;
}
.eyebrow.wine { color: var(--wine); }
h1, h2, h3, h4 {
  font-family: var(--f-serif);
  font-weight: 500;
  color: var(--green-deep);
  letter-spacing: -0.01em;
  text-wrap: balance;
}
h1 { font-size: clamp(40px, 6vw, 88px); line-height: 1.02; margin: 0; }
h2 { font-size: clamp(32px, 4vw, 56px); line-height: 1.1; margin: 0; }
h3 { font-size: clamp(22px, 2vw, 30px); line-height: 1.2; margin: 0; }

p { text-wrap: pretty; }

/* ── LAYOUT ───────────────────────────────────────────────────── */
.wrap {
  width: min(1280px, 92vw);
  margin: 0 auto;
}
.wrap-narrow { width: min(900px, 92vw); margin: 0 auto; }

/* ── NAV ──────────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 246, 238, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--rule);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
}
.brand {
  display: flex; align-items: center; gap: 14px;
  cursor: pointer;
}
.brand-mark {
  width: 42px; height: 42px;
  border: 1px solid var(--green);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--green);
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 22px;
  font-weight: 500;
}
.brand-emblem {
  width: 46px; height: 46px;
  object-fit: contain;
  filter: drop-shadow(0 3px 6px rgba(18, 42, 33, 0.18));
  flex-shrink: 0;
}
.brand-name {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 24px;
  color: var(--green-deep);
  letter-spacing: 0.02em;
}
.brand-name em { font-style: normal; color: var(--wine); }

.nav-links {
  display: flex; gap: 28px; align-items: center;
  font-family: var(--f-sans);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-soft);
  font-weight: 500;
}
.nav-links a {
  position: relative;
  padding: 6px 0;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--wine); }
.nav-links a.active { color: var(--green-deep); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 50%; bottom: -2px;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--wine);
  transform: translateX(-50%);
}

.lang-switch {
  display: flex; gap: 2px;
  font-family: var(--f-sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--green-soft);
}
.lang-switch button {
  background: none; border: none;
  padding: 6px 8px;
  color: inherit;
  letter-spacing: inherit;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.2s;
}
.lang-switch button.active {
  color: var(--wine);
  font-weight: 700;
}
.lang-switch .sep { color: var(--rule-strong); align-self: center; }

.menu-btn {
  display: none;
  background: none; border: 1px solid var(--rule-strong);
  padding: 8px 14px;
  border-radius: 999px;
  font-family: var(--f-sans);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-deep);
}

@media (max-width: 960px) {
  .nav-links { display: none; }
  .menu-btn { display: inline-flex; align-items: center; gap: 8px; }
  .nav-mobile-open .nav-links {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--paper);
    padding: 8px 0 24px;
    border-bottom: 1px solid var(--rule);
  }
  .nav-mobile-open .nav-links a {
    padding: 14px 6vw;
    border-top: 1px solid var(--rule);
    width: 100%;
  }
}

@media (max-width: 560px) {
  .nav-inner { gap: 10px; padding: 14px 0; }
  .brand { gap: 10px; }
  .brand-emblem { width: 38px; height: 38px; }
  .brand-name { font-size: 19px; }
  .brand .sans, .brand div > div:last-child { font-size: 9px !important; }
  .lang-switch { font-size: 10px; }
  .lang-switch button { padding: 5px 4px; }
  .lang-switch .sep { display: none; }
  .menu-btn { padding: 7px 11px; font-size: 11px; }
}

/* ── NAV · centered emblem, split links ───────────────────────── */
.nav-centered .nav-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  column-gap: clamp(24px, 3.5vw, 52px);
  padding: 14px 0;
  min-height: 104px;
}
.nav-centered .brand {
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  flex-shrink: 0;
}
.nav-centered .brand-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}
.nav-centered .brand-emblem {
  width: 52px; height: 52px;
}
.nav-centered .brand-name {
  font-size: 26px;
  line-height: 1;
}
.nav-centered .brand-sub {
  font-family: var(--f-sans);
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.nav-side {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 30px);
  font-family: var(--f-sans);
  font-size: 13px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--green-soft);
  font-weight: 500;
  white-space: nowrap;
}
.nav-side.nav-left { justify-content: flex-end; }
.nav-side.nav-right { justify-content: flex-start; }
.nav-side a {
  position: relative;
  padding: 6px 0;
  transition: color 0.2s;
}
.nav-side a:hover { color: var(--wine); }
.nav-side a.active { color: var(--green-deep); }
.nav-side a.active::after {
  content: "";
  position: absolute;
  left: 50%; bottom: -2px;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--wine);
  transform: translateX(-50%);
}
.nav-centered .lang-switch {
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
}
.nav-centered .menu-btn {
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
}
.nav-centered .nav-links { display: none; }

@media (max-width: 1160px) {
  .nav-centered .nav-inner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    min-height: 0;
    padding: 14px 0;
  }
  .nav-centered .nav-side { display: none; }
  .nav-centered .brand {
    flex-direction: row;
    align-items: center;
    gap: 11px;
    text-align: left;
    margin-right: auto;
  }
  .nav-centered .brand-text { align-items: flex-start; gap: 2px; }
  .nav-centered .brand-emblem { width: 42px; height: 42px; }
  .nav-centered .brand-name { font-size: 21px; }
  .nav-centered .lang-switch {
    position: static;
    transform: none;
  }
  .nav-centered .menu-btn {
    position: static;
    transform: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .nav-centered.nav-mobile-open .nav-links {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--paper);
    padding: 8px 0 24px;
    border-bottom: 1px solid var(--rule);
    text-align: left;
  }
  .nav-centered.nav-mobile-open .nav-links a {
    font-family: var(--f-sans);
    font-size: 13px;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--green-soft);
    padding: 14px 6vw;
    border-top: 1px solid var(--rule);
    width: 100%;
  }
  .nav-centered.nav-mobile-open .nav-links a.active { color: var(--wine); }
}

@media (max-width: 560px) {
  .nav-centered .nav-inner { gap: 8px; }
  .nav-centered .brand-emblem { width: 34px; height: 34px; }
  .nav-centered .brand-name { font-size: 17px; }
  .nav-centered .brand-sub { display: none; }
  .nav-centered .menu-btn { padding: 7px 11px; font-size: 11px; }
}

/* ── HERO ─────────────────────────────────────────────────────── */
.hero {
  padding: 92px 0 104px;
  position: relative;
  overflow: hidden;
  color: var(--cream);
  background:
    radial-gradient(120% 90% at 82% 8%, rgba(85, 176, 167, 0.22), transparent 55%),
    radial-gradient(90% 80% at 12% 96%, rgba(172, 58, 79, 0.18), transparent 60%),
    linear-gradient(158deg, var(--emerald-deep) 0%, var(--emerald) 52%, #18382c 100%);
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(60% 55% at 72% 36%, rgba(236, 226, 209, 0.07), transparent 72%);
  pointer-events: none;
}
.hero .wrap { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero .eyebrow.wine { color: var(--rose); }
.hero-title .script {
  font-size: clamp(64px, 9vw, 138px);
  display: block;
  margin-bottom: 4px;
  color: var(--cream);
}
.hero-title .serif-name {
  font-family: var(--f-serif);
  font-size: clamp(38px, 5.5vw, 80px);
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
  letter-spacing: 0.01em;
  display: block;
}
.hero-sub {
  margin-top: 32px;
  font-size: 21px;
  line-height: 1.6;
  color: rgba(236, 226, 209, 0.86);
  max-width: 500px;
}
.hero-meta {
  margin-top: 38px;
  display: flex; gap: 32px;
  flex-wrap: wrap;
  font-family: var(--f-sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(236, 226, 209, 0.7);
  font-weight: 500;
}
.hero-meta span::before {
  content: "✦"; margin-right: 10px; color: var(--rose); font-size: 10px;
}
.hero-cta {
  margin-top: 44px;
  display: flex; gap: 14px; flex-wrap: wrap;
}

/* Emblem + serpent ring */
.hero-emblem-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
}
.hero-ring {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  color: rgba(236, 226, 209, 0.32);
  animation: spin 80s linear infinite;
}
.hero-ring.inner {
  color: rgba(85, 176, 167, 0.42);
  animation: spin 120s linear infinite reverse;
}
@keyframes spin { to { transform: rotate(360deg); } }
.hero-emblem {
  position: relative;
  z-index: 1;
  width: 70%;
  max-width: 420px;
  filter: drop-shadow(0 26px 54px rgba(0, 0, 0, 0.5));
  animation: floaty 7.5s ease-in-out infinite;
}
@keyframes floaty {
  50% { transform: translateY(-14px); }
}
@media (max-width: 860px) {
  .hero-emblem-wrap { max-width: 360px; margin: 8px auto 0; }
}

.hero-image {
  aspect-ratio: 4/5;
  background: var(--cream);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.hero-image::before {
  content: "";
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(135deg,
      rgba(31, 68, 56, 0.04) 0,
      rgba(31, 68, 56, 0.04) 12px,
      transparent 12px, transparent 24px);
}
.hero-image > img,
.about-strip-image > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.92) contrast(1.02);
  z-index: 1;
}
.hero-image.is-empty::after,
.about-strip-image.is-empty::after {
  content: "S";
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--f-script);
  font-size: 96px;
  color: var(--wine);
  opacity: 0.22;
}
.hero-montage {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  aspect-ratio: 4/5;
  background: transparent;
  border-radius: 4px;
  overflow: hidden;
}
.hero-montage figure {
  margin: 0; overflow: hidden;
  background: var(--paper-deep);
  border-radius: 2px;
}
.hero-montage figure:first-child { grid-row: 1 / 3; }
.hero-montage img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  filter: saturate(0.92) contrast(1.02);
  transition: transform 0.6s ease;
}
.hero-montage figure:hover img { transform: scale(1.04); }
.hero-image-label {
  position: absolute;
  inset: 0;
  display: grid; place-items: center;
  font-family: var(--f-sans);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--green-soft);
  text-align: center;
  padding: 24px;
}
.hero-image-label::before {
  content: "";
  display: block;
  width: 40px; height: 40px;
  border: 1px solid var(--green-soft);
  border-radius: 50%;
  margin: 0 auto 14px;
  background: radial-gradient(circle at 30% 30%, var(--cream-warm), transparent 60%);
}

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 48px 0 60px; }
}

/* ── BUTTONS ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-sans);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 16px 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}
.btn-primary {
  background: var(--green-deep);
  color: var(--paper);
}
.btn-primary:hover { background: var(--wine); }
.btn-ghost {
  background: transparent;
  border-color: var(--green);
  color: var(--green-deep);
}
.btn-ghost:hover { background: var(--green-deep); color: var(--paper); }
.btn-wine {
  background: var(--wine);
  color: var(--paper);
}
.btn-wine:hover { background: var(--wine-deep); }
.btn-ghost-light {
  background: transparent;
  border-color: rgba(236, 226, 209, 0.45);
  color: var(--cream);
}
.btn-ghost-light:hover { background: var(--cream); color: var(--emerald-deep); }

/* ── FULL-BLEED PHOTO BAND ────────────────────────────────────── */
.band {
  position: relative;
  min-height: 60vh;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--cream);
  overflow: hidden;
  padding: 0;
}
.band > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.95) brightness(0.62);
  z-index: 0;
}
.band-inner {
  position: relative;
  z-index: 1;
  max-width: 620px;
  padding: 40px 24px;
}
.band-inner .script {
  color: var(--cream);
  font-size: clamp(40px, 6vw, 76px);
  display: block;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}
.band-inner p {
  margin-top: 18px;
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(18px, 2.2vw, 24px);
  color: rgba(236, 226, 209, 0.92);
}
.btn .arrow { transition: transform 0.2s; }
.btn:hover .arrow { transform: translateX(3px); }

/* ── SECTIONS ─────────────────────────────────────────────────── */
section { padding: 96px 0; }
@media (max-width: 720px) { section { padding: 64px 0; } }

.section-head {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 56px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--rule);
}
.section-head .num {
  font-family: var(--f-sans);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--wine);
  font-weight: 600;
  margin-bottom: 14px;
}
.section-head h2 .script-inline {
  font-family: var(--f-script);
  color: var(--wine);
  font-weight: 400;
  font-size: 1.25em;
  display: inline-block;
  transform: translateY(0.05em);
}
.section-head .lede {
  font-size: 19px;
  color: var(--green);
  line-height: 1.55;
  max-width: 540px;
}
@media (max-width: 800px) {
  .section-head { grid-template-columns: 1fr; gap: 24px; align-items: start; }
}

/* ── HOME : pillars ──────────────────────────────────────────── */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.pillar {
  background: var(--paper);
  padding: 40px 32px 44px;
  display: flex; flex-direction: column; gap: 18px;
  min-height: 320px;
}
.pillar-glyph {
  width: 44px; height: 44px;
  border: 1px solid var(--green);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--green);
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 22px;
}
.pillar h3 {
  font-style: italic;
  font-weight: 400;
  font-size: 26px;
}
.pillar p {
  margin: 0;
  font-size: 16.5px;
  color: var(--green);
  line-height: 1.6;
}
@media (max-width: 800px) {
  .pillars { grid-template-columns: 1fr; }
}

/* ── ABOUT-STRIP ──────────────────────────────────────────────── */
.about-strip {
  background: var(--cream);
  padding: 110px 0;
  position: relative;
}
.about-strip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-strip-image {
  aspect-ratio: 3/4;
  background: var(--paper-deep);
  position: relative;
  border-radius: 2px;
  overflow: hidden;
}
.about-strip-image::before {
  content: "";
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(45deg,
      rgba(31, 68, 56, 0.05) 0,
      rgba(31, 68, 56, 0.05) 14px,
      transparent 14px, transparent 28px);
}
.about-strip-image .img-label {
  position: absolute;
  inset: 0;
  display: grid; place-items: center;
  font-family: var(--f-sans);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--green-soft);
}
@media (max-width: 800px) {
  .about-strip-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ── EVENT CARDS ──────────────────────────────────────────────── */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media (max-width: 900px) { .events-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .events-grid { grid-template-columns: 1fr; } }

.event-card {
  display: flex; flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}
.event-card:hover { transform: translateY(-4px); }
.event-poster {
  aspect-ratio: 4/5;
  background: var(--cream);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--rule);
}
.event-poster::before {
  content: "";
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(0deg,
      rgba(155, 44, 74, 0.05) 0,
      rgba(155, 44, 74, 0.05) 16px,
      transparent 16px, transparent 32px);
}
.event-poster img,
.post-cover img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.6s ease;
}
.event-card:hover .event-poster img,
.post-card:hover .post-cover img { transform: scale(1.05); }
.event-poster .poster-glyph {
  position: absolute;
  inset: 0;
  display: grid; place-items: center;
  font-family: var(--f-script);
  font-size: 80px;
  color: var(--wine);
  opacity: 0.55;
}
.event-poster .poster-tag { z-index: 2; }
.post-cover .glyph { z-index: 2; }
.event-poster .poster-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--paper);
  font-family: var(--f-sans);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--wine);
  padding: 6px 12px;
  border-radius: 999px;
}
.event-meta {
  display: flex; justify-content: space-between;
  margin-top: 18px;
  font-family: var(--f-sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}
.event-title {
  margin-top: 12px;
  font-size: 26px;
  font-style: italic;
  font-weight: 400;
  color: var(--green-deep);
  line-height: 1.15;
}
.event-desc {
  margin-top: 10px;
  font-size: 16px;
  color: var(--green);
  line-height: 1.5;
}
.event-link {
  margin-top: 16px;
  font-family: var(--f-sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wine);
  font-weight: 600;
  display: inline-flex; align-items: center; gap: 6px;
}

/* ── COLETIVO WALL ────────────────────────────────────────────── */
.coletivo-wall {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-bottom: 64px;
}
@media (max-width: 900px) { .coletivo-wall { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 600px) { .coletivo-wall { grid-template-columns: repeat(3, 1fr); } }

.coletivo-tile {
  margin: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid var(--rule);
  background: var(--paper-deep);
  position: relative;
}
.coletivo-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.92) contrast(1.02);
  transition: transform 0.6s ease, filter 0.4s ease;
}
.coletivo-tile:hover img {
  transform: scale(1.04);
  filter: saturate(1) contrast(1.04);
}

/* ── THERAPIST FILTER ─────────────────────────────────────────── */
.t-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 14px;
}
.t-chip {
  font-family: var(--f-sans);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--green-soft);
  background: transparent;
  border: 1px solid var(--rule-strong);
  border-radius: 999px;
  padding: 9px 18px;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.t-chip:hover { border-color: var(--wine); color: var(--wine); }
.t-chip.active {
  background: var(--wine);
  border-color: var(--wine);
  color: var(--cream);
}
.t-filter-count {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 16px;
  color: var(--green-soft);
  margin: 0 0 40px;
}

/* ── THERAPIST CARDS ──────────────────────────────────────────── */
.therapists-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 900px) { .therapists-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .therapists-grid { grid-template-columns: 1fr; } }

.t-card {
  display: flex;
  flex-direction: column;
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.3s, box-shadow 0.3s;
}
.t-card:hover {
  border-color: var(--rule-strong);
  transform: translateY(-4px);
  box-shadow: 0 20px 46px rgba(18, 42, 33, 0.15);
}
.t-card-photo {
  background: var(--emerald);
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}
.t-card-photo .photo-initials {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--f-script);
  font-size: 76px;
  color: rgba(236, 226, 209, 0.55);
}
.t-card-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;   /* keep faces (upper in frame) visible */
  display: block;
  filter: saturate(0.97) contrast(1.02);
  z-index: 1;
  transition: transform 0.6s ease;
}
.t-card:hover .t-card-photo img { transform: scale(1.04); }
.t-card-body {
  padding: 26px 28px 24px;
  display: flex; flex-direction: column;
  gap: 16px;
  flex: 1;
}
.t-card-name {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: 30px;
  line-height: 1.05;
  color: var(--wine);
}
.t-card-services {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-direction: column;
  gap: 9px;
}
.t-card-services li {
  font-family: var(--f-serif);
  color: var(--green-deep);
  font-size: 17px;
  line-height: 1.4;
  padding-left: 20px;
  position: relative;
}
.t-card-services li::before {
  content: "✦";
  position: absolute; left: 0; top: 6px;
  color: var(--wine);
  font-size: 10px;
}
.t-card-contact {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
  display: flex; gap: 10px;
}
.tc-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--f-sans);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}
.tc-wa, .tc-ig {
  flex: 1;
  padding: 12px 10px;
}
.tc-wa {
  background: var(--wine);
  color: var(--cream);
}
.tc-wa:hover { background: var(--wine-deep); }
.tc-ig {
  background: transparent;
  border-color: var(--rule-strong);
  color: var(--green-deep);
}
.tc-ig:hover { border-color: var(--wine); color: var(--wine); background: rgba(121,32,74,0.05); }
.tc-btn svg { width: 16px; height: 16px; display: block; flex-shrink: 0; }

/* ── CALENDAR LIST ────────────────────────────────────────────── */
.cal-list { border-top: 1px solid var(--rule); }
.cal-row {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--rule);
  text-decoration: none;
  color: inherit;
  transition: background 0.2s, padding 0.2s;
}
.cal-row:hover {
  background: linear-gradient(90deg, transparent, rgba(155, 44, 74, 0.04), transparent);
  padding-left: 12px;
}
.cal-date {
  font-family: var(--f-serif);
  font-style: italic;
}
.cal-date .day {
  display: block;
  font-size: 44px;
  line-height: 1;
  color: var(--wine);
  font-weight: 500;
}
.cal-date .month {
  font-family: var(--f-sans);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-soft);
  margin-top: 6px;
  display: block;
  font-weight: 600;
}
.cal-info h3 {
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 2.2vw, 28px);
  margin-bottom: 6px;
}
.cal-info .by {
  font-family: var(--f-sans);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}
.cal-info .by em {
  color: var(--wine);
  font-style: normal;
  font-weight: 600;
}
.cal-cta {
  font-family: var(--f-sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wine);
  font-weight: 600;
  white-space: nowrap;
}

@media (max-width: 720px) {
  .cal-row { grid-template-columns: 84px 1fr; gap: 20px; padding: 22px 0; }
  .cal-cta { grid-column: 1 / -1; padding-left: 104px; }
  .cal-date .day { font-size: 36px; }
}

/* ── AGENDA (full calendar) ───────────────────────────────────── */
.agenda { display: flex; flex-direction: column; gap: 54px; }
.agenda-cat-head {
  display: flex; align-items: baseline; gap: 16px;
  margin-bottom: 8px; padding-bottom: 14px;
  border-bottom: 1px solid var(--rule-strong);
}
.agenda-cat-head h3 {
  font-family: var(--f-display);
  font-style: italic; font-weight: 400;
  font-size: clamp(26px, 3vw, 34px);
  color: var(--wine);
}
.agenda-cat-head .n {
  font-family: var(--f-sans); font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--green-soft); font-weight: 600;
}
.agenda-row {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 28px;
  padding: 17px 0;
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
}
.agenda-when {
  font-family: var(--f-sans);
  font-size: 12.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--wine);
  font-weight: 600;
}
.agenda-title {
  font-family: var(--f-serif);
  font-size: 19px;
  color: var(--green-deep);
  line-height: 1.35;
}
.agenda-note {
  display: block; margin-top: 5px;
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 15px;
  color: var(--green-soft);
}
@media (max-width: 680px) {
  .agenda-row { grid-template-columns: 1fr; gap: 4px; }
}

/* ── INSTAGRAM FEED ───────────────────────────────────────────── */
.ig-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 900px) { .ig-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .ig-grid { grid-template-columns: repeat(2, 1fr); } }
.ig-tile {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid var(--rule);
  background: var(--emerald);
  display: block;
}
.ig-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.ig-tile:hover img { transform: scale(1.05); }
.ig-tile .ig-cap {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end;
  padding: 14px;
  background: linear-gradient(to top, rgba(18,42,33,0.82), transparent 60%);
  color: var(--cream);
  font-family: var(--f-serif);
  font-size: 13px;
  line-height: 1.35;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.ig-tile:hover .ig-cap { opacity: 1; }

/* ── FOOTER ───────────────────────────────────────────────────── */
.footer {
  background: var(--green-deep);
  color: var(--cream);
  padding: 80px 0 40px;
  margin-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(244, 237, 224, 0.18);
}
.footer h4 {
  color: var(--cream);
  font-family: var(--f-sans);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0 0 18px;
  opacity: 0.7;
}
.footer-emblem {
  width: 64px; height: 64px;
  object-fit: contain;
  margin-bottom: 16px;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.35));
}
.footer-brand .script {
  font-size: 56px;
  color: var(--rose);
  margin-bottom: 6px;
  display: block;
}
.footer-brand .tagline {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 17px;
  color: var(--cream);
  opacity: 0.85;
  max-width: 320px;
  line-height: 1.5;
}
.footer-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
  font-family: var(--f-serif);
  font-size: 16px;
}
.footer-list a:hover { color: #E89AAE; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px;
  font-family: var(--f-sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244, 237, 224, 0.55);
  font-weight: 500;
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 16px; }
}

/* ── FORMS ────────────────────────────────────────────────────── */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 720px) { .form-grid { grid-template-columns: 1fr; } }

.field {
  display: flex; flex-direction: column;
  gap: 8px;
}
.field label {
  font-family: var(--f-sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-soft);
  font-weight: 600;
}
.field input, .field textarea, .field select {
  font-family: var(--f-serif);
  font-size: 17px;
  color: var(--green-deep);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--rule-strong);
  padding: 10px 0 12px;
  outline: none;
  transition: border-color 0.2s;
}
.field textarea { resize: vertical; min-height: 100px; border: 1px solid var(--rule-strong); padding: 14px; border-radius: 2px; }
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--wine);
}

/* ── DECORATIONS ──────────────────────────────────────────────── */
.divider-orn {
  display: flex; align-items: center; justify-content: center;
  gap: 14px;
  color: var(--wine);
  font-size: 14px;
  margin: 16px 0;
}
.divider-orn::before, .divider-orn::after {
  content: ""; flex: 1; height: 1px;
  background: var(--rule);
  max-width: 80px;
}

.tag-pill {
  display: inline-flex; align-items: center;
  font-family: var(--f-sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--wine);
  border: 1px solid rgba(155, 44, 74, 0.2);
}

/* ── PAGE HERO (sub pages) ────────────────────────────────────── */
.page-hero {
  padding: 64px 0 80px;
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
}
.page-hero .crumbs {
  font-family: var(--f-sans);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
  margin-bottom: 22px;
}
.page-hero .crumbs .sep { margin: 0 10px; color: var(--rule-strong); }
.page-hero h1 {
  font-size: clamp(48px, 6.5vw, 96px);
  font-weight: 500;
}
.page-hero h1 .script-line {
  display: block;
  font-family: var(--f-script);
  color: var(--wine);
  font-size: 0.55em;
  font-weight: 400;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}
.page-hero .lede {
  margin-top: 28px;
  font-size: 21px;
  color: var(--green);
  max-width: 680px;
  line-height: 1.55;
}

/* ── BLOG POSTS ───────────────────────────────────────────────── */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 56px;
}
@media (max-width: 720px) { .posts-grid { grid-template-columns: 1fr; } }
.post-card {
  display: block;
  text-decoration: none;
  color: inherit;
}
.post-cover {
  aspect-ratio: 16/10;
  background: var(--cream);
  border: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}
.post-cover::before {
  content: "";
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(60deg,
      rgba(31, 68, 56, 0.05) 0,
      rgba(31, 68, 56, 0.05) 14px,
      transparent 14px, transparent 28px);
}
.post-cover .glyph {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--f-script);
  font-size: 64px;
  color: var(--wine);
  opacity: 0.6;
}
.post-meta {
  margin-top: 20px;
  font-family: var(--f-sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}
.post-card h3 {
  margin-top: 12px;
  font-style: italic;
  font-weight: 400;
  font-size: 30px;
}
.post-card p {
  margin-top: 12px;
  color: var(--green);
  font-size: 17px;
}

/* ── ASSOCIATE TRACKS ─────────────────────────────────────────── */
.tracks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 800px) { .tracks { grid-template-columns: 1fr; } }
.track {
  background: var(--cream);
  padding: 56px 48px;
  position: relative;
  border-radius: 2px;
  display: flex; flex-direction: column;
  gap: 20px;
}
.track .num-corner {
  position: absolute;
  top: 28px; right: 32px;
  font-family: var(--f-script);
  color: var(--wine);
  font-size: 56px;
  line-height: 1;
  opacity: 0.85;
}
.track h3 {
  font-style: italic; font-weight: 400;
  font-size: 36px;
}
.track ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-direction: column;
  gap: 14px;
}
.track ul li {
  display: flex; gap: 14px;
  font-size: 16.5px;
  color: var(--green);
  line-height: 1.5;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rule);
}
.track ul li::before {
  content: "✦";
  color: var(--wine);
  font-size: 12px;
  line-height: 1.7;
}

/* ── CONTACT SPLIT ────────────────────────────────────────────── */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
@media (max-width: 900px) { .contact-split { grid-template-columns: 1fr; gap: 48px; } }

.contact-block {
  display: flex; flex-direction: column;
  gap: 22px;
}
.contact-line {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--rule);
}
.contact-line .key {
  font-family: var(--f-sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-soft);
  font-weight: 600;
  padding-top: 4px;
}
.contact-line .val {
  font-family: var(--f-serif);
  font-size: 19px;
  color: var(--green-deep);
  line-height: 1.4;
}
.contact-line .val a:hover { color: var(--wine); }

.map-frame {
  aspect-ratio: 4/3;
  background: var(--cream);
  border: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}
.map-frame iframe {
  width: 100%; height: 100%;
  border: 0;
  filter: saturate(0.7) contrast(0.95);
}

/* ── WEDDINGS PALETTE TWEAK ───────────────────────────────────── */
.weddings-hero {
  background: linear-gradient(180deg, var(--cream) 0%, var(--paper) 100%);
}

/* ── MANIFESTO ────────────────────────────────────────────────── */
.manifesto {
  background: var(--cream);
  padding: 120px 0 140px;
}
.manifesto-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.manifesto-inner .lead {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.45;
  color: var(--green-deep);
  margin-bottom: 40px;
}
.manifesto-inner p {
  font-family: var(--f-display);
  font-size: 19px;
  line-height: 1.7;
  color: var(--green);
  margin: 0 0 28px;
  text-align: left;
}
.manifesto-verse {
  display: flex; flex-direction: column;
  gap: 6px;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 21px;
  color: var(--wine);
  line-height: 1.45;
  margin: 32px auto;
  padding: 24px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  text-align: center;
}
.manifesto-closing {
  margin-top: 56px;
  display: flex; flex-direction: column;
  gap: 8px;
  font-family: var(--f-script);
  font-size: clamp(32px, 4vw, 48px);
  color: var(--wine);
  line-height: 1.2;
  text-align: center;
}
.manifesto-closing span:first-child {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 22px;
  color: var(--green-deep);
  margin-bottom: 4px;
}

/* ── UTIL ─────────────────────────────────────────────────────── */
.muted { color: var(--ink-soft); }
.center { text-align: center; }
.spacer-lg { height: 80px; }
.spacer-md { height: 40px; }

.fade-in { opacity: 0; transform: translateY(8px); animation: fadeUp 0.6s ease forwards; }
@keyframes fadeUp { to { opacity: 1; transform: none; } }

/* ── BRAND TAGLINES (Yestudio key-visual copy) ───────────────────── */
.hero-kicker {
  margin-top: 18px;
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 27px);
  line-height: 1.25;
  color: var(--gold);
}
.tagline-accent {
  margin-top: 26px;
  font-family: var(--f-script);
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.05;
  color: var(--wine);
}
