:root{
  --brand:#C86B2C;
  --brand-dark:#8A3F13;
  --accent:#FFD36A;
  --ink:#1B1B1B;
  --muted:#6b7280;
  --surface:#ffffff;
  --surface-2:#faf7f4;
  --radius-lg:20px;
  --radius-sm:14px;
  --shadow:0 18px 45px rgba(0,0,0,.12);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--ink);
  background:linear-gradient(180deg,#fff,#fff8f2);
}
img{max-width:100%;display:block}
.container{max-width:1140px;margin:0 auto;padding:0 20px}

/* Header + Nav */
.site-header{
  background:#fff;
  border-bottom:1px solid #eee;
  position:sticky;
  top:0;
  z-index:1000;
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:10px 0;
}
.logo img{height:44px}
.main-nav ul{
  display:flex;
  gap:18px;
  list-style:none;
  margin:0;
  padding:0;
}
.main-nav a{
  text-decoration:none;
  color:#fff;
  font-weight:600;
}
.main-nav a:hover{color:var(--brand)}
.main-nav a.active{
  color:var(--accent);
  font-weight:700;
}
.nav-toggle{
  background:none;
  border:none;
  font-size:1.8rem;
  cursor:pointer;
  display:none;
  color:#333;
  margin-left:10px;
}
@media (max-width:920px){
  .main-nav{
    display:none;
    position:absolute;
    top:64px;
    right:10px;
    background:#fff;
    width:min(86vw,320px);
    box-shadow:0 10px 26px rgba(0,0,0,.15);
    border-radius:16px;
    overflow:hidden;
  }
  .main-nav ul{
    flex-direction:column;
    padding:10px;
  }
  .main-nav a{
    display:block;
    padding:10px 12px;
    border-radius:10px;
  }
  .main-nav a:hover{background:#f6f6f6}
  .main-nav.active{display:block}
  .nav-toggle{display:block}
}

/* Background figures */
.bg-figures{
  position:fixed;
  inset:0;
  overflow:hidden;
  pointer-events:none;
  z-index:-1;
}
.blob{
  position:absolute;
  width:min(70vw,700px);
  opacity:.16;
  filter:blur(2px);
}
.blob-1{top:-8%;left:-6%;animation:float1 16s ease-in-out infinite}
.blob-2{bottom:-12%;right:-8%;animation:float2 22s ease-in-out infinite;width:min(60vw,600px)}
@keyframes float1{
  0%,100%{transform:translate(0,0) scale(1)}
  50%{transform:translate(20px,10px) scale(1.05)}
}
@keyframes float2{
  0%,100%{transform:translate(0,0) rotate(0)}
  50%{transform:translate(-16px,8px) rotate(2deg)}
}
.ring{
  position:absolute;
  border-radius:50%;
  border:2px dashed rgba(200,107,44,.25);
  animation:spin 30s linear infinite;
}
.ring-1{width:520px;height:520px;top:10%;right:15%}
.ring-2{width:340px;height:340px;bottom:10%;left:10%;animation-duration:40s}
@keyframes spin{to{transform:rotate(360deg)}}

/* Sections */
.section{padding:64px 0;position:relative}
.section--muted{background:var(--surface-2)}
.section__title{
  font-family:Merriweather,serif;
  font-weight:900;
  font-size:clamp(28px,4vw,40px);
  margin:0 0 18px;
}
.section__kicker{color:var(--muted);margin-bottom:18px}

/* Hero */
.hero{
  position:relative;
  min-height:62vh;
  display:grid;
  place-items:center;
}
.hero__media{
  position:absolute;
  inset:0;
  overflow:hidden;
}
.hero__media img{
  width:100%;
  height:100%;
  object-fit:cover;
  transform:scale(1.03);
}
.hero__overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg,rgba(0,0,0,.55) 10%,rgba(0,0,0,.35) 50%,rgba(0,0,0,.55) 100%),
    radial-gradient(90% 60% at 50% 30%, rgba(200,107,44,.35) 0%, rgba(0,0,0,0) 60%);
}
.hero__content{
  position:relative;
  text-align:left;
  color:#fff;
  padding:60px 20px;
}
.hero h1{
  font-family:Merriweather,serif;
  font-size:clamp(40px,6vw,64px);
  line-height:1.05;
  margin:0 0 8px;
}
.hero .lead{
  font-size:clamp(18px,2.5vw,22px);
  opacity:.95;
  margin:4px 0 22px;
}

/* Buttons */
.btn{
  display:inline-block;
  padding:12px 18px;
  border-radius:999px;
  text-decoration:none;
  font-weight:600;
}
.btn-primary{
  background:var(--accent);
  color:#5b3a00;
  box-shadow:0 8px 22px rgba(255,211,106,.35);
}
.btn-primary:hover{filter:brightness(.98)}
.btn-ghost{
  background:transparent;
  border:1.5px solid rgba(255,255,255,.7);
  color:#fff;
}
.btn-ghost:hover{background:rgba(255,255,255,.08)}

/* Cards */
.cards{display:grid;gap:18px}
.cards--3{grid-template-columns:repeat(3,1fr)}
@media (max-width:900px){.cards--3{grid-template-columns:1fr 1fr}}
@media (max-width:620px){.cards--3{grid-template-columns:1fr}}

.card,.post{
  background:var(--surface);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow);
  overflow:hidden;
  transition:transform .2s ease,box-shadow .2s ease;
}
.card:hover,.post:hover{
  transform:translateY(-2px);
  box-shadow:0 22px 55px rgba(0,0,0,.16);
}
.card img,.post img{
  width:100%;
  height:190px;
  object-fit:cover;
}
.card__body,.post__body{padding:16px 16px 18px}
.card__body h3,.post__body h3{
  margin:0 0 6px;
  font-size:20px;
  font-weight:700;
}

/* Packs */
.grid-packs{
  display:grid;
  gap:16px;
  grid-template-columns:repeat(3,1fr);
}
@media (max-width:980px){.grid-packs{grid-template-columns:repeat(2,1fr)}}
@media (max-width:620px){.grid-packs{grid-template-columns:1fr}}
.pack{
  background:#fff6e3;
  border:1px solid #ffe7b5;
  border-radius:16px;
  padding:18px;
  box-shadow:0 6px 18px rgba(255,200,80,.18);
}
.pack__title{font-weight:700;margin-bottom:6px}
.pack__price{
  font-family:Merriweather,serif;
  font-weight:900;
  font-size:28px;
  color:#5b3a00;
  margin-bottom:6px;
}

/* Boxeo */
.boxeo{
  display:grid;
  gap:24px;
  grid-template-columns:1.2fr 1fr;
  align-items:center;
  background:linear-gradient(180deg,#2b0e03,#3a1607);
  color:#fff;
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow);
  padding:0;
}
.boxeo__media img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.boxeo__content{padding:28px}
.boxeo .btn-primary{
  background:var(--accent);
  color:#3a2500;
}
@media (max-width:960px){.boxeo{grid-template-columns:1fr}}

/* Reviews */
.reviews{position:relative}
.reviews__track{
  display:flex;
  gap:16px;
  overflow:hidden;
  scroll-behavior:smooth;
}
.review{
  min-width:320px;
  flex:0 0 33.33%;
  background:#fff;
  border-radius:16px;
  padding:18px;
  box-shadow:var(--shadow);
}
@media (max-width:900px){.review{flex-basis:50%}}
@media (max-width:620px){.review{flex-basis:100%}}
.review blockquote{
  margin:0 0 10px;
  font-size:18px;
  line-height:1.45;
}
.review figcaption{
  color:var(--muted);
  font-size:14px;
}
.reviews__ctrl{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  background:#fff;
  border:none;
  width:40px;
  height:40px;
  border-radius:50%;
  box-shadow:var(--shadow);
  cursor:pointer;
}
.reviews__ctrl.prev{left:-4px}
.reviews__ctrl.next{right:-4px}

/* Footer */
.site-footer{
  background:#1b120d;
  color:#fff;
  padding:26px 0;
  margin-top:32px;
}
.footer__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
}
.footer-logo{height:45px;margin-bottom:8px}
.claim{
  color:#d6d3d1;
  font-size:.95rem;
  margin:0;
}
.footer__nav ul{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:8px;
  grid-template-columns:repeat(4, auto);
}
.footer__nav a{
  color:#fff;
  text-decoration:none;
  opacity:.9;
}
.footer__nav a:hover{opacity:1}
.footer__bottom{
  text-align:center;
  margin-top:14px;
  font-size:.85rem;
  color:#c3c0bd;
}
@media (max-width:720px){
  .footer__nav ul{grid-template-columns:repeat(2, auto)}
}

/* Forms */
label{
  font-weight:600;
  display:block;
  margin-bottom:6px;
}
input,textarea,select{font:inherit}
a:focus-visible,button:focus-visible{
  outline:3px solid var(--accent);
  outline-offset:2px;
}
/* =========================
   COOKIES / COOKIEYES STYLE
========================= */
.cky-root {
  position: relative;
  z-index: 1300;
}

.cky-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 15, 15, 0.42);
  backdrop-filter: blur(4px);
  z-index: 1301;
}

.cky-consent {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1302;
  display: flex;
  justify-content: center;
}

.cky-consent__inner {
  width: min(1120px, 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: rgba(21, 18, 16, 0.96);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 26px 28px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
}

.cky-consent__text {
  flex: 1 1 auto;
}

.cky-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 211, 106, 0.16);
  color: #ffe29b;
  border: 1px solid rgba(255, 211, 106, 0.2);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.cky-consent__text h2 {
  margin: 0 0 10px;
  font-size: clamp(22px, 2.8vw, 32px);
  line-height: 1.12;
  font-family: Merriweather, serif;
}

.cky-consent__text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.6;
  font-size: 15px;
}

.cky-consent__links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px !important;
}

.cky-consent__links a,
.cky-link-btn {
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
}

.cky-link-btn {
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  font: inherit;
}

.cky-consent__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
  flex: 0 0 auto;
}

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  cursor: pointer;
}

.btn-outline-dark:hover {
  background: rgba(255, 255, 255, 0.12);
}

.cky-modal {
  position: fixed;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  z-index: 1303;
  width: min(1040px, calc(100vw - 28px));
  max-height: min(86vh, 920px);
}

.cky-modal__dialog {
  background: #fff;
  color: var(--ink);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
  display: flex;
  flex-direction: column;
  max-height: inherit;
}

.cky-modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 26px 28px 18px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.cky-modal__header h3 {
  margin: 10px 0 8px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.15;
  font-family: Merriweather, serif;
}

.cky-modal__header p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.cky-close {
  border: 0;
  background: #f3f4f6;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  color: #333;
  flex: 0 0 auto;
}

.cky-close:hover {
  background: #e5e7eb;
}

.cky-modal__body {
  padding: 18px 28px 12px;
  overflow: auto;
}

.cky-accordion {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  margin-bottom: 14px;
}

.cky-accordion__toggle {
  width: 100%;
  border: 0;
  background: #fff;
  padding: 18px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  cursor: pointer;
}

.cky-accordion__toggle strong {
  display: block;
  font-size: 16px;
  margin-bottom: 5px;
}

.cky-accordion__toggle small {
  display: block;
  color: var(--muted);
  line-height: 1.5;
  font-size: 13px;
}

.cky-accordion__meta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
}

.cky-accordion__icon {
  width: 28px;
  text-align: center;
  font-size: 26px;
  color: var(--brand-dark);
}

.cky-accordion__content {
  padding: 0 18px 18px;
  background: #fffdf9;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.cky-cookie-table-wrap {
  overflow-x: auto;
}

.cky-cookie-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.cky-cookie-table th,
.cky-cookie-table td {
  padding: 12px 14px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  font-size: 14px;
}

.cky-cookie-table th {
  background: #fff6e3;
  color: #5b3a00;
  font-weight: 700;
}

.cky-cookie-table td {
  color: #374151;
}

.cky-extra-info {
  margin-top: 18px;
  background: #faf7f4;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 18px;
  padding: 18px;
}

.cky-extra-info h4 {
  margin: 0 0 10px;
  font-size: 18px;
}

.cky-extra-info ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.cky-extra-info a {
  color: var(--brand-dark);
  font-weight: 700;
  text-decoration: none;
}

.cky-modal__footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
  padding: 18px 28px 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
}

.cky-switch {
  position: relative;
  display: inline-flex;
  width: 54px;
  height: 30px;
}

.cky-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cky-switch__slider {
  position: absolute;
  inset: 0;
  background: #d1d5db;
  border-radius: 999px;
  transition: 0.25s ease;
}

.cky-switch__slider::before {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  left: 4px;
  top: 4px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.18);
  transition: 0.25s ease;
}

.cky-switch input:checked + .cky-switch__slider {
  background: var(--brand);
}

.cky-switch input:checked + .cky-switch__slider::before {
  transform: translateX(24px);
}

.cky-switch input:disabled + .cky-switch__slider {
  background: #9ca3af;
  opacity: 0.9;
  cursor: not-allowed;
}

.cky-floating-btn {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 1304;
  width: 60px;
  height: 60px;
  border-radius: 999px;
  border: 0;
  background: linear-gradient(180deg, var(--brand), var(--brand-dark));
  color: #fff;
  font-size: 27px;
  cursor: pointer;
  box-shadow: 0 16px 38px rgba(138, 63, 19, 0.3);
  display: grid;
  place-items: center;
}

.cky-floating-btn:hover {
  transform: translateY(-2px);
}

.cky-floating-btn::after {
  content: "Cookies";
  position: absolute;
  right: 72px;
  white-space: nowrap;
  background: rgba(27, 27, 27, 0.94);
  color: #fff;
  font-size: 13px;
  padding: 8px 10px;
  border-radius: 10px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
  transition: 0.2s ease;
}

.cky-floating-btn:hover::after {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 920px) {
  .cky-consent {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .cky-consent__inner {
    flex-direction: column;
    align-items: stretch;
    padding: 22px 18px;
    border-radius: 20px;
  }

  .cky-consent__actions {
    justify-content: stretch;
  }

  .cky-consent__actions .btn,
  .cky-consent__actions .btn-outline-dark {
    width: 100%;
  }

  .cky-modal {
    width: calc(100vw - 14px);
    max-height: 92vh;
  }

  .cky-modal__header,
  .cky-modal__body,
  .cky-modal__footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .cky-modal__footer {
    justify-content: stretch;
  }

  .cky-modal__footer .btn,
  .cky-modal__footer .btn-outline-dark {
    width: 100%;
  }

  .cky-accordion__toggle {
    align-items: flex-start;
  }

  .cky-accordion__meta {
    gap: 10px;
  }

  .cky-floating-btn {
    width: 56px;
    height: 56px;
    right: 16px;
    bottom: 16px;
  }

  .cky-floating-btn::after {
    display: none;
  }
}
.cky-modal .btn-ghost-dark {
  color: var(--ink);
  border-color: rgba(0,0,0,.14);
}

.cky-modal .btn-ghost-dark:hover {
  background: rgba(0,0,0,.04);
}
/* =========================
   FOOTER LEGAL / COPYRIGHT
========================= */

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 20px;
}

.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  flex-wrap: wrap;
}

.footer__legal p {
  margin: 0 0 6px;
  font-size: 14px;
  color: #d6d3d1;
}

.footer__legal-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 13px;
}

.footer__legal-links a {
  color: #fff;
  opacity: 0.85;
  text-decoration: none;
}

.footer__legal-links a:hover {
  opacity: 1;
  text-decoration: underline;
}

.footer__meta {
  text-align: right;
  font-size: 13px;
  color: #c3c0bd;
}

.footer__meta p {
  margin: 0;
}

.footer__dev strong {
  color: var(--accent);
}

/* Responsive */
@media (max-width: 720px) {
  .footer__bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .footer__meta {
    text-align: left;
  }
}/* =========================
   HEADER / NAV FREE SOUL
========================= */
.site-header {
  background: rgba(15, 15, 15, 0.92);
  border-bottom: 1px solid rgba(255,255,255,.08);
  position: sticky;
  top: 0;
  z-index: 1200;
  backdrop-filter: blur(14px);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 82px;
  padding: 12px 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.logo img {
  height: 54px;
  width: auto;
  object-fit: contain;
}

.main-nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
}

.main-nav__list {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav__item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  text-decoration: none;
  color: #ffffff;
  font-weight: 700;
  border-radius: 999px;
  transition: .2s ease;
}

.nav-link:hover {
  background: rgba(255,255,255,.08);
  color: var(--accent);
}

.nav-link.active {
  background: rgba(255,255,255,.08);
  color: var(--accent);
}

.nav-link--external::after {
  content: "↗";
  margin-left: 7px;
  font-size: 13px;
  opacity: .75;
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 260px;
  background: #1a1a1a;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.08);
  padding: 10px;
  display: grid;
  gap: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  pointer-events: none;
  transition: .2s ease;
}

.dropdown-menu a {
  display: block;
  padding: 11px 12px;
  border-radius: 12px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
}

.dropdown-menu a:hover {
  background: rgba(255,255,255,.06);
  color: var(--accent);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.header__cta {
  white-space: nowrap;
}

.nav-toggle {
  background: rgba(255, 255, 255, 0.08);
  border: 0;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  display: none;
  color: #ffffff;
}

.nav-toggle:hover {
  background: rgba(255,255,255,.15);
}

@media (max-width: 980px) {
  .header__inner {
    min-height: 74px;
  }

  .logo img {
    height: 48px;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 16px;
    left: 16px;
    justify-content: stretch;
  }

  .main-nav.active {
    display: block;
  }

  .main-nav__list {
    background: #141414;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,.30);
    border: 1px solid rgba(255,255,255,.08);
    padding: 12px;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }

  .main-nav__item {
    width: 100%;
  }

  .nav-link {
    width: 100%;
    justify-content: flex-start;
    border-radius: 14px;
    padding: 13px 14px;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    min-width: 100%;
    box-shadow: none;
    border: 0;
    border-radius: 14px;
    padding: 6px 0 0 10px;
    background: transparent;
    display: grid;
  }

  .dropdown-menu a {
    background: rgba(255,255,255,.05);
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .header__cta {
    display: none;
  }
}

/* =========================
   LEGAL PAGES
========================= */
.legal-page {
  padding-top: 44px;
  padding-bottom: 72px;
}

.legal-page__wrap {
  max-width: 980px;
}

.legal-page__header {
  margin-bottom: 26px;
}

.legal-page__eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff3df;
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 14px;
}

.legal-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(0,0,0,.08);
  padding: 24px;
  margin-bottom: 18px;
  border: 1px solid rgba(0,0,0,.05);
}

.legal-card h2 {
  margin: 0 0 14px;
  font-size: 24px;
  line-height: 1.2;
  font-family: Merriweather, serif;
}

.legal-card h3 {
  margin: 16px 0 8px;
  font-size: 18px;
}

.legal-card p,
.legal-card li {
  color: #4b5563;
  line-height: 1.75;
}

.legal-card ul {
  margin: 0;
  padding-left: 18px;
}

.legal-card a {
  color: var(--brand-dark);
  font-weight: 700;
  text-decoration: none;
}

.legal-card a:hover {
  text-decoration: underline;
}

.legal-table-wrap {
  overflow-x: auto;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.legal-table th,
.legal-table td {
  padding: 12px 14px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.legal-table th {
  background: #fff6e3;
  color: #5b3a00;
  font-weight: 800;
}

.legal-note {
  margin-top: 12px;
  font-size: 14px;
  color: #6b7280;
}

@media (max-width: 720px) {
  .legal-card {
    padding: 18px;
    border-radius: 18px;
  }

  .legal-card h2 {
    font-size: 21px;
  }
}/* =========================
   FOOTER PRO
========================= */
.site-footer {
  background: #0f0f0f;
  color: #fff;
  padding: 60px 0 0;
  border-top: 1px solid rgba(255,255,255,.06);
}

/* ---------- GRID ---------- */
.footer__main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
}

/* ---------- COL ---------- */
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ---------- LOGO ---------- */
.footer-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 10px;

  /* mejora nitidez */
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.footer__desc {
  color: #cfcfcf;
  line-height: 1.65;
  font-size: 14px;
  max-width: 340px;
}

/* ---------- TITULOS ---------- */
.footer__title {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--accent);
  letter-spacing: .02em;
}

/* ---------- LINKS ---------- */
.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__links a {
  color: #d1d1d1;
  text-decoration: none;
  font-size: 14px;
  transition: all .2s ease;
  position: relative;
}

.footer__links a:hover {
  color: var(--accent);
  transform: translateX(3px);
}

/* ---------- CONTACT ---------- */
.footer__contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__contact li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__contact a {
  color: #d1d1d1;
  text-decoration: none;
  font-size: 14px;
  transition: .2s;
}

.footer__contact a:hover {
  color: var(--accent);
}

/* iconos */
.footer__icon {
  font-size: 16px;
  width: 20px;
  text-align: center;
  opacity: 0.9;
}

/* ---------- SOCIAL ---------- */
.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.footer__social a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  transition: all .25s ease;
}

.footer__social a:hover {
  background: var(--brand);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(200,107,44,.25);
}

/* ---------- SEPARADOR SUPERIOR ---------- */
.footer__main::after {
  content: "";
  grid-column: 1 / -1;
  height: 1px;
  background: rgba(255,255,255,.06);
  margin-top: 10px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px) {
  .footer__main {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .footer__desc {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .site-footer {
    padding-top: 40px;
  }

  .footer__main {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer__col {
    gap: 10px;
  }

  .footer__title {
    font-size: 14px;
  }

  .footer__social a {
    width: 36px;
    height: 36px;
  }
}
/* =========================
   NAV BUBBLE PRO
========================= */

/* botón flotante */
.nav-bubble-toggle {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: none;
  background: var(--brand);
  color: #fff;
  font-size: 26px;
  cursor: pointer;
  z-index: 2000;
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
  transition: .3s;
}

.nav-bubble-toggle:hover {
  transform: scale(1.08);
}

/* panel */
.nav-bubble-panel {
  position: fixed;
  right: 20px;
  bottom: 90px;
  width: 280px;
  background: #111;
  border-radius: 22px;
  padding: 20px;
  box-shadow: 0 25px 70px rgba(0,0,0,.4);
  opacity: 0;
  transform: translateY(20px) scale(.95);
  pointer-events: none;
  transition: .3s;
  z-index: 1999;
}

/* activo */
.nav-bubble-panel.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* header */
.nav-bubble-header {
  text-align: center;
  margin-bottom: 16px;
}

.nav-bubble-header img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

/* menu */
.nav-bubble-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.nav-bubble-menu a {
  padding: 10px 12px;
  border-radius: 12px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  transition: .2s;
}

.nav-bubble-menu a:hover {
  background: rgba(255,255,255,.08);
  color: var(--accent);
}

/* contacto */
.nav-bubble-contact {
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.nav-bubble-contact a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255,255,255,.08);
  text-decoration: none;
  font-size: 18px;
  color: #fff;
  transition: .2s;
}

.nav-bubble-contact a:hover {
  background: var(--brand);
  transform: translateY(-2px);
}

/* responsive */
@media (max-width: 480px) {
  .nav-bubble-panel {
    width: calc(100% - 40px);
    right: 20px;
  }
}
/* iconos svg */
.footer__icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer__social svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* colores hover */
.footer__social a:hover {
  background: var(--brand);
  color: #fff;
}