/* =========================================================
   Rajas Satva — site styles
   Editorial / refined / warm-tonal aesthetic.
   Display: Fraunces · Body: Outfit
   ========================================================= */

:root {
  --ink: #1a1714;
  --ink-soft: #3a322c;
  --paper: #f5efe6;
  --paper-warm: #ede4d3;
  --cream: #faf6ee;
  --rule: #d9cdb8;
  --accent: #b3431b;       /* burnt copper */
  --accent-deep: #7d2d11;
  --accent-soft: #e3a87f;
  --gold: #b88845;
  --night: #15110d;
  --night-2: #1f1a14;
  --muted: #6e655c;

  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 22px;
  --r-xl: 36px;

  --shadow-1: 0 1px 0 rgba(26,23,20,0.04), 0 6px 14px -8px rgba(26,23,20,0.18);
  --shadow-2: 0 30px 80px -40px rgba(26,23,20,0.4);

  --max: 1240px;
  --pad: clamp(20px, 4vw, 48px);

  --serif: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --sans: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  font-size: 17px;
  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-family: inherit; cursor: pointer; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: var(--cream);
  padding: 10px 14px; border-radius: 4px; z-index: 100;
}
.skip-link:focus { left: 12px; top: 12px; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

/* =========================================================
   HEADER
   ========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 239, 230, 0.78);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background .25s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--rule);
  background: rgba(245, 239, 230, 0.92);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
}
.brand-mark { height: 42px; width: auto; }
.brand-mark--lg { height: 64px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.01em;
}
.brand-tag {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 15px;
}
.primary-nav a {
  position: relative;
  padding: 6px 0;
  color: var(--ink-soft);
  transition: color .2s ease;
}
.primary-nav a:hover { color: var(--accent); }
.primary-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -2px;
  height: 1px;
  background: currentColor;
  transition: right .25s ease;
}
.primary-nav a:not(.nav-cta):hover::after { right: 0; }

.nav-cta {
  background: var(--ink);
  color: var(--cream) !important;
  padding: 10px 18px !important;
  border-radius: 999px;
  font-weight: 500;
  transition: background .2s ease, transform .2s ease;
}
.nav-cta:hover {
  background: var(--accent);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--rule);
  background: transparent;
  border-radius: 8px;
  padding: 10px;
  width: 44px; height: 44px;
}
.nav-toggle span {
  display: block;
  width: 20px; height: 1.5px;
  background: var(--ink);
  margin: 4px auto;
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

@media (max-width: 880px) {
  .nav-toggle { display: block; }
  .primary-nav {
    position: fixed;
    inset: 70px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--rule);
    padding: 8px var(--pad) 24px;
    transform: translateY(-110%);
    transition: transform .3s ease;
  }
  .primary-nav a {
    padding: 16px 0;
    border-bottom: 1px solid var(--rule);
  }
  .primary-nav .nav-cta { margin-top: 16px; align-self: start; }
  .primary-nav.is-open { transform: translateY(0); }
}

/* =========================================================
   TYPOGRAPHY UTILITIES
   ========================================================= */

.eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 18px;
  font-weight: 500;
}
.eyebrow-light { color: var(--accent-soft); }

.section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 5.2vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 22px;
  color: var(--ink);
}
.section-title em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}
.section-title--light { color: var(--cream); }
.section-title--light em { color: var(--accent-soft); }

.section-lede {
  font-size: clamp(16px, 1.4vw, 18px);
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 0 0 28px;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  color: var(--accent);
  transition: gap .2s ease;
}
.link-arrow:hover { gap: 14px; }

/* =========================================================
   BUTTONS
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 15px;
  border: 1px solid transparent;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px -16px var(--accent);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--cream);
}
.btn-block { width: 100%; padding: 16px 24px; }

/* =========================================================
   HERO
   ========================================================= */

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 8vw, 110px) 0 0;
  background:
    radial-gradient(1100px 600px at 88% -10%, rgba(179, 67, 27, 0.18), transparent 60%),
    radial-gradient(900px 500px at -5% 110%, rgba(184, 136, 69, 0.18), transparent 60%),
    var(--paper);
}
.hero-grain {
  position: absolute; inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.1  0 0 0 0 0.09  0 0 0 0 0.07  0 0 0 0.4 0'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.45'/></svg>");
  opacity: 0.18;
  mix-blend-mode: multiply;
}

.hero-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(32px, 6vw, 96px);
  align-items: end;
  padding-bottom: clamp(60px, 8vw, 110px);
  position: relative;
  z-index: 1;
}

.hero-copy { padding-top: 28px; }

.hero-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(44px, 7.5vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin: 0 0 28px;
  color: var(--ink);
}
.title-line {
  display: block;
  opacity: 0;
  transform: translateY(20px);
  animation: rise .9s cubic-bezier(.2,.8,.2,1) forwards;
}
.title-line:nth-child(1) { animation-delay: .05s; }
.title-line:nth-child(2) { animation-delay: .18s; }
.title-line:nth-child(3) { animation-delay: .31s; }
.title-line.italic { font-style: italic; color: var(--accent); }

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

.hero-lede {
  max-width: 52ch;
  font-size: clamp(16px, 1.45vw, 19px);
  color: var(--ink-soft);
  margin: 0 0 32px;
  opacity: 0;
  animation: rise .9s cubic-bezier(.2,.8,.2,1) .42s forwards;
}

.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 12px;
  opacity: 0;
  animation: rise .9s cubic-bezier(.2,.8,.2,1) .55s forwards;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--rule);
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--rule);
  align-self: end;
  opacity: 0;
  transform: translateY(24px);
  animation: rise 1s cubic-bezier(.2,.8,.2,1) .65s forwards;
}
.stat {
  background: var(--cream);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 130px;
  transition: background .2s ease;
}
.stat:hover { background: var(--paper-warm); }
.stat-num {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1;
  font-weight: 400;
  color: var(--ink);
}
.stat-num sup {
  font-size: 0.5em;
  color: var(--accent);
  vertical-align: super;
}
.stat-label {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; align-items: stretch; }
  .hero-stats { grid-template-columns: repeat(4, 1fr); }
  .stat { min-height: 110px; padding: 18px 14px; }
}
@media (max-width: 560px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
}

/* Brand ticker */
.ticker {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--cream);
  overflow: hidden;
  padding: 16px 0;
}
.ticker-track {
  display: flex;
  gap: 28px;
  white-space: nowrap;
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--muted);
  animation: ticker 50s linear infinite;
  width: max-content;
}
.ticker-track span:nth-child(even) { color: var(--accent); }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =========================================================
   ABOUT
   ========================================================= */

.about {
  padding: clamp(72px, 9vw, 130px) 0;
  background: var(--cream);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: auto auto;
  gap: clamp(28px, 4vw, 64px);
}

.about-intro { grid-column: 1 / 2; grid-row: 1 / 2; }
.collab { grid-column: 2 / 3; grid-row: 1 / 3; align-self: stretch; }
.pillars { grid-column: 1 / 2; grid-row: 2 / 3; }

@media (max-width: 980px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-intro, .collab, .pillars { grid-column: auto; grid-row: auto; }
}

.pillars {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  overflow: hidden;
}
.pillar {
  background: var(--cream);
  padding: 26px 28px;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 22px;
  row-gap: 4px;
  transition: background .25s ease;
}
.pillar:hover { background: var(--paper-warm); }
.pillar-num {
  grid-row: 1 / 3;
  font-family: var(--serif);
  font-style: italic;
  font-size: 26px;
  color: var(--accent);
  align-self: start;
}
.pillar h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.pillar p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15.5px;
}

/* Collab visual */
.collab {
  position: relative;
  margin: 0;
  min-height: 380px;
  border-radius: var(--r-lg);
  background:
    linear-gradient(160deg, #2a221c, #15110d 70%);
  overflow: hidden;
  padding: 28px;
  color: var(--cream);
  box-shadow: var(--shadow-2);
}
.collab::before {
  content: "";
  position: absolute;
  inset: -40% -40% auto auto;
  width: 380px; height: 380px;
  background: radial-gradient(closest-side, rgba(227, 168, 127, 0.45), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}
.collab-stack {
  position: relative;
  height: 100%;
  display: grid;
  gap: 18px;
}
.collab-card {
  background: rgba(245, 239, 230, 0.96);
  color: var(--ink);
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: 0 24px 60px -30px rgba(0,0,0,0.55);
  font-size: 14px;
  line-height: 1.5;
}
.collab-card .tiny { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin: 0 0 6px; }
.collab-card p { margin: 0; }
.collab-card p + p { margin-top: 6px; }
.collab-card--a {
  width: 78%;
  transform: rotate(-1.2deg) translateY(0);
}
.collab-card--a .dot {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: #d23b3b; margin-right: 6px;
}
.collab-card--a .dot:nth-child(2) { background: #e7a64a; }
.collab-card--a .dot:nth-child(3) { background: #4a8f5a; }
.collab-card--a p { margin-top: 12px; font-weight: 500; }
.collab-bar { height: 6px; background: var(--rule); border-radius: 3px; margin-top: 14px; }
.collab-bar.short { width: 60%; margin-top: 8px; }

.collab-card--b {
  width: 86%;
  margin-left: auto;
  transform: rotate(1.4deg);
  background: var(--accent);
  color: var(--cream);
}
.collab-card--b .tiny { color: rgba(250, 246, 238, 0.7); }

.collab-card--c {
  width: 92%;
  transform: rotate(-0.6deg);
}
.avatars { display: flex; gap: -8px; margin: 8px 0; }
.av {
  display: inline-grid;
  place-items: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 600;
  color: var(--cream);
  border: 2px solid var(--cream);
  margin-right: -10px;
}
.av-1 { background: #b3431b; }
.av-2 { background: #2a4f3e; }
.av-3 { background: #5b3a1f; }
.av-4 { background: #1a1714; font-size: 10px; }

/* =========================================================
   SERVICES
   ========================================================= */

.services {
  padding: clamp(72px, 9vw, 130px) 0;
  background: var(--paper);
}
.section-head {
  max-width: 720px;
  margin-bottom: clamp(40px, 5vw, 64px);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  overflow: hidden;
}
@media (max-width: 900px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .service-grid { grid-template-columns: 1fr; }
}

.service {
  background: var(--cream);
  padding: 36px 32px 38px;
  position: relative;
  transition: background .25s ease, transform .25s ease;
  isolation: isolate;
}
.service::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--g1), var(--g2));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .35s ease;
}
.service:hover { background: var(--paper-warm); }
.service:hover::before { transform: scaleX(1); }

.service-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--g1), var(--g2));
  color: white;
  margin-bottom: 22px;
  box-shadow:
    0 18px 32px -18px color-mix(in oklab, var(--g2) 70%, transparent),
    inset 0 0 0 1px rgba(255,255,255,0.12);
}
.service-icon svg { width: 32px; height: 32px; }

.service h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
}
.service p {
  margin: 0;
  font-size: 15.5px;
  color: var(--ink-soft);
}

/* =========================================================
   WHY
   ========================================================= */

.why {
  background: radial-gradient(1100px 700px at 80% -10%, rgba(179, 67, 27, 0.18), transparent 60%), var(--night);
  color: var(--cream);
  padding: clamp(72px, 9vw, 130px) 0;
  position: relative;
  overflow: hidden;
}
.why::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(transparent 95%, rgba(255,255,255,0.04) 95%),
    linear-gradient(90deg, transparent 95%, rgba(255,255,255,0.04) 95%);
  background-size: 32px 32px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
  position: relative;
}
@media (max-width: 900px) { .why-grid { grid-template-columns: 1fr; } }

.why-head { color: var(--cream); }
.why-head .section-lede { color: rgba(245, 239, 230, 0.7); }

.why-list {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
@media (max-width: 700px) { .why-list { grid-template-columns: 1fr; } }

.why-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 22px 4px 22px 0;
  border-top: 1px solid rgba(245, 239, 230, 0.14);
}
.why-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  color: var(--accent-soft);
  line-height: 1;
}
.why-list h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  margin: 0 0 6px;
  letter-spacing: -0.005em;
}
.why-list p {
  margin: 0;
  color: rgba(245, 239, 230, 0.72);
  font-size: 15.5px;
}

/* =========================================================
   CONTACT
   ========================================================= */

.contact {
  padding: clamp(72px, 9vw, 130px) 0;
  background: var(--paper-warm);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(36px, 6vw, 88px);
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-list {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  border-top: 1px solid var(--rule);
}
.contact-list li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
}
.ci-label {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.ci-value {
  font-family: var(--serif);
  font-size: 19px;
  color: var(--ink);
  line-height: 1.4;
}
a.ci-value { transition: color .2s ease; }
a.ci-value:hover { color: var(--accent); }

.contact-form {
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: clamp(24px, 3vw, 38px);
  box-shadow: var(--shadow-2);
}
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 520px) { .field-row { grid-template-columns: 1fr; } }

.field label {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.field input,
.field select,
.field textarea {
  font: inherit;
  color: var(--ink);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--rule);
  padding: 10px 0;
  font-size: 16px;
  border-radius: 0;
  transition: border-color .2s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-bottom-color: var(--accent);
}
.field textarea {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}
.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1l5 5 5-5' stroke='%231a1714' stroke-width='1.5' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 24px;
}

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.btn-spinner {
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(250, 246, 238, 0.3);
  border-top-color: var(--cream);
  display: none;
  animation: spin 0.7s linear infinite;
}
.btn.is-loading .btn-spinner { display: inline-block; }
.btn.is-loading .btn-label { opacity: 0.6; }
@keyframes spin { to { transform: rotate(360deg); } }

.form-status {
  margin: 14px 0 0;
  font-size: 14px;
  min-height: 1.4em;
}
.form-status.is-success { color: #2a6e3f; }
.form-status.is-error { color: #b14034; }

/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
  background: var(--night);
  color: rgba(245, 239, 230, 0.78);
  padding: clamp(60px, 7vw, 90px) 0 0;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 2.4fr;
  gap: clamp(32px, 5vw, 72px);
  padding-bottom: 56px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand p {
  margin: 14px 0 8px;
  max-width: 36ch;
  font-size: 15px;
  line-height: 1.55;
}
.footer-cred {
  font-size: 13px !important;
  color: rgba(245, 239, 230, 0.55);
  letter-spacing: 0.02em;
}
.footer-brand .brand-mark--lg {
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
@media (max-width: 720px) { .footer-nav { grid-template-columns: repeat(2, 1fr); } }

.footer-nav h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 16px;
  color: var(--cream);
  margin: 0 0 14px;
  letter-spacing: -0.005em;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.footer-nav ul {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  gap: 8px;
}
.footer-nav a {
  font-size: 14px;
  color: rgba(245, 239, 230, 0.7);
  transition: color .2s ease;
}
.footer-nav a:hover { color: var(--accent-soft); }
.footer-nav .muted a {
  color: rgba(245, 239, 230, 0.4);
  pointer-events: none;
}

.soon {
  display: inline-block;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: rgba(227, 168, 127, 0.14);
  color: var(--accent-soft);
  padding: 3px 8px;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 500;
}

.footer-base {
  border-top: 1px solid rgba(245, 239, 230, 0.1);
  padding: 22px 0;
  font-size: 13px;
}
.footer-base-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  color: rgba(245, 239, 230, 0.5);
}
.muted-small { font-size: 12.5px; }

/* =========================================================
   WHATSAPP FAB
   ========================================================= */

.whatsapp-fab {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 60;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: grid; place-items: center;
  box-shadow: 0 14px 30px -10px rgba(37, 211, 102, 0.6), 0 4px 8px rgba(0,0,0,0.15);
  transition: transform .25s ease, box-shadow .25s ease;
}
.whatsapp-fab:hover {
  transform: translateY(-2px) scale(1.04);
}
@media (max-width: 600px) {
  .whatsapp-fab { width: 48px; height: 48px; bottom: 16px; right: 16px; }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .ticker-track { animation: none; }
}
.popup {
position: fixed;
inset: 0;
background: rgba(21,17,13,0.65);
display: none;
align-items: center;
justify-content: center;
z-index: 999;
}

.popup-content {
background: var(--cream);
color: var(--ink);
padding: 32px;
border-radius: var(--r-lg);
text-align: center;
width: 320px;
box-shadow: var(--shadow-2);
animation: popupFade 0.35s ease;
}

.popup-content h2 {
font-family: var(--serif);
margin-bottom: 10px;
}

.popup-content p {
color: var(--ink-soft);
}

.popup-content button {
margin-top: 16px;
padding: 12px 22px;
border-radius: 999px;
border: none;
background: var(--ink);
color: var(--cream);
cursor: pointer;
}

.popup-content button:hover {
background: var(--accent);
}

@keyframes popupFade {
from { opacity: 0; transform: scale(0.85); }
to { opacity: 1; transform: scale(1); }
}

