/* palette: bg=#E9D8C5 fg=#2B2420 accent=#1D5C8F */
/* fonts: display="Fraunces" body="DM Sans" mono="IBM Plex Mono" */
:root {
  --bg: #E9D8C5;         /* dusty clay/sand background from reference */
  --bg-alt: #F4EBDD;     /* lighter warm alternating section */
  --bg-deep: #DCC7B0;    /* deeper sand for cards/wells */
  --fg: #2B2420;         /* warm near-black text */
  --fg-soft: #4A413A;    /* softer heading tone */
  --muted: #7C6E60;      /* secondary text */
  --accent: #1D5C8F;     /* cobalt (talavera) — CTAs, accent word */
  --accent-deep: #16456B;/* darker cobalt hover */
  --mustard: #D69A2D;    /* talavera mustard, decorative */
  --terra: #C0562F;      /* terracotta, decorative */
  --border: rgba(43, 36, 32, 0.16);
  --border-soft: rgba(43, 36, 32, 0.08);
  --serif: 'Fraunces', ui-serif, Georgia, serif;
  --sans: 'DM Sans', ui-sans-serif, system-ui, sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --container: 1240px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  line-height: 1.75;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
h1, h2, h3, h4 { margin: 0; font-family: var(--serif); font-weight: 400; }
p { margin: 0; }
ul { margin: 0; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }
@media (min-width: 768px) { .container { padding: 0 32px; } }

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}
.eyebrow::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--mustard);
  display: inline-block;
}

section { padding: clamp(72px, 12vw, 150px) 0; }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(233, 216, 197, 0.82);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.header[data-scrolled="true"] {
  box-shadow: 0 8px 30px -18px rgba(43, 36, 32, 0.5);
  border-bottom-color: var(--border-soft);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  background: var(--accent);
  color: var(--bg-alt);
  font-family: var(--serif);
  font-size: 19px;
  border-radius: 6px;
}
.brand__name { font-family: var(--serif); font-size: 21px; letter-spacing: -0.01em; }
.nav { display: none; }
@media (min-width: 900px) {
  .nav { display: flex; gap: 34px; }
  .nav a {
    font-size: 14px;
    color: var(--fg-soft);
    position: relative;
    transition: color .2s var(--ease);
  }
  .nav a::after {
    content: "";
    position: absolute; left: 0; bottom: -6px;
    width: 0; height: 1.5px; background: var(--accent);
    transition: width .3s var(--ease);
  }
  .nav a:hover { color: var(--fg); }
  .nav a:hover::after { width: 100%; }
}
.header__cta { display: none; }
@media (min-width: 900px) { .header__cta { display: inline-flex; } }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 999px;
  transition: transform .25s var(--ease), background .25s var(--ease), opacity .25s var(--ease);
}
.btn--primary { background: var(--accent); color: #F4EBDD; }
.btn--primary:hover { background: var(--accent-deep); transform: translateY(-2px); }
.btn--ghost { border: 1px solid var(--border); color: var(--fg); }
.btn--ghost:hover { background: var(--fg); color: var(--bg); transform: translateY(-2px); }
.btn--block { width: 100%; justify-content: center; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
  transition: gap .25s var(--ease);
}
.link-arrow:hover { gap: 14px; }

/* hamburger */
.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
}
@media (min-width: 900px) { .menu-toggle { display: none; } }
.menu-toggle span {
  width: 22px; height: 2px; background: var(--fg);
  display: block; margin: 0 auto;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 72px 0 0 0;
  z-index: 99;
  background: var(--bg);
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.mobile-menu[data-open="true"] { opacity: 1; transform: none; pointer-events: all; }
.mobile-menu a {
  font-family: var(--serif);
  font-size: 30px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-soft);
}
.mobile-menu .btn { margin-top: 24px; }

/* ---------- Hero ---------- */
.hero {
  padding: 0;
  border-bottom: 1px solid var(--border-soft);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 100vh;
  align-items: center;
}
@media (min-width: 1000px) {
  .hero__grid { grid-template-columns: 1.05fr 0.95fr; }
}
.hero__text { padding: 120px 20px 72px; }
@media (min-width: 768px) { .hero__text { padding: 140px 40px 90px; } }
@media (min-width: 1000px) { .hero__text { padding: 100px 60px 100px 0; max-width: 700px; } }
@media (min-width: 1000px) { .hero__text { padding-left: max(20px, calc((100vw - var(--container)) / 2 + 20px)); } }

.hero h1 {
  font-size: clamp(3.1rem, 9vw, 6.4rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin: 26px 0 24px;
}
.hero h1 em { font-style: italic; color: var(--accent); }
.hero__lead {
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  color: var(--fg-soft);
  max-width: 46ch;
  line-height: 1.7;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}
.hero__meta {
  display: flex;
  gap: 34px;
  margin-top: 52px;
  padding-top: 30px;
  border-top: 1px solid var(--border-soft);
  flex-wrap: wrap;
}
.hero__meta div span {
  display: block;
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
  color: var(--accent);
}
.hero__meta div small {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}
.hero__media {
  position: relative;
  overflow: hidden;
  min-height: 46vh;
  height: 100%;
}
@media (min-width: 1000px) { .hero__media { min-height: 100vh; } }
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  animation: heroZoom 9s var(--ease) both;
}
.hero__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(29,92,143,0.10), rgba(43,36,32,0.08));
  mix-blend-mode: multiply;
}
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }

/* papel-picado top strip */
.papel {
  height: 14px;
  width: 100%;
  background:
    repeating-linear-gradient(90deg, var(--accent) 0 26px, var(--mustard) 26px 52px, var(--terra) 52px 78px);
  -webkit-mask: repeating-linear-gradient(90deg, #000 0 18px, transparent 18px 26px);
  mask: repeating-linear-gradient(90deg, #000 0 18px, transparent 18px 26px);
  opacity: .9;
}

/* ---------- Section heading ---------- */
.sec-head {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 54px;
}
.sec-head h2 {
  font-size: clamp(2.3rem, 6vw, 4.3rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  max-width: 16ch;
}
.sec-head p { color: var(--muted); max-width: 52ch; font-size: 1.05rem; }
@media (min-width: 900px) {
  .sec-head--split {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
  .sec-head--split p { text-align: right; }
}

/* ---------- Card grid ---------- */
.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
@media (min-width: 640px) { .grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .grid--3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 640px) { .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .grid--4 { grid-template-columns: repeat(4, 1fr); } }

.card {
  background: var(--bg-alt);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  box-shadow: 0 4px 24px -4px rgba(43,36,32,0.08);
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 18px 44px -12px rgba(43,36,32,0.22); }
.card__media { aspect-ratio: 16 / 11; overflow: hidden; background: var(--bg-deep); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.card:hover .card__media img { transform: scale(1.06); }
.card__body { padding: 26px 24px 28px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.card__tag {
  font-family: var(--mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
}
.card__body h3 { font-size: 1.5rem; line-height: 1.12; letter-spacing: -0.01em; }
.card__body p { color: var(--muted); font-size: 0.97rem; line-height: 1.65; }
.card__body .link-arrow { margin-top: auto; padding-top: 8px; }

/* service list variant (numbered) */
.svc {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--border);
}
.svc__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 34px 0;
  border-bottom: 1px solid var(--border);
  transition: padding-left .3s var(--ease);
}
@media (min-width: 900px) {
  .svc__row {
    grid-template-columns: 64px 1.1fr 1.4fr auto;
    gap: 28px;
    align-items: baseline;
  }
  .svc__row:hover { padding-left: 14px; }
}
.svc__num { font-family: var(--mono); color: var(--accent); font-size: 13px; }
.svc__row h3 { font-size: 1.7rem; letter-spacing: -0.01em; }
.svc__row p { color: var(--muted); font-size: 1rem; }

/* ---------- Split / benefits ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 960px) { .split { grid-template-columns: 1fr 1fr; gap: 72px; } }
.split--rev .split__media { order: -1; }
.split__media {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 20px 50px -18px rgba(43,36,32,0.35);
}
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__inset {
  position: absolute;
  left: 20px; bottom: 20px; right: 20px;
  background: var(--accent);
  color: #F4EBDD;
  padding: 22px 24px;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.split__inset strong { font-family: var(--serif); font-weight: 400; font-size: 1.35rem; }
.split__inset small { display: block; font-size: 12px; opacity: .8; }
.split__inset .link-arrow { color: #F4EBDD; }
.split__text h2 { font-size: clamp(2.1rem, 5vw, 3.6rem); line-height: 1.05; letter-spacing: -0.02em; margin-bottom: 22px; }
.split__text p { color: var(--fg-soft); margin-bottom: 18px; line-height: 1.75; }
.split__text .eyebrow { margin-bottom: 22px; }
.checklist { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 14px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; font-size: 1rem; color: var(--fg-soft); }
.checklist li::before {
  content: "";
  flex: none;
  width: 20px; height: 20px; margin-top: 3px;
  background: var(--mustard);
  border-radius: 4px;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/16px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/16px no-repeat;
}

/* ---------- Manifesto (dark inverted) ---------- */
.manifesto {
  background: var(--fg);
  color: var(--bg);
  position: relative;
  overflow: hidden;
}
.manifesto .papel { opacity: .7; }
.manifesto__quote {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 4.6vw, 3.6rem);
  line-height: 1.16;
  letter-spacing: -0.01em;
  max-width: 940px;
  margin: 0 auto;
  text-align: center;
}
.manifesto__quote em { color: var(--mustard); font-style: italic; }
.manifesto__mark {
  font-family: var(--serif);
  font-size: 8rem;
  line-height: 0.6;
  color: var(--accent);
  display: block;
  text-align: center;
  margin-bottom: 10px;
  opacity: .9;
}
.manifesto__by {
  text-align: center;
  margin-top: 40px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244,235,221,0.6);
}

/* stats band */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  border-top: 1px solid rgba(244,235,221,0.16);
  padding-top: 46px;
  margin-top: 60px;
}
@media (min-width: 900px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stats div span { display: block; font-family: var(--serif); font-size: clamp(2.4rem, 5vw, 3.4rem); color: var(--mustard); line-height: 1; }
.stats div small { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(244,235,221,0.6); }

/* ---------- Testimonials ---------- */
.quotes { display: grid; grid-template-columns: 1fr; gap: 22px; }
@media (min-width: 900px) { .quotes { grid-template-columns: repeat(3, 1fr); } }
.quote-card {
  background: var(--bg-alt);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.quote-card p { font-family: var(--serif); font-size: 1.2rem; line-height: 1.45; color: var(--fg-soft); }
.quote-card .who { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--serif);
  font-size: 17px;
  color: #F4EBDD;
  flex: none;
}
.who b { display: block; font-family: var(--sans); font-weight: 600; font-size: 0.95rem; }
.who small { color: var(--muted); font-size: 0.85rem; }

/* ---------- FAQ ---------- */
.faq { max-width: 860px; margin: 0 auto; border-top: 1px solid var(--border); }
.faq details { border-bottom: 1px solid var(--border); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 26px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: var(--serif);
  font-size: 1.3rem;
  letter-spacing: -0.01em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--sans);
  font-size: 1.6rem;
  color: var(--accent);
  transition: transform .3s var(--ease);
  flex: none;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--muted); padding: 0 0 26px; max-width: 66ch; line-height: 1.72; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--bg-alt); }
.cta-band__inner {
  background: var(--accent);
  color: #F4EBDD;
  border-radius: 18px;
  padding: clamp(44px, 7vw, 84px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band__inner .papel { position: absolute; top: 0; left: 0; opacity: .55; }
.cta-band h2 { font-size: clamp(2.1rem, 5vw, 3.8rem); line-height: 1.04; letter-spacing: -0.02em; max-width: 18ch; margin: 0 auto 20px; }
.cta-band p { color: rgba(244,235,221,0.82); max-width: 52ch; margin: 0 auto 34px; }
.cta-band .btn--primary { background: var(--bg-alt); color: var(--accent); }
.cta-band .btn--primary:hover { background: var(--bg); }

/* ---------- Contact / form ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 48px; }
@media (min-width: 960px) { .contact-grid { grid-template-columns: 0.9fr 1.1fr; gap: 72px; } }
.info-block { display: grid; gap: 30px; }
.info-item h4 { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--accent); margin-bottom: 8px; font-weight: 400; }
.info-item p { color: var(--fg-soft); font-size: 1.05rem; line-height: 1.55; }
.form { display: grid; gap: 20px; }
.field { display: grid; gap: 8px; }
.field label { font-size: 13px; font-weight: 600; color: var(--fg-soft); }
.field input, .field textarea, .field select {
  font: inherit;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg-alt);
  color: var(--fg);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(29,92,143,0.14);
}
.field textarea { min-height: 130px; resize: vertical; }
.form__row { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 600px) { .form__row { grid-template-columns: 1fr 1fr; } }

/* ---------- Legal ---------- */
.legal { padding-top: 120px; }
.legal__wrap { max-width: 820px; margin: 0 auto; }
.legal h1 { font-size: clamp(2.4rem, 6vw, 4rem); letter-spacing: -0.02em; margin-bottom: 14px; }
.legal .updated { font-family: var(--mono); font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 48px; }
.legal h2 { font-size: 1.7rem; margin: 46px 0 16px; letter-spacing: -0.01em; }
.legal p, .legal li { color: var(--fg-soft); line-height: 1.78; margin-bottom: 14px; }
.legal ul { padding-left: 22px; }

/* thanks */
.thanks { min-height: 82vh; display: grid; place-items: center; text-align: center; padding: 120px 20px; }
.thanks__mark { width: 78px; height: 78px; border-radius: 50%; background: var(--accent); display: grid; place-items: center; margin: 0 auto 30px; }
.thanks__mark svg { width: 34px; height: 34px; }
.thanks h1 { font-size: clamp(2.6rem, 7vw, 4.6rem); letter-spacing: -0.02em; margin-bottom: 18px; }
.thanks p { color: var(--muted); max-width: 48ch; margin: 0 auto 34px; font-size: 1.1rem; }

/* ---------- Footer ---------- */
.footer { background: var(--fg); color: var(--bg); padding: 80px 0 36px; }
.footer__top { display: grid; grid-template-columns: 1fr; gap: 44px; }
@media (min-width: 800px) { .footer__top { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }
.footer__brand .brand__name { color: var(--bg); }
.footer__brand p { color: rgba(244,235,221,0.62); max-width: 34ch; margin-top: 18px; font-size: 0.98rem; }
.footer__col h5 { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--mustard); margin: 0 0 18px; font-weight: 400; }
.footer__col a { display: block; color: rgba(244,235,221,0.72); padding: 6px 0; font-size: 0.95rem; transition: color .2s var(--ease); }
.footer__col a:hover { color: var(--bg); }
.footer__bottom {
  margin-top: 64px;
  padding-top: 26px;
  border-top: 1px solid rgba(244,235,221,0.16);
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.84rem;
  color: rgba(244,235,221,0.55);
}
@media (min-width: 700px) { .footer__bottom { flex-direction: row; justify-content: space-between; align-items: center; } }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s var(--ease), transform .65s var(--ease); transition-delay: calc(var(--i, 0) * 80ms); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__media img { animation: none; }
}

/* ---------- Cookie popup ---------- */
.cookie-popup { position:fixed;inset:0;z-index:9999;display:flex;align-items:flex-end;justify-content:flex-start;padding:24px;background:rgba(43,36,32,0.4);backdrop-filter:blur(4px);opacity:0;pointer-events:none;transition:opacity .3s; }
.cookie-popup[data-open="true"] { opacity:1;pointer-events:all; }
.cookie-popup__card { background:var(--bg);padding:32px 36px;max-width:480px;border-radius:12px;box-shadow:0 30px 70px -20px rgba(43,36,32,0.5);border:1px solid var(--border-soft); }
.cookie-popup__label { font-family:var(--mono);font-size:11px;text-transform:uppercase;letter-spacing:0.14em;color:var(--accent);margin-bottom:12px; }
.cookie-popup__card h3 { font-size:1.5rem;margin-bottom:12px;letter-spacing:-0.01em; }
.cookie-popup__card p { color:var(--muted);font-size:0.92rem;line-height:1.66; }
.cookie-popup__actions { display:flex;gap:12px;margin-top:22px; }
.cookie-popup__actions button { padding:12px 26px;border:1px solid var(--border);cursor:pointer;font-size:14px;border-radius:999px;transition:background .2s,color .2s; }
.cookie-popup__actions button:first-child:hover { background:var(--bg-deep); }
.cookie-popup__actions button:last-child { background:var(--accent);color:#F4EBDD;border-color:var(--accent); }
.cookie-popup__actions button:last-child:hover { background:var(--accent-deep); }
