/*!
 * Trobavi — Custom Theme Styles
 * Compiled from sass/main.scss
 * Source of truth: sass/site/_*.scss partials
 *
 * Compile: node-sass sass/main.scss assets/css/main.css --style expanded
 */

/* ─────────────────────────────────────────────────────
   DESIGN TOKENS
───────────────────────────────────────────────────── */
:root {
  --paper:   #F9F8F4;
  --white:   #FFFFFF;
  --ink:     #0A0A0A;
  --mid:     #3A3935;
  --muted:   #888480;
  --subtle:  #EDEAE2;
  --rule:    #D0C9BE;
  --red:     #C8190D;
  --red-d:   #A81409;
  --red-sh:  rgba(200,25,13,.22);
  --border:  rgba(10,10,10,.10);
  --sh-sm:   0 1px 8px rgba(0,0,0,.07);
  --sh-md:   0 4px 24px rgba(0,0,0,.10);
  --sh-lg:   0 14px 52px rgba(0,0,0,.14);
  --r:       3px;
  --t:       .25s ease;
}

/* ─────────────────────────────────────────────────────
   BASE
───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  padding: 0 2px;
}

/* Boxed layout — 2px margin each side, subtle border */
#page.site {
  background: var(--paper);
  box-shadow: 0 0 0 1px rgba(10,10,10,.07);
}

img { display: block; max-width: 100%; }
a, a:visited   { text-decoration: none; color: inherit; }
.edit-link, .post-edit-link { display: none !important; }
button { font-family: inherit; cursor: pointer; }

/* Screen-reader utility (WP standard) */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

/* ─────────────────────────────────────────────────────
   LAYOUT
───────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.section    { padding: 96px 0; }

/* ─────────────────────────────────────────────────────
   EDITORIAL UTILITIES
───────────────────────────────────────────────────── */
.dept-label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: .625rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.dept-label--red { color: var(--red); }

hr.rule { border: none; border-top: 1px solid var(--rule); margin: 0; }

/* ─────────────────────────────────────────────────────
   NAVIGATION
───────────────────────────────────────────────────── */
/* ─────────────────────────────────────────────────────
   SITE HEADER — announcement strip + two-row editorial nav
───────────────────────────────────────────────────── */
.site-header__strip {
  background: var(--ink);
  color: rgba(255,255,255,.72);
  text-align: center;
  padding: 9px 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: .72rem;
  letter-spacing: .02em;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.strip__stars { color: #C8A800; font-size: .8rem; flex-shrink: 0; }
.strip__cta {
  color: var(--white);
  font-weight: 600;
  letter-spacing: .04em;
  text-decoration: underline;
  text-underline-offset: 2px;
  white-space: nowrap;
  transition: opacity .2s;
}
.strip__cta:hover { opacity: .7; }

/* ─────────────────────────────────────────────────────
   SITE HEADER — two-row editorial nav
───────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--paper);
  transition: box-shadow .3s ease;
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(10,10,10,.07); }

/* Row 1: logo centered */
.site-header__identity {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 16px 48px;
  border-bottom: 1px solid var(--rule);
}
.site-header__logo { display: flex; justify-content: center; }
.site-header__logo-img { height: 68px; width: auto; display: block; }

.site-header__side { display: flex; align-items: center; }
.site-header__side--right { justify-content: flex-end; gap: 22px; }

.site-header__util {
  font-family: 'DM Sans', sans-serif;
  font-size: .68rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--mid); transition: color .2s;
}
.site-header__util:hover { color: var(--red); }

/* Cart icon */
.site-header__cart {
  position: relative; display: flex; align-items: center;
  color: var(--mid); transition: color .2s;
}
.site-header__cart:hover { color: var(--ink); }
.site-header__cart-icon { width: 20px; height: 20px; display: block; flex-shrink: 0; }
.site-header__cart-count {
  position: absolute; top: -7px; right: -9px;
  background: var(--red); color: var(--white);
  font-family: 'DM Sans', sans-serif; font-size: .5rem; font-weight: 700;
  min-width: 16px; height: 16px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; line-height: 1;
}

/* Row 2: category nav — experience types as direct links */
.site-nav {
  display: flex; justify-content: center;
  border-bottom: 2px solid var(--ink);
  overflow: hidden;
}
.site-nav__links {
  list-style: none; display: flex; align-items: center;
  margin: 0; padding: 0; flex-wrap: nowrap;
}
.site-nav__item { border-right: 1px solid var(--rule); }
.site-nav__item:first-child { border-left: 1px solid var(--rule); }
.site-nav__link {
  display: block;
  padding: 9px 22px;
  font-family: 'DM Sans', sans-serif;
  font-size: .63rem; font-weight: 400;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted); transition: color .2s; white-space: nowrap;
}
.site-nav__link:hover,
.site-nav__link.is-active { color: var(--red); }

.btn--sm { padding: 7px 16px !important; font-size: .65rem !important; }

/* ─────────────────────────────────────────────────────
   EXPERIENCES STRIP — 4th header row, category nav
───────────────────────────────────────────────────── */
.experiences-strip {
  background: var(--paper);
  border-top: 1px solid var(--rule);
  border-bottom: 2px solid var(--ink);
  display: flex;
  justify-content: center;
  overflow: hidden;
}
.experiences-strip__list {
  list-style: none; margin: 0; padding: 0;
  display: flex; align-items: center; flex-wrap: nowrap;
}
.experiences-strip__item { border-right: 1px solid var(--rule); }
.experiences-strip__item:first-child { border-left: 1px solid var(--rule); }
.experiences-strip__link {
  display: block;
  padding: 9px 22px;
  font-family: 'DM Sans', sans-serif;
  font-size: .63rem;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  transition: color .2s;
}
.experiences-strip__link:hover,
.experiences-strip__link.is-active { color: var(--red); }

/* ─────────────────────────────────────────────────────
   BUTTONS
───────────────────────────────────────────────────── */
.btn--primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 15px 36px;
  border-radius: var(--r);
  box-shadow: 0 4px 20px var(--red-sh);
  transition: background var(--t), transform var(--t), box-shadow var(--t);
}
.btn--primary:hover {
  background: var(--red-d);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200,25,13,.30);
}
.btn--arrow { display: inline-block; transition: transform .2s ease; }
.btn--primary:hover .btn--arrow { transform: translateX(5px); }

.btn--ghost {
  font-size: .8rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: .04em;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 2px;
  transition: color var(--t), border-color var(--t);
}
.btn--ghost:hover { color: var(--ink); border-color: var(--ink); }

/* ─────────────────────────────────────────────────────
   EXPERIENCE CARD — shared component
───────────────────────────────────────────────────── */
.experience-card {
  background: var(--paper);
  transition: background var(--t);
  position: relative;
}
.experience-card:hover { background: var(--white); }

.experience-card--featured              { grid-row: 1 / 3; }
.experience-card--featured .experience-card__media { aspect-ratio: 3/4; }
.experience-card--featured .experience-card__body  { padding: 28px 36px 36px; }
.experience-card--featured .experience-card__title { font-size: 1.5rem; }

.experience-card__link  { display: block; color: inherit; height: 100%; }
.experience-card__media { position: relative; overflow: hidden; aspect-ratio: 16/9; background: var(--subtle); }
.experience-card__media--placeholder { background: linear-gradient(135deg, var(--subtle) 0%, var(--rule) 100%); }

.experience-card__image {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .65s cubic-bezier(.25,.46,.45,.94);
}
.experience-card:hover .experience-card__image { transform: scale(1.04); }

.experience-card__city-tag {
  position: absolute; top: 16px; left: 16px;
  background: rgba(10,10,10,.65); backdrop-filter: blur(8px);
  color: var(--white);
  font-size: .6rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 2px;
}
.experience-card__urgency {
  position: absolute; bottom: 16px; left: 16px;
  background: var(--red); color: var(--white);
  font-size: .6rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 2px;
}
.experience-card__body   { padding: 24px 28px 28px; }
.experience-card__rating { display: flex; align-items: center; gap: 6px; margin-bottom: 10px; }
.rating-stars  { color: #C8A800; font-size: .8rem; letter-spacing: 1px; }
.rating-score  { font-size: .775rem; font-weight: 700; color: var(--ink); }
.rating-count  { font-size: .7rem; color: var(--muted); }
.experience-card__title {
  font-family: 'Spectral', serif;
  font-size: 1.075rem; font-weight: 700; line-height: 1.25; color: var(--ink);
  letter-spacing: -.025em; margin-bottom: 12px;
}
.experience-card__price { font-size: .875rem; color: var(--muted); font-weight: 400; }
.experience-card__price strong { color: var(--ink); font-weight: 600; }

/* ─────────────────────────────────────────────────────
   FOOTER — 4-column editorial heavy
───────────────────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  border-top: 3px solid var(--red);
  padding: 72px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 0 56px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__logo {
  display: block;
  margin-bottom: 20px;
}
.footer__logo img {
  height: 46px;
  width: auto;
  display: block;
}
.footer__tagline {
  font-size: .9375rem; font-weight: 300;
  color: rgba(255,255,255,.38); line-height: 1.72; margin-bottom: 32px;
}
.footer__cta-link {
  font-size: .7rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--red);
  border-bottom: 1px solid rgba(200,25,13,.32); padding-bottom: 2px;
  transition: color var(--t), border-color var(--t);
}
.footer__cta-link:hover { color: #e03535; border-color: #e03535; }
.footer__col-heading {
  display: block;
  font-size: .6rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255,255,255,.28); margin-bottom: 22px;
}
.footer__nav { list-style: none; display: flex; flex-direction: column; gap: 14px; margin: 0; padding: 0; }
.footer__nav a { font-size: .875rem; font-weight: 400; color: rgba(255,255,255,.48); transition: color var(--t); }
.footer__nav a:hover { color: var(--white); }
.footer__bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 0; gap: 24px;
}
.footer__copy { font-size: .7rem; color: rgba(255,255,255,.20); display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer__credit { color: rgba(255,255,255,.18); transition: color .2s; }
.footer__credit:hover { color: rgba(255,255,255,.45); }
.contact-success { padding: 32px 0; font-family: 'Spectral', serif; font-style: italic; font-size: 1.125rem; color: var(--mid); }
.footer__legal { list-style: none; display: flex; gap: 24px; margin: 0; padding: 0; }
.footer__legal a {
  font-size: .7rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,.20); transition: color var(--t);
}
.footer__legal a:hover { color: rgba(255,255,255,.55); }

/* ─────────────────────────────────────────────────────
   HOMEPAGE — HERO
───────────────────────────────────────────────────── */
.hero--home {
  display: grid;
  grid-template-columns: 46fr 54fr;
  min-height: 100vh;
  overflow: hidden;
}
.hero__col-text {
  background: var(--paper);
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 64px 80px 48px;
  position: relative;
}
.hero__col-text::after {
  content: '';
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 1px; background: var(--rule);
}
.hero__kicker  { display: flex; align-items: center; gap: 10px; margin-bottom: 28px; }
.hero__stars   { color: #DAA520; font-size: .9375rem; letter-spacing: 2px; }
.hero__proof   { font-size: .75rem; font-weight: 500; color: var(--muted); letter-spacing: .04em; }
.hero__headline {
  font-family: 'Spectral', serif;
  font-size: clamp(3.4rem, 5.2vw, 5.8rem);
  font-weight: 800; color: var(--ink);
  line-height: .97; letter-spacing: -.03em; margin-bottom: 28px;
}
.hero__headline em { font-style: italic; font-weight: 600; color: var(--mid); }
.hero__rule { margin: 28px 0; width: 48px; border-top: 2px solid var(--red); }
.hero__subheadline {
  font-size: 1.0625rem; font-weight: 300; line-height: 1.78;
  color: var(--mid); max-width: 400px; margin-bottom: 44px;
}
.hero__actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.hero__col-photo { position: relative; overflow: hidden; }
.hero__col-photo img,
.hero__col-photo video {
  width: 100%; height: 100%; object-fit: cover;
  animation: slowzoom 14s ease-out forwards;
}
@keyframes slowzoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.00); }
}
.hero__col-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(249,248,244,.18) 0%, transparent 25%);
}

/* ─────────────────────────────────────────────────────
   HOMEPAGE — DESTINATION FEATURE
───────────────────────────────────────────────────── */
.section--city { padding: 48px 0 0; background: var(--paper); }

/* Full-bleed photo — 3:2 ratio, max 420px. Contained, not overwhelming. */
.city-feature__photo--bleed {
  width: 100%; aspect-ratio: 3/2; max-height: 420px; overflow: hidden;
}
.city-feature__photo--bleed img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

/* Editorial container below photo */
.section--city .container { padding-top: 36px; padding-bottom: 64px; }

.city-feature__editorial {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  border-top: 2px solid var(--ink); padding: 32px 0 48px;
}
.city-feature__left  { padding-right: 40px; }
.city-feature__mid   { padding: 0 40px; border-left: 1px solid var(--rule); }
.city-feature__right {
  padding-left: 40px; border-left: 1px solid var(--rule);
  display: flex; flex-direction: column; justify-content: space-between;
}
.city-feature__name {
  font-family: 'Spectral', serif;
  font-size: clamp(2.4rem,4vw,4rem); font-weight: 800; color: var(--ink);
  line-height: 1.0; letter-spacing: -.03em; margin-bottom: 10px;
}
.city-feature__tagline { font-size: .9375rem; font-weight: 300; color: var(--mid); line-height: 1.6; }
.city-feature__copy { font-family: 'Spectral', serif; font-style: italic; font-size: 1.0625rem; color: var(--mid); line-height: 1.7; }
.city-feature__count { font-size: .7rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: 20px; }
.city-feature__cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .8rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--red); border-bottom: 1px solid var(--red); padding-bottom: 2px;
  transition: gap var(--t);
}
.city-feature__cta:hover { gap: 14px; }

/* ─────────────────────────────────────────────────────
   HOMEPAGE — HOW IT WORKS
───────────────────────────────────────────────────── */
.section--subtle { background: var(--subtle); }
.how-steps {
  display: grid; grid-template-columns: repeat(3,1fr);
  border-top: 2px solid var(--ink);
}
.how-step { padding: 48px 40px 48px 0; border-right: 1px solid var(--rule); }
.how-step:last-child  { border-right: none; padding-left: 40px; padding-right: 0; }
.how-step:nth-child(2){ padding-left: 40px; }
.step-marker  { font-family: 'DM Sans', sans-serif; font-size: .6rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--red); margin-bottom: 20px; display: block; }
.step-heading { font-family: 'Spectral', serif; font-size: 1.375rem; font-weight: 700; color: var(--ink); line-height: 1.25; margin-bottom: 14px; letter-spacing: -.02em; }
.step-body    { font-size: .9375rem; line-height: 1.72; color: var(--mid); font-weight: 300; }

/* ─────────────────────────────────────────────────────
   HOMEPAGE — EXPERIENCES GRID
───────────────────────────────────────────────────── */
.experiences-grid__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.experiences-grid__header { margin-bottom: 32px; }
.experiences-grid__title {
  font-family: 'Spectral', serif;
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 800; letter-spacing: -.03em; color: var(--ink);
  margin: 0 0 8px; line-height: 1.05;
}
.experiences-grid__sub {
  font-family: 'DM Sans', sans-serif;
  font-size: .875rem; color: var(--muted); margin: 0;
}
.experiences-grid__footer {
  margin-top: 40px;
  text-align: center;
}

/* ─────────────────────────────────────────────────────
   HOMEPAGE — EDITORIAL BREAK (image/video between sections)
───────────────────────────────────────────────────── */
.editorial-break { padding: 80px 48px; background: var(--paper); }
.editorial-break__inner { max-width: 860px; margin: 0 auto; overflow: hidden; border-radius: var(--r); }
.editorial-break__media { display: block; width: 100%; height: auto; aspect-ratio: 16/9; object-fit: cover; }
.editorial-break__image-wrap { position: relative; }
.editorial-break__image-wrap::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.52) 0%, transparent 55%);
  border-radius: var(--r); pointer-events: none;
}
.editorial-break__cta {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  white-space: nowrap; z-index: 2;
}

/* ─────────────────────────────────────────────────────
   HOMEPAGE — FAQ
───────────────────────────────────────────────────── */
.section--faq { padding: 96px 0; }
.faq-list { margin-top: 48px; border-top: 1px solid var(--rule); }
.faq-item {
  display: grid; grid-template-columns: 1fr 1.7fr; gap: 0 56px;
  padding: 36px 0; border-bottom: 1px solid var(--rule);
}
.faq-q {
  font-family: 'Spectral', serif; font-style: italic;
  font-size: 1.0625rem; font-weight: 600; color: var(--ink); line-height: 1.4;
}
.faq-a {
  font-size: .9375rem; color: var(--muted); line-height: 1.75; margin: 0;
}

/* ─────────────────────────────────────────────────────
   HOMEPAGE — TRUST PULL QUOTE
───────────────────────────────────────────────────── */
.trust {
  padding: 120px 0; background: var(--paper);
  border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
}
.trust__inner   { max-width: 760px; margin: 0 auto; text-align: center; }
.trust__dept    { font-size: .6rem; font-weight: 700; letter-spacing: .24em; text-transform: uppercase; color: var(--muted); margin-bottom: 32px; display: block; }
.trust__quote {
  font-family: 'Spectral', serif;
  font-size: clamp(1.875rem,3vw,3rem); font-style: italic; font-weight: 600;
  color: var(--ink); line-height: 1.3; letter-spacing: -.02em;
}
.trust__quote strong { font-style: normal; font-weight: 800; color: var(--red); }
.trust__attribution {
  display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 40px;
}
.trust__attribution::before,
.trust__attribution::after { content: ''; flex: 1; max-width: 60px; height: 1px; background: var(--rule); }
.trust__attr-text { font-size: .7rem; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }

.trust__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rule);
  margin-top: 72px;
  border: 1px solid var(--rule);
  border-radius: var(--r);
  overflow: hidden;
}
.trust__stat {
  background: var(--paper);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.trust__stat-number {
  font-family: 'Spectral', serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -.03em;
  color: var(--ink);
  line-height: 1;
}
.trust__stat-label {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ─────────────────────────────────────────────────────
   B2B PORTAL
───────────────────────────────────────────────────── */
.portal-hero {
  background: var(--ink); border-bottom: 3px solid var(--red);
  padding: 48px 0;
}
.portal-hero__inner {
  display: flex; justify-content: space-between; align-items: flex-end; gap: 24px;
}
.portal-hero__title {
  font-family: 'Spectral', serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800; letter-spacing: -.03em; line-height: 1.05;
  color: var(--white); margin: 8px 0 0;
}
.portal-hero__meta { text-align: right; flex-shrink: 0; }
.portal-hero__status {
  display: block; font-family: 'DM Sans', sans-serif;
  font-size: .6rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: #4CAF50; margin-bottom: 4px;
}
.portal-hero__city {
  font-family: 'DM Sans', sans-serif;
  font-size: .7rem; color: rgba(255,255,255,.35);
  letter-spacing: .1em; text-transform: uppercase;
}

.b2b-portal__bookings { margin-bottom: 64px; }
.b2b-portal__error { color: var(--red); font-size: .9rem; padding: 16px 0; }
.b2b-portal__empty {
  font-family: 'Spectral', serif; font-style: italic;
  color: var(--muted); padding: 32px 0; font-size: 1rem;
}

.bookings-list { display: flex; flex-direction: column; gap: 1px; background: var(--rule); border: 1px solid var(--rule); }
.booking-card {
  background: var(--white); padding: 24px 28px;
  display: grid; grid-template-columns: 80px 1fr auto auto;
  gap: 0 28px; align-items: center;
  transition: background var(--t);
}
.booking-card:hover { background: var(--paper); }
.booking-card--done { opacity: .52; pointer-events: none; }

.booking-card__tourist    { font-size: .9375rem; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
.booking-card__experience { font-size: .875rem; color: var(--muted); margin-bottom: 6px; }
.booking-card__meta       { display: flex; align-items: center; flex-wrap: wrap; gap: 4px 16px; font-size: .8rem; color: var(--muted); }
.booking-card__usd        { font-family: 'Spectral', serif; font-size: 1.625rem; font-weight: 800; color: var(--ink); line-height: 1; text-align: right; letter-spacing: -.02em; }
.booking-card__order      { font-size: .75rem; color: var(--muted); margin-top: 4px; text-align: right; }
.booking-card__actions    { display: flex; flex-direction: column; gap: 8px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'DM Sans', sans-serif; font-size: .75rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 9px 18px; border-radius: var(--r); border: 1px solid;
  cursor: pointer; white-space: nowrap;
  transition: background var(--t), transform var(--t), color var(--t);
}
.btn--confirm { background: #F0F7F0; color: #1B5E20; border-color: #C8E6C9; }
.btn--confirm:hover { background: #C8E6C9; transform: translateY(-1px); }
.btn--reject  { background: rgba(200,25,13,.06); color: var(--red); border-color: rgba(200,25,13,.20); }
.btn--reject:hover { background: rgba(200,25,13,.12); transform: translateY(-1px); }
.btn--full { width: 100%; }

/* ─────────────────────────────────────────────────────
   EXPERIENCE — SOLD OUT STATE
───────────────────────────────────────────────────── */
.experience-sold-out {
  margin-top: 24px;
  padding: 24px;
  border: 1px solid var(--rule);
  border-radius: var(--r);
  background: var(--subtle);
}
.experience-sold-out__msg {
  font-size: .9375rem;
  color: var(--mid);
  line-height: 1.6;
  margin: 0 0 16px;
}

/* ─────────────────────────────────────────────────────
   JOIN PAGE
───────────────────────────────────────────────────── */
/* ─────────────────────────────────────────────────────
   JOIN PAGE — split hero + props grid + form
───────────────────────────────────────────────────── */

/* Split hero */
.join-hero {
  display: grid;
  grid-template-columns: 46fr 54fr;
  min-height: 560px;
}
.join-hero__text {
  background: var(--paper);
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 64px 80px 48px;
}
.join-hero__h1 {
  font-family: 'Spectral', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700; letter-spacing: -.03em; line-height: 1.1;
  color: var(--ink); margin: 16px 0 0;
}
.join-hero__sub {
  font-size: 1rem; color: var(--mid); line-height: 1.72;
  margin: 24px 0 36px; max-width: 480px;
}
.join-hero__actions { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.join-hero__no-risk { font-size: .8125rem; color: var(--muted); margin: 0; }

/* Right stat panel */
.join-hero__stat {
  background: var(--ink);
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 64px;
  color: rgba(255,255,255,.65);
}
.join-hero__stat-label { color: rgba(255,255,255,.38); }
.join-hero__big-stat {
  font-family: 'Spectral', serif;
  font-size: clamp(5rem, 9vw, 8.5rem);
  font-weight: 800; letter-spacing: -.04em; line-height: 1;
  color: var(--white); display: block; margin: 16px 0 4px;
}
.join-hero__stat-sub {
  font-size: .8125rem; font-weight: 500; letter-spacing: .06em;
  text-transform: uppercase; color: rgba(255,255,255,.45);
}
.join-hero__stat-rule {
  width: 40px; height: 1px; background: rgba(255,255,255,.18);
  margin: 28px 0; border: none;
}
.join-hero__stat-body { font-size: .9375rem; line-height: 1.72; max-width: 360px; margin: 0 0 28px; }
.join-hero__stat-numbers {
  display: flex; gap: 24px;
  font-size: .75rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,.45);
}

/* Value props grid */
.join-props {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--rule);
  border: 1px solid var(--rule);
  margin-top: 48px;
}
.join-prop { background: var(--paper); padding: 40px; }
.join-prop__num {
  font-family: 'DM Sans', sans-serif;
  font-size: .6rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--red); display: block; margin-bottom: 14px;
}
.join-prop__title {
  font-family: 'Spectral', serif;
  font-size: 1.25rem; font-weight: 700;
  color: var(--ink); margin: 0 0 14px; letter-spacing: -.01em;
}
.join-prop__body { font-size: .9375rem; color: var(--mid); line-height: 1.72; margin: 0; }

/* Form section */
.join-form-wrap { max-width: 680px; margin: 0 auto; }
.join-form-header { margin-bottom: 48px; }
.join-form-header__title {
  font-family: 'Spectral', serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700; letter-spacing: -.03em;
  color: var(--ink); margin: 16px 0 12px;
}
.join-form-header__sub { font-size: 1rem; color: var(--mid); line-height: 1.6; margin: 0; }

/* Form fields */
.join-form { display: flex; flex-direction: column; gap: 0; }
.join-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 20px; }
.join-form__field { margin-bottom: 24px; }
.join-form__field label {
  display: block; font-size: .625rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 8px;
}
.join-form__field input,
.join-form__field textarea,
.join-form__field select {
  width: 100%; padding: 13px 16px;
  border: 1px solid var(--border); border-radius: var(--r);
  background: var(--white);
  font-family: 'DM Sans', sans-serif; font-size: .9375rem; color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
  appearance: none; -webkit-appearance: none;
}
.join-form__field input:focus,
.join-form__field textarea:focus,
.join-form__field select:focus {
  outline: none; border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-sh);
}
.join-form__input--readonly { background: var(--paper) !important; color: var(--muted) !important; cursor: default; }
.join-form__submit { margin-top: 8px; display: flex; flex-direction: column; gap: 14px; }
.join-form__disclaimer { font-size: .8125rem; color: var(--muted); margin: 0; }

/* Error state */
.join-page__error {
  border-left: 3px solid var(--red); padding: 16px 20px; margin-bottom: 28px;
  background: rgba(200,25,13,.04); border-radius: var(--r);
  font-size: .875rem; color: var(--red);
}

/* Success state */
.join-success { padding: 20px 0; }
.join-success__title {
  font-family: 'Spectral', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; letter-spacing: -.03em;
  color: var(--ink); margin: 16px 0 20px;
}
.join-success__body { font-size: 1rem; color: var(--mid); line-height: 1.72; max-width: 560px; margin: 0; }

/* ─────────────────────────────────────────────────────
   SINGLE PRODUCT (WooCommerce experience page)
───────────────────────────────────────────────────── */
.experience-video         { margin-bottom: 32px; }
.experience-video__player { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: var(--r); }
.experience-included ul   { list-style: none; display: flex; flex-direction: column; gap: 12px; padding: 0; margin: 0; }
.experience-included li   { display: flex; align-items: flex-start; gap: 12px; font-size: .9375rem; color: var(--mid); }
.experience-included li::before { content: '✓'; color: var(--red); font-weight: 700; flex-shrink: 0; }
.experience-meeting-point { border-left: 2px solid var(--red); padding-left: 20px; font-size: .9375rem; color: var(--mid); }

/* ─────────────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero--home              { grid-template-columns: 1fr 1fr; }
  .hero__col-text          { padding: 100px 40px 60px 32px; }
  .city-feature__editorial { grid-template-columns: 1fr 1fr; }
  .city-feature__right {
    grid-column: 1/-1; border-left: none; border-top: 1px solid var(--rule);
    padding: 24px 0 0; flex-direction: row; align-items: center; justify-content: space-between;
  }
  .footer__grid { grid-template-columns: 2fr 1fr 1fr; }
  .footer__brand { grid-column: 1/-1; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.07); margin-bottom: 40px; }
}

@media (max-width: 900px) {
  .container  { padding: 0 24px; }
  .section    { padding: 64px 0; }

  .hero--home            { grid-template-columns: 1fr; min-height: auto; }
  .hero__col-photo       { height: 50vw; min-height: 260px; }
  .hero__col-text        { padding: 64px 24px 48px; }
  .hero__col-text::after { display: none; }

  .city-feature__editorial { grid-template-columns: 1fr; }
  .city-feature__mid, .city-feature__right { border-left: none; border-top: 1px solid var(--rule); padding: 24px 0 0; }

  .trust__stats { grid-template-columns: repeat(2, 1fr); }

  .faq-item { grid-template-columns: 1fr; gap: 10px 0; padding: 28px 0; }

  .how-steps { grid-template-columns: 1fr; }
  .how-step, .how-step:last-child, .how-step:nth-child(2) { border-right: none; border-bottom: 1px solid var(--rule); padding: 36px 0; }
  .how-step:last-child { border-bottom: none; }

  .experiences-grid__items {
    display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
    background: transparent; border: none;
    gap: var(--grid-gap, 12px); padding-bottom: 1.5rem;
  }
  .experiences-grid__items::-webkit-scrollbar { display: none; }
  .experience-card { min-width: 78vw; flex-shrink: 0; scroll-snap-align: start; border: 1px solid var(--rule); }
  .experience-card--featured { grid-row: auto; min-width: 78vw; }
  .experience-card--featured .experience-card__media,
  .experience-card__media { aspect-ratio: 4/3; }
  .experience-card--featured .experience-card__body { padding: 20px 24px 24px; }
  .experience-card--featured .experience-card__title { font-size: 1rem; }

  .trust { padding: 80px 0; }

  .footer__grid    { grid-template-columns: 1fr 1fr; gap: 0 32px; }
  .footer__brand   { grid-column: 1/-1; }
  .footer__bottom  { flex-direction: column; align-items: flex-start; }

  .booking-card { grid-template-columns: 1fr; gap: 14px; }
  .booking-card__actions { flex-direction: row; }
}

@media (max-width: 600px) {
  /* No hamburger — nav scrolls horizontally */
  .site-header__identity { padding: 12px 20px; }
  .site-header__logo-img { height: 52px; }
  .site-header__util     { display: none; }

  .site-nav { overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; justify-content: flex-start; }
  .site-nav::-webkit-scrollbar { display: none; }
  .site-nav__links { justify-content: flex-start; padding: 0 16px; flex-wrap: nowrap; }
  .site-nav__item:first-child { border-left: none; }
  .site-nav__link  { padding: 10px 14px; font-size: .6rem; }

  .editorial-break { padding: 48px 16px; }

  .site-header__strip { font-size: .66rem; padding: 8px 16px; gap: 6px; }
  .strip__cta { display: none; } /* too long for mobile strip */

  .hero__headline  { font-size: 2.8rem; }
  .footer__grid    { grid-template-columns: 1fr; gap: 32px 0; padding-bottom: 40px; }
  .footer__bottom  { gap: 12px; }
  .footer__legal   { flex-wrap: wrap; gap: 16px; }
  .trust__stats    { grid-template-columns: 1fr 1fr; }
  .trust__stat     { padding: 24px 18px; }

  .join-hero       { grid-template-columns: 1fr; }
  .join-hero__stat { min-height: auto; padding: 48px 24px; }
  .join-hero__big-stat { font-size: 5rem; }
  .join-props      { grid-template-columns: 1fr; }
  .join-form__row  { grid-template-columns: 1fr; gap: 0; }

  .city-page__hero      { grid-template-columns: 1fr; }
  .city-page__hero-photo { height: 60vw; min-height: 240px; }
  .city-page__name       { font-size: 3rem; }

  .city-editorial__photo-wrap { aspect-ratio: 16/9; }
  .city-editorial__quote      { font-size: 1.25rem; }
}

/* ─────────────────────────────────────────────────────
   BREADCRUMB
───────────────────────────────────────────────────── */
.city-page__breadcrumb {
  border-bottom: 1px solid var(--rule);
  padding: 14px 0;
  background: var(--paper);
}

.breadcrumb {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.breadcrumb__item {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
}

.breadcrumb__item a {
  color: var(--muted);
  transition: color var(--t);
}

.breadcrumb__item a:hover { color: var(--ink); }

.breadcrumb__item--sep { color: var(--rule); user-select: none; }

.breadcrumb__item--current { color: var(--ink); font-weight: 600; }

/* ─────────────────────────────────────────────────────
   CITY PAGE (single-experience_city.php)
───────────────────────────────────────────────────── */
.city-page__hero {
  display: grid;
  grid-template-columns: 46fr 54fr;
  min-height: 92vh;
}

.city-page__hero-text {
  padding: 120px 64px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--paper);
  position: relative;
}

.city-page__hero-text::after {
  content: '';
  position: absolute;
  right: 0; top: 10%; bottom: 10%;
  width: 1px;
  background: var(--rule);
}

.city-page__name {
  font-family: 'Spectral', serif;
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: .97;
  color: var(--ink);
  margin: 0 0 32px;
}

.city-page__tagline {
  font-family: 'Spectral', serif;
  font-style: italic;
  font-size: 1.125rem;
  color: var(--mid);
  line-height: 1.6;
  margin: 0 0 24px;
  max-width: 36ch;
}

.city-page__count {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 40px;
}

.city-page__hero-photo {
  position: relative;
  overflow: hidden;
}

.city-page__hero-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.city-page__hero-placeholder {
  width: 100%;
  height: 100%;
  background: var(--subtle);
}

.city-page__description {
  max-width: 72ch;
}

.city-page__description-body {
  font-family: 'Spectral', serif;
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--mid);
  margin-top: 24px;
}

.city-page__description-body p { margin: 0 0 1.25em; }
.city-page__description-body p:last-child { margin-bottom: 0; }

.city-page__no-exp {
  font-family: 'Spectral', serif;
  font-style: italic;
  color: var(--muted);
  font-size: 1rem;
  margin-top: 40px;
}

/* Placeholder card state */
.experience-card--placeholder { pointer-events: none; }
.experience-card--placeholder .experience-card__media--placeholder {
  background: linear-gradient(135deg, var(--subtle) 0%, var(--rule) 100%);
}

/* ─────────────────────────────────────────────────────
   CITY EDITORIAL FEATURE (full-bleed desire layer)
───────────────────────────────────────────────────── */
.city-editorial { background: var(--ink); }

.city-editorial__photo-wrap {
  width: 100%;
  aspect-ratio: 21/8;
  overflow: hidden;
  position: relative;
}

.city-editorial__media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: .82;
  transition: opacity .6s ease;
}

.city-editorial:hover .city-editorial__media { opacity: .92; }

.city-editorial__media--placeholder {
  background: var(--subtle);
}

.city-editorial__caption {
  background: var(--ink);
  border-top: 2px solid var(--red);
  padding: 40px 0 44px;
}

.city-editorial__quote {
  font-family: 'Spectral', serif;
  font-style: italic;
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  font-weight: 400;
  color: #F9F8F4;
  line-height: 1.5;
  letter-spacing: -.01em;
  max-width: 68ch;
  margin: 0 0 16px;
}

.city-editorial__attribution {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: .625rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--red);
}

/* ─────────────────────────────────────────────────────
   SINGLE PRODUCT PAGE — editorial split layout
───────────────────────────────────────────────────── */

/* WC wrapper reset */
.single-product #primary { padding: 0; }
.single-product .woocommerce { max-width: none; padding: 0; }

/* Split grid: 55% media / 45% booking widget */
.single-product div.product {
  display: grid;
  grid-template-columns: 55fr 45fr;
  align-items: stretch;
}

/* Gallery (left column) — fills the row height */
.single-product div.product .woocommerce-product-gallery {
  grid-column: 1;
  min-height: 70vh;
  overflow: hidden;
}

/* Summary / booking widget (right column) */
.single-product div.product .summary.entry-summary {
  grid-column: 2;
  padding: 56px 56px 80px;
  border-left: 1px solid var(--rule);
}

/* Tabs and related — span full width below the split */
.single-product div.product .woocommerce-tabs,
.single-product div.product .related.products { grid-column: 1 / -1; }

/* ── Media visual ── */
.product-page__media { width: 100%; height: 100%; }
.product-page__visual {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.product-page__visual--placeholder { background: var(--subtle); }

/* ── Booking widget typography ── */
.product-page__city { display: block; margin-bottom: 12px; }

.single-product .product_title {
  font-family: 'Spectral', serif;
  font-size: clamp(1.75rem, 2.6vw, 2.75rem);
  font-weight: 800; letter-spacing: -.03em; line-height: 1.05;
  color: var(--ink); margin: 0 0 16px;
}

.single-product .woocommerce-product-rating { margin-bottom: 20px; }
.single-product .star-rating { color: #C8A800; }

.single-product .price {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.5rem; font-weight: 600;
  color: var(--ink); margin: 0 0 20px; display: block;
}
.single-product .price del { color: var(--muted); font-size: 1rem; font-weight: 400; }

.single-product .woocommerce-product-details__short-description {
  font-family: 'Spectral', serif;
  font-size: 1rem; font-style: italic;
  color: var(--mid); line-height: 1.7;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--rule);
}

/* Urgency badge */
.product-page__urgency {
  font-family: 'DM Sans', sans-serif;
  font-size: .75rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--red); margin: 0 0 20px;
}

/* Add to cart form — make button match our design system */
.single-product form.cart { margin: 0 0 20px; }
.single-product .single_add_to_cart_button {
  display: inline-flex; align-items: center; justify-content: center;
  width: 100%;
  background: var(--red); color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: .8125rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 18px 36px; border: none; border-radius: var(--r);
  box-shadow: 0 4px 20px var(--red-sh);
  cursor: pointer;
  transition: background var(--t), transform var(--t), box-shadow var(--t);
}
.single-product .single_add_to_cart_button:hover {
  background: var(--red-d);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200,25,13,.30);
}

/* Trust microcopy */
.product-page__trust {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.product-page__trust li {
  font-family: 'DM Sans', sans-serif;
  font-size: .78rem; color: var(--muted);
  padding-left: 16px; position: relative;
}
.product-page__trust li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--red); font-size: .7rem;
}

/* ── Tabs section (description, What's Included, reviews) ── */
.single-product .woocommerce-tabs {
  border-top: 1px solid var(--rule);
  padding: 0 48px 96px;
  background: var(--paper);
}
.single-product .woocommerce-tabs ul.tabs {
  list-style: none; margin: 0 0 48px; padding: 0;
  display: flex; gap: 0;
  border-bottom: 2px solid var(--ink);
}
.single-product .woocommerce-tabs ul.tabs li {
  border-right: 1px solid var(--rule);
}
.single-product .woocommerce-tabs ul.tabs li:first-child { border-left: 1px solid var(--rule); }
.single-product .woocommerce-tabs ul.tabs li a {
  display: block; padding: 12px 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: .63rem; font-weight: 400;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted); transition: color .2s;
}
.single-product .woocommerce-tabs ul.tabs li.active a,
.single-product .woocommerce-tabs ul.tabs li a:hover { color: var(--red); }

.single-product .woocommerce-tabs .panel { max-width: 72ch; }
.single-product .woocommerce-tabs .panel h2 { display: none; }

/* What's Included editorial */
.experience-included h3,
.experience-meeting-point h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: .63rem; font-weight: 400;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted); margin: 40px 0 16px;
}
.experience-included__content { font-family: 'Spectral', serif; font-size: 1rem; line-height: 1.75; color: var(--mid); }
.experience-meeting-point p   { font-family: 'Spectral', serif; font-size: 1rem; line-height: 1.75; color: var(--mid); }

/* ── Related experiences ── */
.single-product .related.products {
  border-top: 1px solid var(--rule);
  padding: 80px 48px 96px;
}
.single-product .related h2 {
  font-family: 'DM Sans', sans-serif;
  font-size: .625rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 40px;
}
.single-product .related ul.products {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--rule);
}
.single-product .related ul.products li.product { background: var(--paper); }
.single-product .related ul.products li.product a img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.single-product .related ul.products li.product .woocommerce-loop-product__title {
  font-family: 'Spectral', serif; font-size: 1rem; font-weight: 700;
  color: var(--ink); padding: 16px 20px 4px;
}
.single-product .related ul.products li.product .price { font-size: .875rem; padding: 0 20px 20px; margin: 0; }

/* ── Mobile single product ── */
@media (max-width: 860px) {
  .single-product div.product { grid-template-columns: 1fr; }
  .single-product div.product .woocommerce-product-gallery {
    position: static; height: 56vw; max-height: 420px;
  }
  .single-product div.product .summary.entry-summary {
    grid-column: 1; border-left: none; padding: 40px 24px 60px;
  }
  .single-product .woocommerce-tabs { padding: 0 24px 60px; }
  .single-product .related.products { padding: 60px 24px; }
  .single-product .related ul.products { grid-template-columns: 1fr 1fr; }
}

/* ─────────────────────────────────────────────────────
   THANK YOU / ORDER CONFIRMATION
───────────────────────────────────────────────────── */

/* Confirmation header — dark band */
.thankyou-hero {
  background: var(--ink); color: var(--white);
  padding: 96px 0 80px;
  text-align: center;
  border-bottom: 3px solid var(--red);
}
.thankyou-hero__check {
  display: block;
  font-size: 2rem; color: var(--red);
  margin-bottom: 20px; line-height: 1;
}
.thankyou-hero__headline {
  font-family: 'Spectral', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800; letter-spacing: -.03em; line-height: 1.05;
  color: var(--white); margin: 0 0 16px;
}
.thankyou-hero__sub {
  font-family: 'DM Sans', sans-serif;
  font-size: .7rem; font-weight: 400;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.5); margin: 0 0 12px;
}
.thankyou-hero__email {
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem; color: rgba(255,255,255,.6); margin: 0;
}
.thankyou-hero__email strong { color: rgba(255,255,255,.9); font-weight: 500; }

/* Order summary table */
.thankyou-order__table {
  width: 100%; border-collapse: collapse;
  border-top: 2px solid var(--ink); margin-top: 0;
}
.thankyou-order__table thead th {
  font-family: 'DM Sans', sans-serif;
  font-size: .6rem; font-weight: 400;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted); padding: 12px 0;
  border-bottom: 1px solid var(--rule); text-align: left;
}
.thankyou-order__table tbody tr td,
.thankyou-order__total-row th,
.thankyou-order__total-row td {
  padding: 20px 0; border-bottom: 1px solid var(--rule);
  vertical-align: middle;
}
.thankyou-order__col-product { display: flex; align-items: center; gap: 16px; }
.thankyou-order__thumb {
  width: 64px; height: 64px; object-fit: cover;
  border-radius: var(--r); flex-shrink: 0;
}
.thankyou-order__product-name {
  font-family: 'Spectral', serif; font-size: 1rem; font-weight: 700;
  color: var(--ink); display: block; margin-bottom: 4px;
}
.thankyou-order__qty {
  font-family: 'DM Sans', sans-serif; font-size: .75rem; color: var(--muted);
}
.thankyou-order__col-total {
  font-family: 'DM Sans', sans-serif; font-size: .9375rem;
  font-weight: 500; color: var(--ink); text-align: right;
}
.thankyou-order__total-row th,
.thankyou-order__total-row td {
  font-family: 'DM Sans', sans-serif; font-size: 1rem;
  font-weight: 600; color: var(--ink); border-bottom: none;
}
.thankyou-order__total-row td { text-align: right; font-size: 1.25rem; }

/* CTA section */
.thankyou-cta {
  padding: 80px 0 120px; text-align: center;
  border-top: 1px solid var(--rule);
}
.thankyou-cta__text {
  font-family: 'Spectral', serif; font-style: italic;
  font-size: 1rem; color: var(--muted); margin-bottom: 24px;
}

/* Failed order */
.thankyou-failed { padding: 80px 0; text-align: center; }
.thankyou-failed__msg {
  font-family: 'Spectral', serif; font-size: 1rem; color: var(--mid);
  max-width: 60ch; margin: 0 auto 32px; line-height: 1.7;
}

@media (max-width: 600px) {
  .thankyou-hero { padding: 64px 0 56px; }
  .thankyou-cta { padding: 56px 0 80px; }
}

/* ─────────────────────────────────────────────────────
   CART PAGE
───────────────────────────────────────────────────── */
.woocommerce-cart .entry-content { max-width: 1200px; margin: 0 auto; padding: 80px 48px 120px; }

/* Page heading */
.woocommerce-cart .entry-content > h1,
.woocommerce-cart .woocommerce > h1 { display: none; } /* WC adds none by default */

/* Cart table */
.shop_table.cart {
  width: 100%; border-collapse: collapse;
  border-top: 2px solid var(--ink);
}
.shop_table.cart thead th {
  font-family: 'DM Sans', sans-serif;
  font-size: .6rem; font-weight: 400;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted);
  padding: 14px 0; text-align: left;
  border-bottom: 1px solid var(--rule);
}
.shop_table.cart thead .product-remove,
.shop_table.cart thead .product-thumbnail { width: 1px; } /* collapse to content */

.cart_item td {
  padding: 24px 16px 24px 0;
  border-bottom: 1px solid var(--rule);
  vertical-align: middle;
}
.cart_item td:first-child { padding-left: 0; }

/* Remove button */
.product-remove a {
  display: flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%;
  font-size: .75rem; font-weight: 400; line-height: 1;
  color: var(--muted); border: 1px solid var(--rule);
  transition: color .2s, border-color .2s;
}
.product-remove a:hover { color: var(--red); border-color: var(--red); }

/* Product thumbnail */
.product-thumbnail img { width: 72px; height: 72px; object-fit: cover; border-radius: var(--r); }

/* Product name */
.product-name a {
  font-family: 'Spectral', serif;
  font-size: 1rem; font-weight: 700;
  color: var(--ink);
}
.product-name a:hover { color: var(--red); }

/* Price / subtotal */
.product-price .amount,
.product-subtotal .amount {
  font-family: 'DM Sans', sans-serif;
  font-size: .9375rem; font-weight: 500;
  color: var(--ink);
}

/* Quantity input */
.product-quantity .qty {
  width: 60px; text-align: center;
  font-family: 'DM Sans', sans-serif; font-size: .9rem;
  border: none; border-bottom: 1px solid var(--rule);
  background: transparent; padding: 6px 4px;
  color: var(--ink); border-radius: 0;
}
.product-quantity .qty:focus { outline: none; border-bottom-color: var(--red); }

/* Cart actions row */
.cart-collaterals { margin-top: 40px; display: flex; justify-content: flex-end; }
.cart_totals { min-width: 320px; }
.cart_totals h2 {
  font-family: 'DM Sans', sans-serif;
  font-size: .6rem; font-weight: 400;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 20px;
}
.cart_totals .shop_table { border-top: 2px solid var(--ink); }
.cart_totals .shop_table td,
.cart_totals .shop_table th {
  padding: 14px 0; border-bottom: 1px solid var(--rule);
  font-family: 'DM Sans', sans-serif; font-size: .9rem;
  color: var(--mid);
}
.cart_totals .order-total td,
.cart_totals .order-total th {
  font-weight: 600; font-size: 1rem; color: var(--ink);
  border-bottom: none; padding-top: 20px;
}
.cart_totals .order-total .amount { font-size: 1.25rem; }

/* Proceed to checkout CTA */
.wc-proceed-to-checkout { margin-top: 24px; }
.checkout-button.button {
  display: block; width: 100%; text-align: center;
  background: var(--red); color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: .8125rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 18px 36px; border-radius: var(--r);
  box-shadow: 0 4px 20px var(--red-sh);
  transition: background var(--t), transform var(--t);
}
.checkout-button.button:hover {
  background: var(--red-d); color: var(--white);
  transform: translateY(-2px);
}

/* ─────────────────────────────────────────────────────
   CHECKOUT PAGE
───────────────────────────────────────────────────── */
.woocommerce-checkout .entry-content { max-width: 1200px; margin: 0 auto; padding: 80px 48px 120px; }

/* 2-column layout: billing left, order summary right */
form.woocommerce-checkout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 80px;
  align-items: start;
}
form.woocommerce-checkout .col2-set { grid-column: 1; }
form.woocommerce-checkout #order_review { grid-column: 2; }

/* Section headings */
.woocommerce-billing-fields h3,
.woocommerce-additional-fields h3,
#order_review_heading {
  font-family: 'DM Sans', sans-serif;
  font-size: .6rem; font-weight: 400;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 32px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--ink);
}

/* Form fields — editorial minimal: bottom border only */
.woocommerce-checkout .form-row { margin: 0 0 20px; }
.woocommerce-checkout .form-row label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: .6rem; font-weight: 400;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 6px;
}
.woocommerce-checkout .form-row .required { color: var(--red); }

.woocommerce-checkout input[type="text"],
.woocommerce-checkout input[type="email"],
.woocommerce-checkout input[type="tel"],
.woocommerce-checkout textarea {
  width: 100%; background: transparent; border: none;
  border-bottom: 1px solid var(--rule);
  padding: 10px 0; border-radius: 0;
  font-family: 'DM Sans', sans-serif;
  font-size: .9375rem; color: var(--ink);
  transition: border-color .2s;
}
.woocommerce-checkout input:focus,
.woocommerce-checkout textarea:focus {
  outline: none; border-bottom: 2px solid var(--red);
}

/* Order review table */
.woocommerce-checkout-review-order-table {
  width: 100%; border-collapse: collapse;
  border-top: 2px solid var(--ink); margin-bottom: 32px;
}
.woocommerce-checkout-review-order-table thead th {
  font-family: 'DM Sans', sans-serif;
  font-size: .6rem; font-weight: 400;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted); padding: 12px 0;
  border-bottom: 1px solid var(--rule); text-align: left;
}
.woocommerce-checkout-review-order-table .cart_item td,
.woocommerce-checkout-review-order-table .cart-subtotal td,
.woocommerce-checkout-review-order-table .order-total td {
  padding: 14px 0; border-bottom: 1px solid var(--rule);
  font-family: 'DM Sans', sans-serif; font-size: .9rem; color: var(--mid);
}
.woocommerce-checkout-review-order-table .order-total td,
.woocommerce-checkout-review-order-table .order-total th {
  font-weight: 600; font-size: 1rem; color: var(--ink); border-bottom: none;
}
.woocommerce-checkout-review-order-table .order-total .amount { font-size: 1.25rem; }

/* Payment section */
#payment { margin-top: 8px; }
#payment .wc_payment_methods {
  list-style: none; margin: 0 0 24px; padding: 0;
  border-top: 2px solid var(--ink);
}
#payment .wc_payment_methods li {
  padding: 16px 0; border-bottom: 1px solid var(--rule);
  font-family: 'DM Sans', sans-serif; font-size: .875rem; color: var(--mid);
}
#payment .wc_payment_methods label { cursor: pointer; }
#payment .payment_box {
  background: var(--subtle); padding: 16px 20px;
  border-radius: var(--r); margin-top: 12px;
  font-family: 'DM Sans', sans-serif; font-size: .8rem; color: var(--muted);
}

/* Complete Booking button */
#place_order {
  display: block; width: 100%;
  background: var(--red); color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: .8125rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 18px 36px; border: none; border-radius: var(--r);
  box-shadow: 0 4px 20px var(--red-sh); cursor: pointer;
  transition: background var(--t), transform var(--t), box-shadow var(--t);
}
#place_order:hover {
  background: var(--red-d);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200,25,13,.30);
}

/* WC validation error */
.woocommerce-error,
.woocommerce-message,
.woocommerce-info {
  list-style: none; padding: 16px 20px; margin: 0 0 24px;
  border-left: 3px solid var(--red);
  background: rgba(200,25,13,.04);
  font-family: 'DM Sans', sans-serif; font-size: .875rem; color: var(--mid);
}
.woocommerce-message { border-left-color: var(--ink); background: var(--subtle); }

/* Mobile cart + checkout */
@media (max-width: 860px) {
  .woocommerce-cart .entry-content,
  .woocommerce-checkout .entry-content { padding: 48px 24px 80px; }
  form.woocommerce-checkout { grid-template-columns: 1fr; gap: 48px; }
  form.woocommerce-checkout .col2-set,
  form.woocommerce-checkout #order_review { grid-column: 1; }
  .cart-collaterals { justify-content: stretch; }
  .cart_totals { min-width: 0; width: 100%; }
}

/* ─────────────────────────────────────────────────────
   LONG-FORM TEXT PAGES (Privacy, Terms, Cookies)
───────────────────────────────────────────────────── */
.page-text { padding: 80px 0 120px; }
.page-text .container { max-width: 780px; }

.page-text__header { margin-bottom: 56px; padding-bottom: 32px; border-bottom: 2px solid var(--ink); }
.page-text__header h1 {
  font-family: 'Spectral', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800; letter-spacing: -.03em; line-height: 1.05;
  color: var(--ink); margin: 12px 0 8px;
}
.page-text__meta { font-family: 'DM Sans', sans-serif; font-size: .8rem; color: var(--muted); margin: 0; }

.page-text__body { font-family: 'DM Sans', sans-serif; font-size: .9375rem; line-height: 1.75; color: var(--mid); }
.page-text__body h2 {
  font-family: 'Spectral', serif; font-size: 1.25rem; font-weight: 700;
  color: var(--ink); margin: 48px 0 14px; letter-spacing: -.02em;
  padding-top: 48px; border-top: 1px solid var(--rule);
}
.page-text__body h2:first-child { border-top: none; padding-top: 0; margin-top: 0; }
.page-text__body p { margin: 0 0 1.25em; }
.page-text__body ul { padding-left: 1.25em; margin: 0 0 1.25em; }
.page-text__body li { margin-bottom: .5em; }
.page-text__body strong { color: var(--ink); font-weight: 600; }
.page-text__body a { color: var(--red); border-bottom: 1px solid currentColor; padding-bottom: 1px; }
.page-text__body a:hover { color: var(--red-d); }

/* ─────────────────────────────────────────────────────
   ABOUT PAGE
───────────────────────────────────────────────────── */
.about-hero {
  background: var(--ink); padding: 96px 0 88px;
  border-bottom: 3px solid var(--red);
}
.about-hero__headline {
  font-family: 'Spectral', serif;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 800; letter-spacing: -.03em; line-height: 1.0;
  color: var(--white); margin: 12px 0 24px;
}
.about-hero__sub {
  font-family: 'Spectral', serif; font-style: italic;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: rgba(255,255,255,.65); max-width: 60ch; line-height: 1.7; margin: 0;
}

/* Mission section */
.about-mission {
  display: grid; grid-template-columns: 3fr 2fr; gap: 0 80px; align-items: start;
}
.about-mission__text p {
  font-family: 'DM Sans', sans-serif; font-size: .9375rem;
  line-height: 1.8; color: var(--mid); margin: 0 0 1.25em;
}
.about-mission__lead {
  font-family: 'Spectral', serif !important; font-size: 1.125rem !important;
  font-style: italic; color: var(--ink) !important; line-height: 1.7 !important;
}
.about-mission__stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--rule); border: 1px solid var(--rule);
}
.about-stat {
  background: var(--paper); padding: 28px 24px;
  display: flex; flex-direction: column; gap: 6px;
}
.about-stat__num {
  font-family: 'Spectral', serif; font-size: 2.5rem;
  font-weight: 800; letter-spacing: -.04em; color: var(--ink); line-height: 1;
}
.about-stat__label {
  font-family: 'DM Sans', sans-serif; font-size: .65rem;
  font-weight: 400; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted);
}

/* Partner CTA */
.about-partner__headline {
  font-family: 'Spectral', serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800; letter-spacing: -.03em;
  color: var(--ink); margin: 12px 0 16px;
}
.about-partner__copy {
  font-family: 'DM Sans', sans-serif; font-size: .9375rem;
  color: var(--mid); max-width: 52ch; margin: 0 auto 32px; line-height: 1.7;
}

@media (max-width: 860px) {
  .about-mission { grid-template-columns: 1fr; gap: 48px; }
  .about-hero { padding: 64px 0 56px; }
}

/* ─────────────────────────────────────────────────────
   PÁGINA NEGOCIOS (B2B landing — español)
───────────────────────────────────────────────────── */

/* Hero */
.neg-hero {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; align-items: stretch;
  border-bottom: 1px solid var(--rule);
}
.neg-hero__text {
  padding: 80px 64px 80px 48px;
  background: var(--ink); color: var(--white);
  border-right: 1px solid rgba(255,255,255,.08);
}
.neg-hero__h1 {
  font-family: 'Spectral', serif;
  font-size: clamp(1.875rem, 3.2vw, 3rem);
  font-weight: 800; letter-spacing: -.03em; line-height: 1.08;
  color: var(--white); margin: 12px 0 24px;
}
.neg-hero__h1 em { font-style: normal; color: var(--red); }
.neg-hero__sub {
  font-size: .9375rem; color: rgba(255,255,255,.65);
  line-height: 1.75; margin: 0 0 36px; max-width: 52ch;
}
.neg-hero__actions { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.neg-hero__norisk { font-size: .8rem; color: rgba(255,255,255,.4); margin: 0; }

/* Proof cards (right column) */
.neg-hero__proof {
  background: var(--paper); display: flex; flex-direction: column;
}
.neg-proof-card {
  flex: 1; padding: 40px 48px;
  border-bottom: 1px solid var(--rule);
  display: flex; flex-direction: column; gap: 6px;
}
.neg-proof-card:last-child { border-bottom: none; }
.neg-proof-card__num {
  font-family: 'Spectral', serif; font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800; letter-spacing: -.04em; color: var(--ink); line-height: 1;
}
.neg-proof-card__label {
  font-family: 'DM Sans', sans-serif; font-size: .9rem;
  color: var(--mid); line-height: 1.5; max-width: 36ch;
}
.neg-proof-card__source {
  font-family: 'DM Sans', sans-serif; font-size: .65rem;
  color: var(--muted); letter-spacing: .06em;
}

/* Sección títulos comunes */
.neg-section-title {
  font-family: 'Spectral', serif;
  font-size: clamp(1.625rem, 2.8vw, 2.5rem);
  font-weight: 800; letter-spacing: -.03em; line-height: 1.1;
  color: var(--ink); margin: 12px 0 16px;
}
.neg-section-sub {
  font-size: .9375rem; color: var(--mid); line-height: 1.75;
  max-width: 60ch; margin: 0 0 48px;
}

/* Problema */
.neg-problem { display: grid; grid-template-columns: 1fr 1.4fr; gap: 0 80px; align-items: start; }
.neg-problem__h2 {
  font-family: 'Spectral', serif;
  font-size: clamp(1.5rem, 2.4vw, 2.25rem);
  font-weight: 800; letter-spacing: -.03em; color: var(--ink);
  margin: 12px 0 0; line-height: 1.15;
}
.neg-problem__body p {
  font-size: .9375rem; color: var(--mid); line-height: 1.8; margin: 0 0 1.25em;
}
.neg-problem__body p em { font-style: italic; color: var(--ink); }
.neg-problem__callout {
  background: var(--subtle); border-left: 3px solid var(--red);
  padding: 20px 24px; border-radius: var(--r);
  font-family: 'Spectral', serif; font-size: 1rem; line-height: 1.7;
  color: var(--ink); margin-top: 8px !important;
}
.neg-problem__callout small { font-family: 'DM Sans', sans-serif; font-size: .7rem; color: var(--muted); }

/* Pasos (cómo funciona) */
.neg-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--rule);
  border: 1px solid var(--rule); border-top: 2px solid var(--ink);
}
.neg-step { background: var(--paper); padding: 36px 32px; }
.neg-step__num {
  font-family: 'Spectral', serif; font-size: 2.5rem; font-weight: 800;
  color: var(--rule); line-height: 1; margin-bottom: 20px; display: block;
  letter-spacing: -.04em;
}
.neg-step__title {
  font-family: 'Spectral', serif; font-size: 1.125rem; font-weight: 700;
  color: var(--ink); margin: 0 0 12px; letter-spacing: -.02em;
}
.neg-step__body { font-size: .875rem; color: var(--mid); line-height: 1.7; margin: 0; }

/* Calculadora */
.neg-calc-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 0 80px; align-items: start; }
.neg-calc {
  border: 1px solid var(--rule); border-top: 2px solid var(--ink);
  background: var(--paper);
}
.neg-calc__row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 16px 24px; border-bottom: 1px solid var(--rule);
  gap: 16px;
}
.neg-calc__label { font-family: 'DM Sans', sans-serif; font-size: .8rem; color: var(--mid); }
.neg-calc__val { font-family: 'DM Sans', sans-serif; font-size: .9rem; font-weight: 600; color: var(--ink); white-space: nowrap; }
.neg-calc__divider { border-top: 2px solid var(--ink); }
.neg-calc__row--total { padding: 20px 24px; }
.neg-calc__val--big { font-family: 'Spectral', serif; font-size: 1.5rem; font-weight: 800; color: var(--red); }
.neg-calc__disclaimer { font-family: 'DM Sans', sans-serif; font-size: .75rem; color: var(--muted); padding: 12px 24px 16px; margin: 0; }

/* Tipos de negocios */
.neg-types {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--rule);
  border: 1px solid var(--rule); margin-bottom: 24px;
}
.neg-type { background: var(--paper); padding: 32px 28px; }
.neg-type__icon { font-size: 1.5rem; display: block; margin-bottom: 12px; line-height: 1; }
.neg-type h3 {
  font-family: 'Spectral', serif; font-size: 1rem; font-weight: 700;
  color: var(--ink); margin: 0 0 8px; letter-spacing: -.01em;
}
.neg-type p { font-size: .8125rem; color: var(--mid); line-height: 1.6; margin: 0; }
.neg-types__note {
  font-family: 'Spectral', serif; font-style: italic;
  font-size: .9375rem; color: var(--muted); max-width: 64ch;
}

/* Sin riesgo */
.neg-norisk { display: grid; grid-template-columns: 1fr 1fr; gap: 0 80px; align-items: center; }
.neg-norisk__list {
  list-style: none; margin: 24px 0 0; padding: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.neg-norisk__list li {
  font-family: 'DM Sans', sans-serif; font-size: .9375rem;
  color: var(--mid); padding-left: 20px; position: relative;
}
.neg-norisk__list li::before { content: '✓'; position: absolute; left: 0; color: var(--red); font-weight: 700; }
.neg-quote {
  border-left: 3px solid var(--red); padding: 24px 32px;
  background: var(--subtle); border-radius: 0 var(--r) var(--r) 0;
}
.neg-quote p {
  font-family: 'Spectral', serif; font-style: italic;
  font-size: 1.125rem; color: var(--ink); line-height: 1.65;
  margin: 0 0 16px;
}
.neg-quote cite {
  font-family: 'DM Sans', sans-serif; font-size: .75rem;
  font-style: normal; color: var(--muted); letter-spacing: .08em;
}

/* FAQ accordion */
.neg-faq { max-width: 760px; border-top: 2px solid var(--ink); }
.neg-faq__item { border-bottom: 1px solid var(--rule); }
.neg-faq__q {
  list-style: none; padding: 20px 0; cursor: pointer;
  font-family: 'DM Sans', sans-serif; font-size: .9375rem; font-weight: 500;
  color: var(--ink); display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
}
.neg-faq__q::-webkit-details-marker { display: none; }
.neg-faq__q::after { content: '+'; color: var(--red); font-size: 1.2rem; font-weight: 400; flex-shrink: 0; transition: transform .2s; }
details[open] .neg-faq__q::after { transform: rotate(45deg); }
.neg-faq__a { padding: 0 0 20px; }
.neg-faq__a p { font-size: .9rem; color: var(--mid); line-height: 1.75; margin: 0; }

/* Stat 78% — sección puente */
.neg-stat78 {
  background: var(--ink); border-bottom: 3px solid var(--red);
  padding: 64px 0;
}
.neg-stat78__inner {
  display: grid; grid-template-columns: auto 1fr;
  gap: 0 56px; align-items: center;
}
.neg-stat78__num {
  font-family: 'Spectral', serif;
  font-size: clamp(5rem, 10vw, 9rem);
  font-weight: 800; letter-spacing: -.05em; line-height: .9;
  color: var(--red); flex-shrink: 0;
}
.neg-stat78__claim {
  font-family: 'Spectral', serif; font-style: italic;
  font-size: clamp(1.125rem, 2vw, 1.625rem);
  color: var(--white); line-height: 1.5; margin: 0 0 10px;
}
.neg-stat78__claim strong { font-style: normal; color: var(--white); }
.neg-stat78__source {
  font-family: 'DM Sans', sans-serif; font-size: .65rem;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.35); margin: 0 0 16px;
}
.neg-stat78__implication {
  font-family: 'DM Sans', sans-serif; font-size: .875rem;
  color: rgba(255,255,255,.55); margin: 0;
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 16px;
}

/* Visibilidad — búsquedas reales */
.neg-visibility {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--rule);
  border: 1px solid var(--rule); border-top: 2px solid var(--ink);
  margin-bottom: 24px;
}
.neg-vis-item { background: var(--paper); padding: 32px 28px; }
.neg-vis-item__vol {
  font-family: 'Spectral', serif; font-size: 2.25rem;
  font-weight: 800; letter-spacing: -.04em; color: var(--ink);
  line-height: 1; display: block; margin-bottom: 8px;
}
.neg-vis-item__kw {
  font-family: 'DM Sans', sans-serif; font-size: .8rem;
  font-style: italic; color: var(--mid);
  display: block; margin-bottom: 6px; line-height: 1.4;
}
.neg-vis-item__detail {
  font-family: 'DM Sans', sans-serif; font-size: .65rem;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); display: block;
}
.neg-visibility__cta-line {
  font-family: 'DM Sans', sans-serif; font-size: .9rem; color: var(--mid);
}
.neg-visibility__cta-line a { color: var(--red); border-bottom: 1px solid var(--red); padding-bottom: 1px; }

/* Preview grid — reutiliza experience-card */
.neg-preview-grid {
  display: grid; grid-template-columns: 1.7fr 1fr;
  grid-template-rows: auto auto; gap: 1px;
  background: var(--rule); border: 1px solid var(--rule);
  margin-bottom: 24px;
}
.neg-preview-grid .experience-card--featured { grid-row: 1 / 3; }
.neg-preview-note {
  font-family: 'Spectral', serif; font-style: italic;
  font-size: .9375rem; color: var(--muted);
}
.neg-preview-note a { color: var(--red); border-bottom: 1px solid var(--red); padding-bottom: 1px; }

/* Mobile negocios */
@media (max-width: 860px) {
  .neg-hero { grid-template-columns: 1fr; }
  .neg-hero__text { padding: 56px 24px; }
  .neg-hero__proof { border-top: 1px solid var(--rule); }
  .neg-proof-card { padding: 28px 24px; }
  .neg-stat78__inner { grid-template-columns: 1fr; gap: 16px; }
  .neg-stat78__num { font-size: 5rem; }
  .neg-problem { grid-template-columns: 1fr; gap: 40px; }
  .neg-steps { grid-template-columns: 1fr 1fr; }
  .neg-visibility { grid-template-columns: 1fr 1fr; }
  .neg-types { grid-template-columns: 1fr 1fr; }
  .neg-norisk { grid-template-columns: 1fr; gap: 40px; }
  .neg-preview-grid { grid-template-columns: 1fr; }
  .neg-preview-grid .experience-card--featured { grid-row: auto; }
}
@media (max-width: 600px) {
  .neg-steps { grid-template-columns: 1fr; }
  .neg-visibility { grid-template-columns: 1fr; }
  .neg-types { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────────────────
   404 PAGE
───────────────────────────────────────────────────── */
.e404 { background: var(--ink); min-height: 70vh; display: flex; align-items: center; border-bottom: 3px solid var(--red); }
.e404__inner { padding: 80px 0; text-align: center; }
.e404__code {
  font-family: 'Spectral', serif;
  font-size: clamp(6rem, 18vw, 14rem);
  font-weight: 800; letter-spacing: -.05em; line-height: .85;
  color: var(--red); display: block; margin-bottom: 16px;
}
.e404__headline {
  font-family: 'Spectral', serif;
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 800; letter-spacing: -.03em; line-height: 1.05;
  color: var(--white); margin: 0 0 20px;
}
.e404__sub {
  font-family: 'DM Sans', sans-serif;
  font-size: .9375rem; color: rgba(255,255,255,.55);
  max-width: 48ch; margin: 0 auto 40px; line-height: 1.7;
}
.e404__actions { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.e404__actions .btn--ghost { color: rgba(255,255,255,.5); border-color: rgba(255,255,255,.2); }
.e404__actions .btn--ghost:hover { color: var(--white); border-color: rgba(255,255,255,.6); }

/* ─────────────────────────────────────────────────────
   MOBILE PASS — systematic fixes across all pages
───────────────────────────────────────────────────── */
@media (max-width: 900px) {

  /* Section spacing */
  .section--city { padding: 48px 0 0; }
  .section--city .container { padding-top: 32px; padding-bottom: 56px; }

  /* Page text (Privacy, Terms, Cookies, About) */
  .page-text { padding: 48px 0 72px; }
  .page-text__header { margin-bottom: 36px; padding-bottom: 24px; }

  /* Thank you page */
  .thankyou-hero { padding: 64px 0 56px; }
  .thankyou-order__col-product { flex-direction: column; gap: 12px; }
  .thankyou-cta { padding: 56px 0 72px; }

  /* About mission */
  .about-mission { grid-template-columns: 1fr; gap: 40px; }
  .about-mission__stats { grid-template-columns: repeat(4,1fr); }

  /* Negocios stat 78% */
  .neg-stat78 { padding: 48px 0; }
  .neg-stat78__inner { grid-template-columns: auto 1fr; gap: 0 32px; }
  .neg-stat78__num { font-size: clamp(4rem, 12vw, 7rem); }
}

@media (max-width: 600px) {

  /* General spacing */
  .section { padding: 48px 0; }
  .container { padding: 0 20px; }
  .section--faq { padding: 56px 0; }
  .faq-item { padding: 22px 0; }
  .editorial-break__cta { bottom: 20px; }

  /* Header */
  .site-header__identity { padding: 10px 20px; }
  .site-header__logo-img { height: 44px; }
  .btn--sm { padding: 7px 14px !important; font-size: .6rem !important; }

  /* City feature */
  .city-feature__photo--bleed { height: 52vw; min-height: 220px; }
  .city-feature__name { font-size: 2.25rem; }

  /* Product page */
  .single-product div.product .woocommerce-product-gallery { height: 62vw; max-height: 360px; }
  .single-product .product_title { font-size: 1.625rem; }
  .single-product .woocommerce-tabs ul.tabs {
    overflow-x: auto; -webkit-overflow-scrolling: touch;
    scrollbar-width: none; flex-wrap: nowrap;
  }
  .single-product .woocommerce-tabs ul.tabs::-webkit-scrollbar { display: none; }
  .single-product .woocommerce-tabs ul.tabs li a { white-space: nowrap; }
  .single-product .related ul.products { grid-template-columns: 1fr; }

  /* Cart */
  .woocommerce-cart .entry-content { padding: 32px 20px 64px; }
  .product-thumbnail img { width: 52px; height: 52px; }
  .cart-collaterals { margin-top: 24px; }

  /* Checkout */
  .woocommerce-checkout .entry-content { padding: 32px 20px 64px; }
  .woocommerce-billing-fields h3,
  #order_review_heading { margin-bottom: 24px; }

  /* Thank you */
  .thankyou-order__table thead { display: none; }
  .thankyou-order__table tbody tr td { display: block; }
  .thankyou-order__col-product { border-bottom: none !important; padding-bottom: 4px; }
  .thankyou-order__col-total { padding-top: 0 !important; font-size: .875rem; }

  /* About */
  .about-hero { padding: 48px 0 44px; }
  .about-mission__stats { grid-template-columns: 1fr 1fr; }
  .about-stat__num { font-size: 2rem; }

  /* Negocios */
  .neg-stat78 { padding: 40px 0; }
  .neg-stat78__inner { grid-template-columns: 1fr; gap: 12px; }
  .neg-stat78__num { font-size: 5.5rem; line-height: 1; }
  .neg-vis-item__vol { font-size: 1.75rem; }
  .neg-calc-wrap { grid-template-columns: 1fr; gap: 36px; }
  .neg-norisk { grid-template-columns: 1fr; gap: 32px; }

  /* Page text */
  .page-text { padding: 40px 0 56px; }
  .page-text__header h1 { font-size: 1.875rem; }
  .page-text__body h2 { font-size: 1.125rem; margin-top: 36px; padding-top: 36px; }

  /* Footer credit wraps */
  .footer__copy { flex-direction: column; gap: 6px; }
}
