:root {
  --cream: #F7F3EA;
  --gold: #B99B6C;
  --gold-soft: #D8C6A5;
  --charcoal: #1E1C19;
  --charcoal-2: #2A2723;
  --ink-muted: #4A453D;
  --ink-faint: #9C9384;
  --card: #F1EBDD;

  --serif: 'Cormorant Garamond', 'Cambria', Georgia, serif;
  --sans: 'Poppins', 'Calibri', sans-serif;
  --body: 'Quicksand', 'Calibri', sans-serif;

  --max: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--body);
  font-weight: 500;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

/* ---------- Top bar ---------- */

.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px clamp(20px, 5vw, 56px);
  background: rgba(247, 243, 234, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(30, 28, 25, 0.08);
}

.topbar__mark {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.topbar__icon {
  width: 24px;
  height: 24px;
}

.topbar__word {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  color: var(--charcoal);
}

.topbar__cta {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--charcoal);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}

/* ---------- Shared ---------- */

.eyebrow {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
}

.eyebrow--dark { color: var(--gold-soft); }

.section {
  padding: clamp(80px, 12vw, 160px) clamp(20px, 6vw, 56px);
}

.section--cream { background: var(--cream); }

.section--dark {
  background: var(--charcoal);
  color: var(--cream);
}

.section__inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section__inner--narrow {
  max-width: 640px;
  text-align: center;
}

.section__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  line-height: 1.15;
  margin: 0 0 48px;
  color: var(--charcoal);
}

.section__title--dark { color: var(--cream); }

/* ---------- Hero ---------- */

.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--charcoal);
  color: var(--cream);
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
}

.hero__inner { max-width: 720px; }

.hero__icon {
  width: clamp(64px, 10vw, 96px);
  height: clamp(64px, 10vw, 96px);
  margin: 0 auto 32px;
}

.hero__claim {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2.2rem, 5.6vw, 4rem);
  line-height: 1.28;
  margin: 0;
  color: var(--cream);
}

.scroll-cue {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 56px;
  display: block;
}

.scroll-cue span {
  display: block;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--gold) 60%, transparent);
  animation: scrollcue 2.2s ease-in-out infinite;
  transform-origin: top;
}

@keyframes scrollcue {
  0% { transform: scaleY(0); opacity: 0; }
  40% { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1); opacity: 0; }
}

/* ---------- Filosofia ---------- */

.section__inner--article { max-width: 760px; }

.filosofia__article p {
  font-size: clamp(1.02rem, 1.4vw, 1.15rem);
  line-height: 1.75;
  color: var(--ink-muted);
  margin: 0 0 26px;
}

.filosofia__article em {
  color: var(--gold);
  font-style: italic;
}

.filosofia__punch {
  font-family: var(--serif) !important;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.35rem, 2.6vw, 1.8rem) !important;
  line-height: 1.4 !important;
  color: var(--charcoal) !important;
  margin: 48px 0 0 !important;
}

.tag-list {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
}

.tag-list li {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-soft);
  border-radius: 999px;
  padding: 7px 16px;
}

/* ---------- Simbolo ---------- */

.simbolo__intro {
  font-size: 1.1rem;
  max-width: 640px;
  color: var(--gold-soft);
  margin: 0 0 64px;
}

.simbolo__layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}

.simbolo__icon {
  width: 100%;
  max-width: 280px;
  justify-self: center;
}

.simbolo__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.simbolo__steps li {
  display: flex;
  gap: 20px;
  align-items: baseline;
  border-top: 1px solid rgba(216, 198, 165, 0.25);
  padding-top: 24px;
}

.simbolo__steps li:first-child {
  border-top: none;
  padding-top: 0;
}

.simbolo__num {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--gold);
  flex-shrink: 0;
  width: 40px;
}

.simbolo__steps h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.25rem;
  margin: 0 0 8px;
  color: var(--cream);
}

.simbolo__steps p {
  margin: 0;
  font-size: 0.98rem;
  color: var(--ink-faint);
}

/* ---------- Metodo ---------- */

.metodo__intro {
  font-size: 1.05rem;
  color: var(--ink-muted);
  margin: -24px 0 56px;
}

.metodo__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px clamp(32px, 5vw, 64px);
}

.metodo__rule {
  display: block;
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 20px;
}

.metodo__item h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.5rem;
  margin: 0 0 12px;
}

.metodo__item p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.98rem;
}

/* ---------- Hablemos / form ---------- */

.hablemos__intro {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--gold-soft);
  margin: -24px 0 56px;
}

.form {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.form__hidden { display: none; }

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

.form__row label {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.form__row input,
.form__row textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(216, 198, 165, 0.4);
  color: var(--cream);
  font-family: var(--body);
  font-size: 1rem;
  padding: 10px 2px;
  resize: vertical;
}

.form__row input:focus,
.form__row textarea:focus {
  outline: none;
  border-bottom-color: var(--gold);
}

.form__row input::placeholder,
.form__row textarea::placeholder { color: var(--ink-faint); }

.btn {
  align-self: flex-start;
  margin-top: 8px;
  background: var(--gold);
  color: var(--charcoal);
  border: none;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 15px 34px;
  cursor: pointer;
  transition: background 0.25s ease;
}

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

.form__success {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold-soft);
  font-size: 1.1rem;
}

.hablemos__email {
  margin-top: 40px;
  font-size: 0.95rem;
  color: var(--ink-faint);
}

.hablemos__email a {
  color: var(--gold-soft);
  text-decoration: underline;
}

/* ---------- Footer ---------- */

.footer {
  background: var(--charcoal);
  color: var(--ink-faint);
  text-align: center;
  padding: 40px 24px 48px;
  border-top: 1px solid rgba(216, 198, 165, 0.15);
}

.footer__icon {
  width: 28px;
  height: 28px;
  margin: 0 auto 14px;
  opacity: 0.8;
}

.footer p {
  margin: 0;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ---------- Reveal on scroll ---------- */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */

@media (max-width: 860px) {
  .simbolo__layout { grid-template-columns: 1fr; }
  .simbolo__icon { max-width: 180px; }
  .metodo__grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .topbar__word { font-size: 0.95rem; }
}
