/* ═══════════════════════════════════════════════════════
   MODERN TAROT COLLECTIVE — style.css
   Master stylesheet. All pages link to this file via:
   <link rel="stylesheet" href="/css/style.css">
   ═══════════════════════════════════════════════════════ */

/* ─── TOKENS ─────────────────────────────────────────── */
:root {
  --gold: #b8922a;
  --gold-pale: rgba(184, 146, 42, 0.12);
  --gold-rule: rgba(201, 168, 76, 0.3);
  --black: #111111;
  --text: #1c1c1c;
  --muted: #5c5c5c;
  --light: #f9f6f0;
  --white: #ffffff;
  --spanish: #1a6b6b;
}

/* ─── RESET & BASE ───────────────────────────────────── */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Spectral", Georgia, serif;
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  font-size: 16px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

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

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

h1,
h2 {
  font-family: "Cinzel", serif;
  font-weight: 400;
  color: var(--black);
  line-height: 1.2;
}

h1 {
  font-size: clamp(28px, 3.8vw, 54px);
  letter-spacing: 0.03em;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(22px, 2.5vw, 36px);
  letter-spacing: 0.04em;
}

/* ─── SKIP NAVIGATION ────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  padding: 12px 24px;
  background: var(--black);
  color: var(--white);
  font-family: "Cinzel", serif;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  z-index: 9999;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
}

/* ─── FOCUS STYLES ───────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

:focus:not(:focus-visible) {
  outline: none;
}

/* ─── NAV ────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 56px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--gold-rule);
  backdrop-filter: blur(8px);
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-wordmark {
  font-family: "Cinzel", serif;
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--black) !important;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-family: "Cinzel", serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted) !important;
  text-decoration: none;
  transition: color 0.2s;
  padding: 16px 0;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold) !important;
}

.nav-btn {
  font-family: "Cinzel", serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white) !important;
  background: var(--black);
  padding: 12px 20px;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s;
}

.nav-btn:hover {
  background: var(--gold);
}

.nav-lang {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: "Cinzel", serif;
  font-size: 11px;
  letter-spacing: 0.12em;
}

.nav-lang-active {
  color: var(--muted);
}

.nav-lang-divider {
  color: var(--gold-rule);
}

.nav-lang-link {
  color: var(--gold);
  text-decoration: none;
}

.nav-lang-link:hover {
  text-decoration: underline;
}

/* ─── HERO ───────────────────────────────────────────── */
.hero {
  padding-top: 56px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-left: 48px;
  padding-right: 48px;
  position: relative;
  overflow: hidden;
}

.hero-circle-bg {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: var(--light);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -42%);
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero h1 {
  max-width: 640px;
}

.hero-logo {
  margin-bottom: 40px;
}

.hero-sub {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 440px;
  margin-bottom: 48px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ─── MOBILE HERO LOGO (hidden on desktop) ───────────── */
.hero-logo-mobile {
  display: none;
}

.hero-rule-mobile {
  display: none;
}

/* ─── LOGO & ANIMATION ───────────────────────────────── */
.logo-svg {
  overflow: visible;
  display: block;
}

.logo-circle {
  stroke-dasharray: 314;
  stroke-dashoffset: 314;
  animation: draw 2s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
}

.logo-vline {
  stroke-dasharray: 120;
  stroke-dashoffset: 120;
  animation: draw 1.2s cubic-bezier(0.4, 0, 0.2, 1) 2.1s forwards;
}

.logo-hline {
  stroke-dasharray: 110;
  stroke-dashoffset: 110;
  animation: draw 1.2s cubic-bezier(0.4, 0, 0.2, 1) 3s forwards;
}

.logo-word-1 {
  opacity: 0;
  animation: fadeIn 0.6s ease 3.5s forwards;
}

.logo-word-2 {
  opacity: 0;
  animation: fadeIn 0.6s ease 4s forwards;
}

.logo-word-3 {
  opacity: 0;
  animation: fadeIn 0.6s ease 4.5s forwards;
}

@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes spinRing {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes pulseDot {
  0%,
  100% {
    opacity: 0.25;
  }

  50% {
    opacity: 0.9;
  }
}

/* Respect user motion preferences */
@media (prefers-reduced-motion: reduce) {
  .logo-circle,
  .logo-vline,
  .logo-hline {
    animation: none;
    stroke-dashoffset: 0;
  }

  .logo-word-1,
  .logo-word-2,
  .logo-word-3 {
    animation: none;
    opacity: 1;
  }

  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ─── SHARED UTILITIES ───────────────────────────────── */
.eyebrow {
  display: block;
  font-family: "Cinzel", serif;
  font-size: 12px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.thin-rule {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 28px auto;
  opacity: 0.5;
}

/* ─── BUTTONS ────────────────────────────────────────── */
.btn {
  font-family: "Cinzel", serif;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  padding: 18px 36px;
  transition: all 0.25s;
  cursor: pointer;
}

.btn-dark {
  color: var(--white);
  background: var(--black);
  border-radius: 2px;
}

.btn-dark:hover {
  background: var(--gold);
}

.btn-outline {
  color: var(--black);
  border: 1px solid rgba(184, 146, 42, 0.5);
  background: transparent;
  border-radius: 2px;
}

.btn-outline:hover {
  background: var(--light);
}

.btn-gold {
  color: var(--white);
  background: var(--gold);
  padding: 18px 56px;
  font-size: 13px;
  letter-spacing: 0.2em;
  border-radius: 2px;
}

.btn-gold:hover {
  background: #9a7820;
}

/* ─── TEXT LINKS ─────────────────────────────────────── */
.text-link,
.offering-text-link {
  font-family: "EB Garamond", serif;
  font-size: 16px;
  font-style: italic;
  color: var(--muted);
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  display: inline-block;
  padding: 4px 0;
}

.text-link:hover,
.offering-text-link:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.cta-text-link {
  font-family: "EB Garamond", serif;
  font-size: 16px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.6);
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  display: inline-block;
  margin-top: 20px;
  padding: 4px 0;
}

.cta-text-link:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* ─── SECTION 2: METHOD ──────────────────────────────── */
.s-method {
  padding: 80px 56px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.approach-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: start;
  margin-bottom: 96px;
}

.approach-intro h2 {
  line-height: 1.3;
}

.approach-intro-body {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.9;
  padding-top: 8px;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px;
}

.pillar-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--gold-rule);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  background: var(--light);
}

.pillar-circle-num {
  font-family: "Cinzel", serif;
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.1em;
}

.pillar-heading {
  font-family: "Cinzel", serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--black);
  line-height: 1.4;
  margin-bottom: 16px;
}

.pillar-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.pillar-items li {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.65;
  padding-left: 14px;
  position: relative;
}

.pillar-items li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.6;
}
/* ─── SECTION 3: OFFERINGS ───────────────────────────────── */
.s-offerings {
  background: var(--light);
  padding: 120px 56px;
  }
  .offerings-inner,
  .s-offerings-inner {
  max-width: 1200px;
  margin: 0 auto;
  }
  .offerings-header,
  .s-offerings-header {
  text-align: center;
  margin-bottom: 80px;
  }
  .offerings-header h2,
  .s-offerings-header h2 {
  margin-top: 14px;
  }
  .offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: stretch;
  }
  .offering {
  background: var(--white);
  border-radius: 4px;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
  }
  .offering::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 1px solid var(--gold-rule);
  pointer-events: none;
  }
  .offering-num {
  font-family: "Cinzel", serif;
  font-size: 9px;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 18px;
  }
  .offering-name,
  .offering-title {
  font-family: "Cinzel", serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--black);
  line-height: 1.3;
  margin-bottom: 16px;
  }
  .offering-format {
  font-family: "Cinzel", serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
  }
  .offering-desc {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 16px;
  }
  .offering-btns {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  }
  .offering-details-btn {
  font-size: 10px;
  padding: 10px 18px;
  min-width: 0;
  }
/* ─── SECTION 4: PERSPECTIVE ─────────────────────────── */
.s-perspective {
  padding: 120px 56px;
  border-top: 1px solid var(--gold-rule);
  border-bottom: 1px solid var(--gold-rule);
}

.s-perspective-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 96px;
  align-items: start;
}

.s-perspective-left h2 {
  margin-bottom: 22px;
}

.s-perspective-left p {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 16px;
}

.topic-list {
  list-style: none;
  margin-bottom: 36px;
}

.topic-item {
  padding: 22px 0;
  border-bottom: 1px solid var(--gold-rule);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.topic-item:first-child {
  border-top: 1px solid var(--gold-rule);
}

.topic-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--gold-rule);
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 3px;
}

.topic-dot-inner {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.7;
}

.topic-heading {
  font-family: "Cinzel", serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--black);
  margin-bottom: 4px;
  line-height: 1.4;
}

.topic-body {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.65;
}

.discovery-nudge {
  font-size: 18px;
  font-style: italic;
  color: var(--muted);
  line-height: 1.75;
  padding: 20px 24px;
  border-left: 2px solid var(--gold-rule);
  border-radius: 0;
  background: var(--light);
}

.discovery-nudge a {
  color: var(--gold);
  border-bottom: 1px solid var(--gold-rule);
  transition: border-color 0.2s;
}

.discovery-nudge a:hover {
  border-bottom-color: var(--gold);
}

/* ─── SECTION: NARRATIVE ─────────────────────────────── */
.s-narrative {
  padding: 120px 56px;
  background: var(--white);
}

.s-narrative-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 4fr 6fr;
  gap: 96px;
  align-items: start;
}

.s-narrative-left {
  position: sticky;
  top: 96px;
}

.s-narrative-label {
  font-family: "Cinzel", serif;
  font-size: 12px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: block;
}

.s-narrative-quote {
  font-size: clamp(20px, 2vw, 28px);
  font-style: italic;
  color: var(--black);
  line-height: 1.5;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--gold-rule);
}

.s-narrative-right {
  padding-top: 4px;
}

.s-narrative-right h2 {
  margin-bottom: 28px;
}

.s-narrative-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.s-narrative-body p {
  font-size: 17px;
  color: var(--text);
  line-height: 1.9;
}

.s-narrative-body p + p {
  color: var(--muted);
}

/* ─── SECTION: WHAT ──────────────────────────────────── */
.s-what {
  padding: 120px 56px;
  border-top: 1px solid var(--gold-rule);
  border-bottom: 1px solid var(--gold-rule);
}

.s-what-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: start;
}

.s-what-left h2 {
  margin-bottom: 20px;
}

.s-what-left .intro {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 36px;
}

.learning-pillar {
  margin-bottom: 40px;
}

.learning-pillar:last-child {
  margin-bottom: 0;
}

.pillar-label {
  font-family: "Cinzel", serif;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.pillar-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--gold-rule);
}

.includes-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.includes-list li {
  font-size: 16px;
  color: var(--text);
  padding-left: 20px;
  position: relative;
  line-height: 1.65;
}

.includes-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
}

.s-what-right {
  padding-top: 8px;
}

.s-what-quote {
  font-size: 18px;
  font-style: italic;
  color: var(--text);
  line-height: 1.85;
  padding: 28px 32px;
  border-left: 2px solid rgba(184, 146, 42, 0.4);
  border-radius: 0;
  background: var(--light);
}

/* ─── SECTION: CTA ───────────────────────────────────── */
.s-cta {
  position: relative;
  overflow: hidden;
  padding: 6rem 1.5rem;
  background: var(--black);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.s-cta::before,
.s-cta::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

.s-cta::before {
  width: min(560px, 88vw);
  height: min(560px, 88vw);
  border: 1px solid rgba(240, 217, 138, 0.16);
}

.s-cta::after {
  width: min(360px, 62vw);
  height: min(360px, 62vw);
  border: 1px solid rgba(240, 217, 138, 0.1);
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.cta-eyebrow {
  font-family: "Cinzel", serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #e6c56a;
  opacity: 0.8;
  margin-bottom: 20px;
}

.cta-title {
  font-family: "Cinzel", serif;
  font-size: clamp(26px, 3.5vw, 50px);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 52px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  padding: 0.9rem 1.4rem;
  border: 1px solid #c8a24a;
  color: #c8a24a;
  background: transparent;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.btn-outline-gold:hover,
.btn-outline-gold:focus-visible {
  background: #c8a24a;
  color: #111;
  transform: translateY(-1px);
  outline: 2px solid #c8a24a;
  outline-offset: 3px;
}

@media (max-width: 640px) {
  .cta-actions {
    gap: 0.75rem;
  }

  .btn-outline-gold {
    width: 100%;
    max-width: 320px;
    min-width: 0;
  }
}

/* ─── FOOTER ─────────────────────────────────────────── */
footer {
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 28px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-left {
  font-family: "Cinzel", serif;
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

.footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.footer-links a {
  font-family: "Cinzel", serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white) !important;
  text-decoration: none;
  transition: color 0.2s;
  padding: 8px 0;
}

.footer-links a:hover {
  color: var(--gold) !important;
}

.footer-right {
  font-family: "Cinzel", serif;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.footer-social {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.footer-social a {
  font-family: "Cinzel", serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white) !important;
  text-decoration: none;
  transition: color 0.2s;
  padding: 8px 0;
  display: inline-flex;
  align-items: center;
}

.footer-social a:hover {
  color: var(--gold) !important;
}

.footer-social i {
  color: inherit;
  font-size: 0.9rem;
  line-height: 1;
}

/* ─── CONTACT PAGE ───────────────────────────────────── */
.contact-layout {
  max-width: 1100px;
  margin: 0 auto;
  padding: 120px 56px 140px;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 96px;
  align-items: start;
}

.contact-left {
  position: sticky;
  top: 96px;
}

.contact-intro {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.9;
  margin-top: 20px;
  margin-bottom: 12px;
}

.contact-intro-es {
  font-size: 16px;
  font-style: italic;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 40px;
  padding-left: 14px;
  border-left: 2px solid var(--gold-rule);
}

.contact-methods {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--gold-rule);
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--gold-rule);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-method:hover .contact-method-value {
  color: var(--gold);
}

.contact-method-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--gold-rule);
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-method-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-method-label {
  font-family: "Cinzel", serif;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3px;
}

.contact-method-value {
  font-family: "EB Garamond", serif;
  font-size: 17px;
  color: var(--text);
  transition: color 0.2s;
}

.contact-location {
  font-size: 15px;
  font-style: italic;
  color: var(--muted);
  margin-top: 24px;
  line-height: 1.75;
}

.contact-form-wrap {
  padding-top: 4px;
}

.contact-form-wrap h2 {
  margin-bottom: 8px;
}

.form-intro {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 8px;
}

.form-intro-es {
  font-size: 15px;
  font-style: italic;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 36px;
  padding-left: 14px;
  border-left: 2px solid var(--gold-rule);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  font-family: "Cinzel", serif;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--black);
}

.form-field input,
.form-field textarea,
.form-field select {
  font-family: "EB Garamond", Georgia, serif;
  font-size: 17px;
  color: var(--text);
  background: var(--light);
  border: 1px solid transparent;
  border-radius: 2px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #aaa;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--gold-rule);
  background: var(--white);
}

.form-field input:focus-visible,
.form-field textarea:focus-visible,
.form-field select:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.form-field textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.7;
}

.select-wrap {
  position: relative;
}

.select-wrap::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid var(--gold);
  pointer-events: none;
}

.radio-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.radio-option {
  display: flex;
  align-items: center;
}

.radio-option input[type="radio"] {
  position: absolute;
  opacity: 0;
}

.radio-option label {
  font-family: "Cinzel", serif;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 10px 16px;
  border: 1px solid var(--gold-rule);
  border-radius: 2px;
  cursor: pointer;
  background: var(--light);
  transition: all 0.2s;
  user-select: none;
}

.radio-option input[type="radio"]:checked + label {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.radio-option label:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.form-footer {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.form-note {
  font-family: "EB Garamond", serif;
  font-size: 15px;
  font-style: italic;
  color: var(--muted);
}

.form-success {
  display: none;
  padding: 28px 32px;
  background: var(--light);
  border-left: 2px solid rgba(184, 146, 42, 0.4);
  margin-top: 24px;
}

.form-success p {
  font-size: 17px;
  color: var(--text);
  line-height: 1.8;
}

.form-success p + p {
  font-style: italic;
  color: var(--muted);
  margin-top: 8px;
  font-size: 16px;
}

.form-success.visible {
  display: block;
}

@media (max-width: 860px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 64px;
    padding: 80px 28px 100px;
  }

  .contact-left {
    position: static;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════════
   MOBILE RESPONSIVE
   Breakpoint: 860px
   ═══════════════════════════════════════════════════════ */

/* ─── NAV: HAMBURGER BUTTON ──────────────────────────── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
  flex-shrink: 0;
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--black);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ─── NAV: DRAWER (hidden on desktop) ───────────────── */
.nav-drawer {
  display: none;
}

/* ─── MOBILE BREAKPOINT ──────────────────────────────── */
@media (max-width: 860px) {

  /* ── NAV ── */
  nav {
    padding: 0 20px;
    flex-wrap: nowrap;
  }

  .nav-lang {
    margin-left: auto;
    margin-right: 12px;
  }

  .nav-right {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  /* Drawer panel */
  .nav-drawer {
    display: block;
    position: fixed;
    top: 56px;
    right: 0;
    width: min(300px, 88vw);
    height: calc(100vh - 56px);
    background: var(--white);
    border-left: 1px solid var(--gold-rule);
    z-index: 99;
    padding: 40px 28px 40px;
    display: flex;
    flex-direction: column;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
  }

  .nav-drawer.is-open {
    transform: translateX(0);
  }

  /* Drawer overlay */
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 56px 0 0 0;
    background: rgba(17, 17, 17, 0.35);
    z-index: 98;
    backdrop-filter: blur(2px);
  }

  .nav-overlay.is-open {
    display: block;
  }

  /* Drawer language switcher */
  .drawer-lang {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: "Cinzel", serif;
    font-size: 11px;
    letter-spacing: 0.12em;
    padding-bottom: 28px;
    margin-bottom: 28px;
    border-bottom: 1px solid var(--gold-rule);
  }

  /* Drawer nav links */
  .drawer-link {
    font-family: "Cinzel", serif;
    font-size: 13px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    padding: 18px 0;
    border-bottom: 1px solid var(--gold-rule);
    transition: color 0.2s;
    display: block;
  }

  .drawer-link:hover,
  .drawer-link[aria-current="page"] {
    color: var(--gold);
  }

  /* Drawer CTA button */
  .drawer-btn {
    margin-top: 32px;
    display: block;
    text-align: center;
    font-family: "Cinzel", serif;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--black);
    padding: 16px 20px;
    border-radius: 2px;
    text-decoration: none;
    transition: background 0.2s;
  }

  .drawer-btn:hover {
    background: var(--gold);
  }

  /* ── HERO ── */
  .hero {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero-logo {
    display: none;
  }

  .hero-circle-bg {
    display: none;
  }

  /* Mobile logo mark + wordmark */
  .hero-logo-mobile {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
  }

  .hero-logo-mobile .nav-wordmark {
    font-size: 14px;
    text-align: left;
  }

  /* Thin gold rule between mobile logo and h1 */
  .hero-rule-mobile {
    display: block;
    width: 40px;
    height: 1px;
    background: var(--gold);
    opacity: 0.5;
    margin: 0 auto 24px;
  }

  /* ── SECTION PADDING ── */
  .s-method,
  .s-offerings,
  .s-perspective,
  .s-narrative,
  .s-what {
    padding-left: 24px;
    padding-right: 24px;
  }

  .s-method {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .s-offerings {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .s-perspective,
  .s-narrative,
  .s-what {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  /* ── TWO-COLUMN GRIDS → STACK ── */
  .approach-intro {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 56px;
  }

  .s-perspective-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .s-narrative-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .s-narrative-left {
    position: static;
  }

  .s-what-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  /* ── THREE-COLUMN GRIDS → SINGLE COLUMN ── */
  .pillars {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .offerings-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* ── FOOTER ── */
  footer {
    padding: 40px 24px;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 24px;
  }

  .footer-social {
    gap: 24px;
  }
}

/* ─── EXTRA SMALL (≤ 480px) ──────────────────────────── */
@media (max-width: 480px) {
  h1 {
    font-size: clamp(24px, 7vw, 36px);
  }

  .hero-sub {
    font-size: 16px;
  }

  .hero-btns {
    flex-direction: column;
    width: 100%;
  }

  .hero-btns .btn {
    width: 100%;
    text-align: center;
  }

  .offering {
    padding: 36px 28px;
  }
}

/* ─── IPAD PORTRAIT HERO FIX (768–900px) ─────────────────
   .hero's min-height: 100vh causes excessive empty space
   on tablet portrait viewports (~768–900px wide). Override
   to size on content instead of forcing full viewport height.
   ─────────────────────────────────────────────────────── */
@media (min-width: 768px) and (max-width: 900px) {
  .hero {
    min-height: auto;
    padding-top: 120px;
    padding-bottom: 80px;
  }
}
/* ─── SHORT VIEWPORT HERO FIX (landscape iPad / short windows) ─
   .hero-circle-bg needs ~812px of vertical room to render
   without clipping (700px circle + its -42% transform offset).
   On wide-but-short viewports (landscape tablets, small laptop
   windows), give the hero enough min-height to contain it fully.
   ─────────────────────────────────────────────────────────── */
   @media (min-width: 901px) and (max-height: 850px) {
    .hero {
      min-height: 860px;
    }
  }
  