/* Alma Landing — styles */

:root {
  --sage: #2D5A3D;
  --sage-deep: #1f4129;
  --sage-soft: #3a6d4a;
  --gold: #C9A84C;
  --gold-soft: #d9be73;
  --bone: #FAF8F5;
  --bone-2: #F3EFE8;
  --ink: #1A1A2E;
  --ink-soft: #3a3a52;
  --mint: #B8D8BE;
  --mint-soft: #cfe5d3;
  --line: rgba(26, 26, 46, 0.12);
  --line-soft: rgba(26, 26, 46, 0.06);
  --shadow-sm: 0 1px 2px rgba(26,26,46,0.04), 0 2px 8px rgba(26,26,46,0.04);
  --shadow-md: 0 10px 30px rgba(26,26,46,0.08), 0 2px 6px rgba(26,26,46,0.04);
  --accent: var(--gold);

  --font-title: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --hero-size: 120px;
}

[data-title-font="fraunces"] { --font-title: 'Fraunces', Georgia, serif; }
[data-title-font="dmserif"] { --font-title: 'DM Serif Display', Georgia, serif; }

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

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

/* Italic accent — scoped, not global, so it doesn't balloon inside serif headings */
.alma-h2 em,
.alma-hero-title em,
.alma-svc-title em,
.alma-how-title em,
.alma-faq-q em {
  font-style: italic;
  font-family: var(--font-title);
  font-weight: 400;
  line-height: inherit;
  display: inline-block;
  vertical-align: baseline;
}

/* Selection */
::selection { background: var(--mint); color: var(--sage-deep); }

/* ── Containers ──────────────────────────────────────────── */
.alma-container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.alma-container-narrow { max-width: 920px; }

.alma-section { padding: 120px 0; position: relative; }
.alma-section-head { max-width: 720px; margin-bottom: 64px; }
.alma-section-head-center { margin-left: auto; margin-right: auto; text-align: center; }

.alma-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 24px;
}
.alma-kicker::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--sage);
  display: inline-block;
}
.alma-kicker-light { color: var(--mint); }
.alma-kicker-light::before { background: var(--mint); }

.alma-h2 {
  font-family: var(--font-title);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  color: var(--ink);
  text-wrap: balance;
}
.alma-h2-light { color: #fff; }
.alma-h2 em { color: var(--gold); font-style: italic; line-height: 1; }
.alma-h2-light em { color: var(--gold-soft); }

.alma-section-lede {
  font-size: 19px;
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0;
}
.alma-section-lede-light { color: rgba(255,255,255,0.76); }

/* ── Buttons ─────────────────────────────────────────────── */
.alma-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.005em;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
  will-change: transform;
}
.alma-btn-primary {
  background: var(--sage);
  color: #fff;
  box-shadow: 0 4px 14px rgba(45, 90, 61, 0.25);
}
.alma-btn-primary:hover {
  background: var(--sage-deep);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(45, 90, 61, 0.32);
}
.alma-btn-ghost {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
}
.alma-btn-ghost:hover { background: var(--bone-2); }
.alma-btn-sm { padding: 10px 18px; font-size: 14px; }
.alma-btn-lg { padding: 18px 30px; font-size: 16px; }
.alma-btn-block { width: 100%; }

/* ── Navbar ──────────────────────────────────────────────── */
.alma-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: all 0.3s ease;
}
.alma-nav.is-scrolled {
  background: rgba(250, 248, 245, 0.88);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
  padding: 10px 0;
}
.alma-nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.alma-logo-lockup {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  color: var(--sage);
  position: relative;
}
.alma-logo-lockup .alma-logo-mark {
  width: 34px; height: 34px;
  align-self: center;
  filter: drop-shadow(0 1px 0 rgba(0,0,0,0.02));
}
.alma-logo-word {
  font-family: var(--font-title);
  font-weight: 500;
  font-size: 26px;
  letter-spacing: -0.02em;
  color: var(--sage);
  line-height: 1;
}
.alma-logo-tagline {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  position: absolute;
  left: 44px;
  top: -8px;
  white-space: nowrap;
  opacity: 0.72;
}

.alma-nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.alma-nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}
.alma-nav-link::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--sage);
  transition: right 0.25s ease;
}
.alma-nav-link:hover { color: var(--sage); }
.alma-nav-link:hover::after { right: 0; }

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

.alma-burger {
  display: none;
  width: 42px; height: 42px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.alma-burger span {
  width: 20px; height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.alma-burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.alma-burger.is-open span:nth-child(2) { opacity: 0; }
.alma-burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.alma-mobile-menu {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 24px 32px;
  background: var(--bone);
  border-bottom: 1px solid var(--line-soft);
}
.alma-mobile-menu.is-open { display: flex; }

/* ── HERO ────────────────────────────────────────────────── */
.alma-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
  background: #000;
}
.alma-hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* ── HERO BRIDGE (franja debajo del video) ────────────────── */
.alma-bridge {
  background: var(--bone);
  color: var(--ink);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.alma-bridge::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 50%, rgba(201,168,76,0.06) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 120%, rgba(45,90,61,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.alma-bridge-inner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.alma-bridge .alma-kicker { margin-bottom: 28px; }
.alma-bridge-lede {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  color: var(--ink);
  margin: 0 0 36px;
  text-wrap: nowrap;
  max-width: none;
  white-space: nowrap;
}
.alma-bridge-lede em {
  font-style: italic;
  color: var(--sage);
  line-height: 1;
}
.alma-bridge-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.alma-bridge .alma-btn-primary {
  background: var(--sage);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}
.alma-bridge .alma-btn-primary:hover {
  background: var(--sage-soft);
  box-shadow: 0 10px 28px rgba(0,0,0,0.3);
}
.alma-bridge-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  padding: 12px 4px;
  position: relative;
}
.alma-bridge-ghost span {
  transition: transform 0.25s ease;
  display: inline-block;
}
.alma-bridge-ghost:hover span { transform: translateX(4px); }
.alma-bridge-ghost::after {
  content: "";
  position: absolute;
  left: 4px; right: 28px;
  bottom: 8px;
  height: 1px;
  background: rgba(26,26,46,0.4);
}

.alma-hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.alma-hero-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.6));
  animation: almaScrollLine 2s ease-in-out infinite;
}
@keyframes almaScrollLine {
  0%, 100% { transform: scaleY(0.6); transform-origin: top; }
  50% { transform: scaleY(1); }
}
.alma-hero-scroll-label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* ── SERVICIOS ───────────────────────────────────────────── */
.alma-services { background: var(--bone); }
.alma-svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.alma-svc-card {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: 20px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}
.alma-svc-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(180deg, rgba(45,90,61,0.0), rgba(45,90,61,0.0));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  transition: background 0.3s ease;
  pointer-events: none;
}
.alma-svc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(45,90,61,0.2);
}
.alma-svc-card:hover::before {
  background: linear-gradient(180deg, rgba(201,168,76,0.4), rgba(45,90,61,0.2));
}

.alma-svc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  color: var(--sage);
}
.alma-svc-num {
  font-family: var(--font-title);
  font-size: 36px;
  font-weight: 400;
  color: var(--gold);
  font-style: italic;
  letter-spacing: -0.02em;
}
.alma-svc-icon { width: 44px; height: 44px; }

.alma-svc-title {
  font-family: var(--font-title);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.alma-svc-sub {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.55;
  margin: 0 0 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line-soft);
}
.alma-svc-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.alma-svc-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: var(--ink);
  line-height: 1.45;
}
.alma-bullet-mark {
  width: 6px; height: 6px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(184,216,190,0.4);
}

/* ── CÓMO FUNCIONA ───────────────────────────────────────── */
.alma-how { background: #fff; }
.alma-how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 32px;
}
.alma-how-step { position: relative; }
.alma-how-numline {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.alma-how-num {
  font-family: var(--font-title);
  font-weight: 400;
  font-size: 72px;
  line-height: 1;
  color: var(--sage);
  letter-spacing: -0.03em;
}
.alma-how-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--sage), transparent);
  opacity: 0.3;
}
.alma-how-title {
  font-family: var(--font-title);
  font-size: 28px;
  font-weight: 400;
  color: var(--ink);
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.alma-how-body {
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.55;
  margin: 0;
  max-width: 320px;
}

/* ── POR QUÉ ALMA ────────────────────────────────────────── */
.alma-why {
  background: var(--bone);
  color: var(--ink);
  position: relative;
  overflow: hidden;
}
.alma-why::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(45,90,61,0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(184,216,190,0.12) 0%, transparent 50%);
  pointer-events: none;
}
.alma-why .alma-kicker { color: var(--sage); }
.alma-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 32px;
  position: relative;
}
.alma-why-card {
  padding: 36px 32px;
  border: 1px solid rgba(45,90,61,0.10);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 2px 16px rgba(45,90,61,0.06);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.alma-why-card:hover {
  box-shadow: 0 6px 28px rgba(45,90,61,0.12);
  border-color: rgba(201,168,76,0.35);
}
.alma-why-icon-wrap {
  width: 56px; height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(45,90,61,0.08);
  color: var(--sage);
  margin-bottom: 24px;
}
.alma-why-icon { width: 28px; height: 28px; }
.alma-why-title {
  font-family: var(--font-title);
  font-weight: 400;
  font-size: 24px;
  color: var(--ink);
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.alma-why-body {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
}

/* ── FAQ ─────────────────────────────────────────────────── */
.alma-faq { background: var(--bone); }
.alma-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}
.alma-faq-item {
  border-bottom: 1px solid var(--line);
  transition: background 0.2s ease;
}
.alma-faq-item.is-open { background: rgba(255,255,255,0.5); }
.alma-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 8px;
  text-align: left;
  font-family: var(--font-title);
  font-weight: 400;
  font-size: clamp(20px, 2.2vw, 26px);
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.3;
  transition: padding 0.25s ease, color 0.25s ease;
}
.alma-faq-q:hover { color: var(--sage); }
.alma-faq-item.is-open .alma-faq-q { padding-bottom: 18px; color: var(--sage); }
.alma-faq-q-num {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--gold);
  flex-shrink: 0;
  width: 36px;
}
.alma-faq-q-text { flex: 1; text-wrap: balance; }
.alma-faq-q-icon {
  width: 24px; height: 24px;
  position: relative;
  flex-shrink: 0;
}
.alma-faq-q-icon span {
  position: absolute;
  top: 50%; left: 50%;
  width: 14px; height: 1.5px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.alma-faq-q-icon span:nth-child(2) { transform: translate(-50%, -50%) rotate(90deg); }
.alma-faq-q-icon.is-open span:nth-child(2) { transform: translate(-50%, -50%) rotate(0deg); opacity: 0; }

.alma-faq-a-wrap {
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.alma-faq-a {
  padding: 0 8px 28px 68px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  max-width: 740px;
}

/* ── CTA FINAL ───────────────────────────────────────────── */
.alma-cta {
  background: linear-gradient(180deg, var(--mint-soft) 0%, var(--bone) 100%);
  padding-bottom: 140px;
}
.alma-cta-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  position: relative;
  z-index: 1;
}

body[data-dark-cta="true"] .alma-cta-inner {
  background: var(--sage);
  color: #fff;
}
body[data-dark-cta="true"] .alma-cta-inner .alma-h2 { color: #fff; }
body[data-dark-cta="true"] .alma-cta-inner .alma-kicker { color: var(--mint); }
body[data-dark-cta="true"] .alma-cta-inner .alma-kicker::before { background: var(--mint); }
body[data-dark-cta="true"] .alma-section-lede { color: rgba(255,255,255,0.78); }
body[data-dark-cta="true"] .alma-cta-list li { color: rgba(255,255,255,0.9); }
body[data-dark-cta="true"] .alma-form .alma-field label { color: rgba(255,255,255,0.8); }
body[data-dark-cta="true"] .alma-form input,
body[data-dark-cta="true"] .alma-form textarea {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
  color: #fff;
}
body[data-dark-cta="true"] .alma-form input::placeholder,
body[data-dark-cta="true"] .alma-form textarea::placeholder { color: rgba(255,255,255,0.5); }
body[data-dark-cta="true"] .alma-form-legal { color: rgba(255,255,255,0.55); }

.alma-cta-copy .alma-h2 { margin-bottom: 20px; }
.alma-cta-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.alma-cta-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--ink);
}
.alma-check {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--mint-soft);
  color: var(--sage);
  position: relative;
  flex-shrink: 0;
}
.alma-check::after {
  content: "";
  position: absolute;
  top: 5px; left: 6px;
  width: 5px; height: 9px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
}

/* ── FORM ────────────────────────────────────────────────── */
.alma-form {
  width: 100%;
  max-width: 560px;
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #fff;
  padding: 32px;
  border-radius: 20px;
  border: 1px solid var(--line);
  box-shadow: 0 30px 80px -40px rgba(26,26,46,.25);
  text-align: left;
  position: relative;
}
.alma-field { display: flex; flex-direction: column; gap: 6px; }
.alma-field label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(26,26,46,.6);
}
.alma-form input,
.alma-form textarea {
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 10px 0;
  outline: none;
  resize: none;
  transition: border-color 0.25s ease;
}
.alma-form textarea { min-height: 72px; }
.alma-form input:focus,
.alma-form textarea:focus {
  border-color: var(--sage);
  box-shadow: none;
  background: transparent;
}
.alma-field.has-error input,
.alma-field.has-error textarea { border-color: #c9534c; }
.alma-field-err { font-size: 13px; color: #c9534c; margin-top: 2px; }
.alma-form-legal {
  font-size: 12.5px;
  color: var(--ink-soft);
  margin: 4px 0 0;
  text-align: center;
  opacity: 0.7;
}

.alma-form-sent {
  text-align: center;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.alma-form-sent-mark {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--mint-soft);
  color: var(--sage);
  display: grid;
  place-items: center;
}
.alma-form-sent-mark svg { width: 32px; height: 32px; }
.alma-form-sent h3 {
  font-family: var(--font-title);
  font-size: 28px;
  margin: 0;
  font-weight: 400;
  color: var(--ink);
}
.alma-form-sent p {
  color: var(--ink-soft);
  margin: 0;
  max-width: 380px;
  line-height: 1.5;
}

/* ── FOOTER ──────────────────────────────────────────────── */
.alma-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.78);
  padding: 72px 0 36px;
}
.alma-footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.alma-footer-brand { max-width: 440px; }
.alma-logo-lockup-footer .alma-logo-word { color: var(--mint); }
.alma-logo-lockup-footer .alma-logo-tagline { color: rgba(255,255,255,0.55); }
.alma-footer-tagline {
  margin: 20px 0 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(255,255,255,0.6);
  max-width: 340px;
}
.alma-footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
}
.alma-footer-links a {
  color: rgba(255,255,255,0.72);
  transition: color 0.2s ease;
}
.alma-footer-links a:hover { color: var(--mint); }
.alma-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

/* ── TWEAKS PANEL ────────────────────────────────────────── */
.alma-tweaks {
  position: fixed;
  right: 20px; bottom: 20px;
  width: 280px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  z-index: 200;
  overflow: hidden;
  font-family: var(--font-body);
}
.alma-tweaks-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line-soft);
  background: var(--bone);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.alma-tweaks-close {
  width: 24px; height: 24px;
  border-radius: 6px;
  background: var(--bone-2);
  display: grid;
  place-items: center;
}
.alma-tweaks-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 13px;
}
.alma-tweaks-group { display: flex; flex-direction: column; gap: 8px; }
.alma-tweaks-group > label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.alma-tweaks-seg {
  display: flex;
  background: var(--bone);
  border-radius: 8px;
  padding: 3px;
  gap: 2px;
}
.alma-tweaks-seg button {
  flex: 1;
  padding: 8px 6px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: all 0.2s ease;
}
.alma-tweaks-seg button.is-active {
  background: #fff;
  color: var(--sage);
  box-shadow: var(--shadow-sm);
}
.alma-tweaks-swatches {
  display: flex;
  gap: 10px;
}
.alma-tweaks-swatches button {
  width: 32px; height: 32px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.alma-tweaks-swatches button.is-active {
  transform: scale(1.1);
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--sage);
}
.alma-tweaks-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}
.alma-tweaks input[type="range"] {
  width: 100%;
  accent-color: var(--sage);
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 960px) {
  .alma-nav-links { display: none; }
  .alma-burger { display: flex; }
  .alma-logo-tagline { display: none; }
  .alma-section { padding: 80px 0; }
  .alma-svc-grid { grid-template-columns: 1fr; }
  .alma-how-grid { grid-template-columns: 1fr; gap: 36px; }
  .alma-why-grid { grid-template-columns: 1fr; }
  .alma-cta-inner { grid-template-columns: 1fr; padding: 40px 28px; gap: 40px; }
  .alma-footer-top { grid-template-columns: 1fr; gap: 32px; }
  .alma-bridge-lede { white-space: normal; font-size: 15px; }
  .alma-bridge { padding: 56px 0; }
  .alma-bridge-cta { gap: 16px; flex-direction: column; width: 100%; }
  .alma-bridge-cta .alma-btn-lg { width: 100%; }
  .alma-container { padding: 0 24px; }
  .alma-faq-a { padding-left: 8px; }
}

@media (max-width: 600px) {
  .alma-cta-inner { padding: 32px 24px; }
  .alma-tweaks { width: calc(100vw - 32px); right: 16px; bottom: 16px; }
  .alma-footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
