/* ==========================================================================
   Global Signature Stays / Luxe Voyage — Theme Stylesheet
   Compiled by hand from the original Tailwind CSS v4 source so the theme
   ships with zero build step and zero runtime JS framework dependency.
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  --radius: 1rem;

  --background: oklch(0.99 0.005 90);
  --foreground: oklch(0.14 0.02 260);

  --card: oklch(1 0 0);
  --card-foreground: oklch(0.14 0.02 260);

  --primary: oklch(0.16 0.03 260);
  --primary-foreground: oklch(0.98 0.01 90);

  --navy: oklch(0.22 0.05 260);
  --navy-deep: oklch(0.12 0.03 260);
  --gold: oklch(0.78 0.14 78);
  --gold-soft: oklch(0.88 0.09 82);
  --cream: oklch(0.97 0.02 85);

  --muted: oklch(0.96 0.008 90);
  --muted-foreground: oklch(0.45 0.02 260);

  --border: oklch(0.9 0.01 90);
  --input: oklch(0.92 0.01 90);
  --ring: oklch(0.78 0.14 78);

  --gradient-gold: linear-gradient(135deg, oklch(0.82 0.13 82), oklch(0.72 0.15 72));
  --gradient-dark: linear-gradient(160deg, oklch(0.18 0.04 260), oklch(0.10 0.02 260));

  --shadow-luxe: 0 30px 80px -20px oklch(0.12 0.03 260 / 0.55);
  --shadow-glow: 0 0 60px -10px oklch(0.75 0.14 78 / 0.45);

  --font-display: "Cormorant Garamond", ui-serif, Georgia, serif;
  --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;

  --container-7xl: 80rem;
  --container-6xl: 72rem;
  --container-5xl: 64rem;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; border-color: var(--border); }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
input, textarea { font: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: -0.01em;
  font-weight: 500;
  margin: 0;
}
p { margin: 0; }
.screen-reader-text {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(1px,1px,1px,1px); white-space: nowrap;
}

/* ---------- Layout helpers ---------- */
.container-7xl { max-width: var(--container-7xl); margin-left: auto; margin-right: auto; padding-left: 1.5rem; padding-right: 1.5rem; }
.container-6xl { max-width: var(--container-6xl); margin-left: auto; margin-right: auto; padding-left: 1.5rem; padding-right: 1.5rem; }
.container-5xl { max-width: var(--container-5xl); margin-left: auto; margin-right: auto; padding-left: 1.5rem; padding-right: 1.5rem; }
@media (min-width: 1024px) {
  .container-7xl, .container-6xl, .container-5xl { padding-left: 2.5rem; padding-right: 2.5rem; }
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}

.font-display { font-family: var(--font-display); }
.text-balance { text-wrap: balance; }

/* ---------- Buttons ---------- */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.75rem;
  border: none;
  border-radius: 9999px;
  background: var(--gradient-gold);
  color: oklch(0.15 0.02 260);
  font-weight: 500;
  letter-spacing: 0.04em;
  font-size: 0.85rem;
  text-transform: uppercase;
  box-shadow: 0 15px 40px -12px oklch(0.75 0.14 78 / 0.6);
  transition: transform .35s ease, box-shadow .35s ease, filter .35s ease;
}
.btn-gold:hover { transform: translateY(-2px); filter: brightness(1.05); box-shadow: 0 25px 55px -15px oklch(0.75 0.14 78 / 0.7); }
.btn-gold svg { width: 1rem; height: 1rem; }

.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.7rem;
  border: 1px solid oklch(1 0 0 / 0.35);
  border-radius: 9999px;
  background: oklch(1 0 0 / 0.06);
  color: oklch(0.98 0.01 90);
  font-weight: 500;
  letter-spacing: 0.04em;
  font-size: 0.85rem;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
  transition: background .3s ease, border-color .3s ease;
}
.btn-ghost-light:hover { background: oklch(1 0 0 / 0.14); border-color: oklch(1 0 0 / 0.6); }

.btn-icon {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  border: 1px solid oklch(1 0 0 / 0.25);
  background: oklch(1 0 0 / 0.05);
  color: oklch(1 0 0 / 0.9);
  backdrop-filter: blur(8px);
  transition: border-color .3s ease, color .3s ease;
}
.btn-icon:hover { border-color: var(--gold); color: var(--gold); }
.btn-icon svg { width: 1rem; height: 1rem; }

.link-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid var(--border);
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  transition: border-color .3s ease, color .3s ease;
}
.link-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ---------- Glass surfaces ---------- */
.glass-dark {
  background: linear-gradient(160deg, oklch(0.15 0.03 260 / 0.75), oklch(0.10 0.02 260 / 0.65));
  border: 1px solid oklch(0.78 0.14 78 / 0.25);
  backdrop-filter: blur(24px) saturate(140%);
  box-shadow: var(--shadow-luxe);
}
.glass-light {
  background: oklch(1 0 0 / 0.7);
  border: 1px solid oklch(1 0 0 / 0.6);
  backdrop-filter: blur(24px) saturate(140%);
  box-shadow: 0 30px 80px -30px oklch(0.14 0.02 260 / 0.25);
}
.hairline { height: 1px; background: linear-gradient(90deg, transparent, oklch(0.78 0.14 78 / 0.6), transparent); }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 50; transition: background-color .3s ease; }
.site-header.is-scrolled { background-color: oklch(0.12 0.03 260 / 0.85); backdrop-filter: blur(12px); }
.site-header--light.is-scrolled { background-color: oklch(1 0 0 / 0.9); }
.site-header__row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem;
}
@media (min-width: 1024px) { .site-header__row { padding-left: 2.5rem; padding-right: 2.5rem; } }
.site-header__row { max-width: var(--container-7xl); margin: 0 auto; }

.brand { display: flex; align-items: center; gap: 0.75rem; }
.brand__mark {
  display: grid; place-items: center; flex-shrink: 0;
  width: 2.5rem; height: 2.5rem; border-radius: 9999px;
  border: 1px solid oklch(0.78 0.14 78 / 0.5);
  background: var(--navy-deep); color: var(--gold);
}
.brand__mark span { font-family: var(--font-display); font-size: 1.125rem; line-height: 1; }
.brand__text { line-height: 1.2; }
.brand__title { font-family: var(--font-display); font-size: 1.125rem; letter-spacing: 0.02em; color: #fff; }
.brand__subtitle { font-size: 10px; letter-spacing: 0.35em; color: var(--gold); text-transform: uppercase; }
.site-header--light .brand__title { color: var(--foreground); }

.main-nav { display: none; align-items: center; gap: 2rem; }
@media (min-width: 1024px) { .main-nav { display: flex; } }
.main-nav a {
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.22em;
  color: oklch(1 0 0 / 0.85); transition: color .2s ease;
}
.main-nav a:hover { color: var(--gold); }

.header-actions { display: flex; align-items: center; gap: 0.75rem; }
.header-actions .btn-gold { display: none; }
@media (min-width: 640px) { .header-actions .btn-gold { display: inline-flex; } }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { position: relative; min-height: 100svh; width: 100%; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__overlay-1 { position: absolute; inset: 0; background: linear-gradient(to bottom, oklch(0.12 0.03 260 / 0.8), oklch(0.12 0.03 260 / 0.4) 55%, oklch(0.12 0.03 260 / 0.9)); }
.hero__overlay-2 { position: absolute; inset: 0; background: linear-gradient(to right, oklch(0.12 0.03 260 / 0.7), transparent 55%, transparent); }

.hero__grid {
  position: relative; margin: 0 auto; max-width: var(--container-7xl);
  min-height: 100svh; display: grid; grid-template-columns: 1fr;
  align-items: center; gap: 2.5rem; padding: 10rem 1.5rem 6rem;
}
@media (min-width: 1024px) { .hero__grid { grid-template-columns: repeat(12, 1fr); padding-left: 2.5rem; padding-right: 2.5rem; } }

.hero__content { color: #fff; }
@media (min-width: 1024px) { .hero__content { grid-column: span 7 / span 7; } }

.hero__title { margin-top: 1.5rem; font-size: 3rem; line-height: 1.02; text-wrap: balance; }
.hero__title em { font-style: italic; color: var(--gold-soft); }
@media (min-width: 640px) { .hero__title { font-size: 3.75rem; } }
@media (min-width: 1024px) { .hero__title { font-size: 4.5rem; } }

.hero__desc { margin-top: 1.5rem; max-width: 36rem; font-size: 1rem; line-height: 1.625; color: oklch(1 0 0 / 0.75); }

.hero__actions { margin-top: 2.5rem; display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; }

.hero__stats { margin-top: 4rem; display: grid; max-width: 32rem; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; color: oklch(1 0 0 / 0.7); }
.hero__stat-num { font-family: var(--font-display); font-size: 1.875rem; color: var(--gold-soft); }
.hero__stat-label { margin-top: 0.25rem; font-size: 11px; text-transform: uppercase; letter-spacing: 0.25em; }

.hero__aside { }
@media (min-width: 1024px) { .hero__aside { grid-column: span 5 / span 5; } }
.concierge-card { border-radius: 1.5rem; padding: 1.75rem; color: #fff; }
@media (min-width: 1024px) { .concierge-card { margin-left: auto; max-width: 28rem; } }
.concierge-card__badge { display: flex; align-items: center; gap: 0.5rem; color: var(--gold); }
.concierge-card__badge svg { width: 1rem; height: 1rem; }
.concierge-card__badge span { font-size: 10px; text-transform: uppercase; letter-spacing: 0.3em; }
.concierge-card__title { margin-top: 0.75rem; font-family: var(--font-display); font-size: 1.5rem; line-height: 1.25; }
.concierge-card__desc { margin-top: 0.5rem; font-size: 0.875rem; color: oklch(1 0 0 / 0.6); }

.concierge-form { margin-top: 1.5rem; display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
.field-span-2 { grid-column: span 2 / span 2; }
.input-dark, .textarea-dark {
  height: 3rem; border-radius: 0.75rem; border: 1px solid oklch(1 0 0 / 0.1);
  background: oklch(1 0 0 / 0.05); padding: 0 1rem; font-size: 0.875rem;
  color: #fff; outline: none; backdrop-filter: blur(8px);
  transition: border-color .2s ease; width: 100%;
}
.input-dark::placeholder, .textarea-dark::placeholder { color: oklch(1 0 0 / 0.4); }
.input-dark:focus, .textarea-dark:focus { border-color: var(--gold); }
.textarea-dark { height: auto; padding: 0.75rem 1rem; resize: vertical; }
.concierge-form .btn-gold { grid-column: span 2 / span 2; margin-top: 0.25rem; width: 100%; }

/* ==========================================================================
   Search section
   ========================================================================== */
.search-section { position: relative; margin-top: -5rem; padding: 0 1.5rem; }
@media (min-width: 1024px) { .search-section { padding-left: 2.5rem; padding-right: 2.5rem; } }
.search-card { max-width: 72rem; margin: 0 auto; border-radius: 1.5rem; padding: 1.5rem; }
@media (min-width: 640px) { .search-card { padding: 2rem; } }

.search-card__head { margin-bottom: 1.5rem; display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 0.75rem; }
.search-card__head h2 { margin-top: 0.5rem; font-size: 1.5rem; }
@media (min-width: 640px) { .search-card__head h2 { font-size: 1.875rem; } }
.search-card__note { font-size: 0.75rem; color: var(--muted-foreground); }

.search-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .search-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .search-grid { grid-template-columns: repeat(6, 1fr); } }
.search-field {
  display: flex; min-height: 3.5rem; align-items: center; gap: 0.75rem;
  border-radius: 1rem; border: 1px solid var(--border); background: var(--background);
  padding: 0.5rem 1rem; cursor: text; transition: border-color .2s ease;
}
.search-field:hover { border-color: var(--gold); }
.search-field--wide { grid-column: span 1; }
@media (min-width: 1024px) { .search-field--wide { grid-column: span 2 / span 2; } }
.search-field__icon { display: grid; place-items: center; flex-shrink: 0; width: 2.25rem; height: 2.25rem; border-radius: 9999px; background: var(--muted); color: var(--gold); }
.search-field__icon svg { width: 1rem; height: 1rem; }
.search-field__text { display: flex; min-width: 0; flex-direction: column; line-height: 1.2; }
.search-field__label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.24em; color: var(--muted-foreground); }
.search-field__value { font-size: 0.875rem; color: var(--foreground); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.search-grid .btn-gold { height: 100%; min-height: 3.5rem; width: 100%; }

.search-categories { margin-top: 1rem; display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem; font-size: 0.75rem; color: var(--muted-foreground); }
.search-categories__label { text-transform: uppercase; letter-spacing: 0.22em; }
.category-pill {
  border-radius: 9999px; border: 1px solid var(--border); background: oklch(0.99 0.005 90 / 0.7);
  padding: 0.25rem 0.75rem; text-transform: uppercase; letter-spacing: 0.05em;
  transition: border-color .2s ease, color .2s ease;
}
.category-pill:hover { border-color: var(--gold); color: var(--foreground); }

/* ==========================================================================
   Trust badges
   ========================================================================== */
.trust-section { margin: 7rem auto 0; max-width: var(--container-7xl); padding: 0 1.5rem; }
@media (min-width: 1024px) { .trust-section { padding-left: 2.5rem; padding-right: 2.5rem; } }
.trust-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
@media (min-width: 640px) { .trust-grid { grid-template-columns: repeat(4, 1fr); } }
.trust-card { border-radius: 1rem; border: 1px solid var(--border); background: var(--card); padding: 1.5rem; transition: border-color .2s ease; }
.trust-card:hover { border-color: var(--gold); }
.trust-card__icon { display: grid; place-items: center; width: 2.75rem; height: 2.75rem; border-radius: 9999px; background: var(--navy-deep); color: var(--gold); }
.trust-card__icon svg { width: 1.25rem; height: 1.25rem; }
.trust-card h3 { margin-top: 1.25rem; font-size: 1.125rem; }
.trust-card p { margin-top: 0.25rem; font-size: 0.875rem; color: var(--muted-foreground); }

/* ==========================================================================
   Section heading (reused)
   ========================================================================== */
.section-heading { margin: 8rem auto 3rem; max-width: var(--container-7xl); padding: 0 1.5rem; }
@media (min-width: 1024px) { .section-heading { padding-left: 2.5rem; padding-right: 2.5rem; } }
.section-heading__row { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1.5rem; }
.section-heading h2 { margin-top: 0.75rem; font-size: 2.25rem; line-height: 1.2; text-wrap: balance; }
@media (min-width: 640px) { .section-heading h2 { font-size: 3rem; } }
.section-heading .link-outline--plain {
  display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.72rem;
  text-transform: uppercase; letter-spacing: 0.24em; color: var(--muted-foreground); transition: color .2s ease;
  border: none; background: none; padding: 0;
}
.section-heading .link-outline--plain:hover { color: var(--gold); }
.section-heading .link-outline--plain svg { width: 0.875rem; height: 0.875rem; }

/* ==========================================================================
   Collections
   ========================================================================== */
.section-inset { max-width: var(--container-7xl); margin: 0 auto; padding: 0 1.5rem; }
@media (min-width: 1024px) { .section-inset { padding-left: 2.5rem; padding-right: 2.5rem; } }

.collections-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .collections-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .collections-grid { grid-template-columns: repeat(4, 1fr); } }
.collection-card { position: relative; display: block; height: 24rem; overflow: hidden; border-radius: 1.5rem; }
.collection-card img { height: 100%; width: 100%; object-fit: cover; transition: transform .7s ease; }
.collection-card:hover img { transform: scale(1.05); }
.collection-card__overlay { position: absolute; inset: 0; background: linear-gradient(to top, var(--navy-deep), oklch(0.12 0.03 260 / 0.2), transparent); }
.collection-card__body { position: absolute; inset-inline: 0; bottom: 0; padding: 1.5rem; color: #fff; }
.collection-card__count { font-size: 10px; text-transform: uppercase; letter-spacing: 0.3em; color: var(--gold); }
.collection-card__title { margin-top: 0.5rem; font-family: var(--font-display); font-size: 1.5rem; }
.collection-card__cta { margin-top: 1rem; display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.24em; color: oklch(1 0 0 / 0.85); transition: color .2s ease; }
.collection-card:hover .collection-card__cta { color: var(--gold); }
.collection-card__cta svg { width: 0.875rem; height: 0.875rem; }

/* ==========================================================================
   Featured hotels
   ========================================================================== */
.hotels-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 640px) { .hotels-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .hotels-grid { grid-template-columns: repeat(4, 1fr); } }
.hotel-card { overflow: hidden; border-radius: 1.5rem; border: 1px solid var(--border); background: var(--card); box-shadow: 0 1px 2px oklch(0 0 0 / 0.05); transition: transform .25s ease, box-shadow .25s ease; }
.hotel-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-luxe); }
.hotel-card__media { position: relative; height: 16rem; overflow: hidden; }
.hotel-card__media img { height: 100%; width: 100%; object-fit: cover; transition: transform .7s ease; }
.hotel-card:hover .hotel-card__media img { transform: scale(1.05); }
.hotel-card__tag { position: absolute; left: 1rem; top: 1rem; border-radius: 9999px; background: oklch(0.12 0.03 260 / 0.8); padding: 0.25rem 0.75rem; font-size: 10px; text-transform: uppercase; letter-spacing: 0.25em; color: var(--gold); backdrop-filter: blur(8px); }
.hotel-card__save { position: absolute; right: 1rem; top: 1rem; display: grid; place-items: center; width: 2.25rem; height: 2.25rem; border-radius: 9999px; background: oklch(1 0 0 / 0.9); color: var(--navy-deep); border: none; transition: background .2s ease; }
.hotel-card__save:hover { background: var(--gold); }
.hotel-card__save svg { width: 1rem; height: 1rem; }
.hotel-card__body { padding: 1.25rem; }
.hotel-card__rating { display: flex; align-items: center; gap: 0.25rem; font-size: 0.75rem; color: var(--gold); }
.hotel-card__rating svg { width: 0.875rem; height: 0.875rem; }
.hotel-card__rating strong { font-weight: 500; }
.hotel-card__rating span { margin-left: 0.25rem; color: var(--muted-foreground); }
.hotel-card__name { margin-top: 0.5rem; font-size: 1.25rem; }
.hotel-card__foot { margin-top: 1rem; display: flex; align-items: flex-end; justify-content: space-between; }
.hotel-card__price-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.24em; color: var(--muted-foreground); }
.hotel-card__price { font-family: var(--font-display); font-size: 1.5rem; }
.hotel-card__cta { display: inline-flex; align-items: center; gap: 0.25rem; border-radius: 9999px; border: 1px solid var(--border); padding: 0.5rem 1rem; font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.22em; transition: border-color .2s ease, color .2s ease; }
.hotel-card__cta:hover { border-color: var(--gold); color: var(--gold); }

/* ==========================================================================
   Destinations
   ========================================================================== */
.destinations-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 768px) { .destinations-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .destinations-grid { gap: 1.5rem; } }
.destination-card { position: relative; display: block; overflow: hidden; border-radius: 1.5rem; height: 18rem; }
@media (min-width: 1024px) { .destination-card { height: 248px; } }
.destination-card--tall { height: 24rem; }
@media (min-width: 1024px) { .destination-card--tall { grid-row: span 2 / span 2; height: 520px; } }
.destination-card img { height: 100%; width: 100%; object-fit: cover; transition: transform .7s ease; }
.destination-card:hover img { transform: scale(1.1); }
.destination-card__overlay { position: absolute; inset: 0; background: linear-gradient(to top, oklch(0.12 0.03 260 / 0.9), oklch(0.12 0.03 260 / 0.1), transparent); }
.destination-card__body { position: absolute; inset-inline: 0; bottom: 0; padding: 1.25rem; color: #fff; }
.destination-card__tag { font-size: 10px; text-transform: uppercase; letter-spacing: 0.3em; color: var(--gold); }
.destination-card__row { margin-top: 0.25rem; display: flex; align-items: center; justify-content: space-between; }
.destination-card__name { font-family: var(--font-display); font-size: 1.5rem; }
.destination-card__row svg { width: 1.25rem; height: 1.25rem; opacity: 0.8; transition: color .2s ease; }
.destination-card:hover .destination-card__row svg { color: var(--gold); }

/* ==========================================================================
   Guides / journal
   ========================================================================== */
.guides-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .guides-grid { grid-template-columns: repeat(3, 1fr); } }
.guide-card__media { position: relative; height: 18rem; overflow: hidden; border-radius: 1.5rem; }
.guide-card__media img { height: 100%; width: 100%; object-fit: cover; transition: transform .7s ease; }
.guide-card:hover .guide-card__media img { transform: scale(1.05); }
.guide-card__body { margin-top: 1.25rem; }
.guide-card__tag { font-size: 10px; text-transform: uppercase; letter-spacing: 0.3em; color: var(--gold); }
.guide-card__title { margin-top: 0.5rem; font-size: 1.25rem; line-height: 1.375; text-wrap: balance; }
.guide-card__cta { margin-top: 1rem; display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.24em; color: var(--foreground); transition: color .2s ease; }
.guide-card__cta:hover { color: var(--gold); }
.guide-card__cta svg { width: 0.875rem; height: 0.875rem; }

/* ==========================================================================
   Why section
   ========================================================================== */
.why-section { margin: 8rem auto 0; max-width: var(--container-7xl); padding: 0 1.5rem; }
@media (min-width: 1024px) { .why-section { padding-left: 2.5rem; padding-right: 2.5rem; } }
.why-panel { position: relative; overflow: hidden; border-radius: 1.5rem; background: var(--navy-deep); padding: 2.5rem; color: #fff; }
@media (min-width: 1024px) { .why-panel { padding: 4rem; } }
.why-panel__glow { position: absolute; right: -6rem; top: -6rem; height: 18rem; width: 18rem; border-radius: 9999px; background: oklch(0.78 0.14 78 / 0.2); filter: blur(64px); }
.why-panel__grid { position: relative; display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 1024px) { .why-panel__grid { grid-template-columns: repeat(2, 1fr); } }
.why-panel h2 { margin-top: 1rem; font-size: 2.25rem; line-height: 1.2; }
@media (min-width: 640px) { .why-panel h2 { font-size: 3rem; } }
.why-panel p { margin-top: 1.25rem; max-width: 28rem; color: oklch(1 0 0 / 0.7); }
.why-panel .btn-gold { margin-top: 2rem; }
.why-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
.why-item { border-radius: 1rem; border: 1px solid oklch(1 0 0 / 0.1); background: oklch(1 0 0 / 0.05); padding: 1.25rem; backdrop-filter: blur(8px); }
.why-item__icon { display: grid; place-items: center; width: 2.25rem; height: 2.25rem; border-radius: 9999px; border: 1px solid oklch(0.78 0.14 78 / 0.4); color: var(--gold); }
.why-item__icon svg { width: 1rem; height: 1rem; }
.why-item__label { margin-top: 1rem; font-family: var(--font-display); font-size: 1.125rem; }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial-card { border-radius: 1.5rem; padding: 1.75rem; }
.testimonial-card__stars { display: flex; gap: 0.25rem; color: var(--gold); }
.testimonial-card__stars svg { width: 1rem; height: 1rem; }
.testimonial-card blockquote { margin: 1.25rem 0 0; font-family: var(--font-display); font-size: 1.125rem; line-height: 1.625; color: var(--foreground); }
.testimonial-card__author { margin-top: 1.5rem; display: flex; align-items: center; gap: 0.75rem; border-top: 1px solid var(--border); padding-top: 1.25rem; }
.testimonial-card__avatar { display: grid; place-items: center; flex-shrink: 0; width: 2.75rem; height: 2.75rem; border-radius: 9999px; background: var(--navy-deep); font-family: var(--font-display); color: var(--gold); }
.testimonial-card__name { font-weight: 500; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.testimonial-card__country { font-size: 0.75rem; color: var(--muted-foreground); }

/* ==========================================================================
   Newsletter
   ========================================================================== */
.newsletter-section { margin: 0 auto; max-width: 64rem; padding: 0 1.5rem; }
@media (min-width: 1024px) { .newsletter-section { padding-left: 2.5rem; padding-right: 2.5rem; } }
.newsletter-card { position: relative; overflow: hidden; border-radius: 1.5rem; border: 1px solid oklch(0.78 0.14 78 / 0.3); background: var(--navy-deep); padding: 2.5rem; text-align: center; color: #fff; }
@media (min-width: 1024px) { .newsletter-card { padding: 4rem; } }
.newsletter-card__glow { position: absolute; inset: 0; opacity: 0.4; background: radial-gradient(600px at 50% 0%, oklch(0.78 0.14 78 / 0.35), transparent 70%); }
.newsletter-card__inner { position: relative; }
.newsletter-card h2 { margin-top: 1rem; font-size: 2.25rem; line-height: 1.2; }
@media (min-width: 640px) { .newsletter-card h2 { font-size: 3rem; } }
.newsletter-card p { margin: 1rem auto 0; max-width: 36rem; color: oklch(1 0 0 / 0.7); }
.newsletter-form { margin: 2rem auto 0; display: flex; max-width: 32rem; flex-direction: column; gap: 0.75rem; }
@media (min-width: 640px) { .newsletter-form { flex-direction: row; } }
.newsletter-form input {
  height: 3.5rem; flex: 1 1 0%; border-radius: 9999px; border: 1px solid oklch(1 0 0 / 0.15);
  background: oklch(1 0 0 / 0.05); padding: 0 1.5rem; font-size: 0.875rem; color: #fff;
  outline: none; backdrop-filter: blur(8px); transition: border-color .2s ease;
}
.newsletter-form input::placeholder { color: oklch(1 0 0 / 0.4); }
.newsletter-form input:focus { border-color: var(--gold); }
.newsletter-form .btn-gold { height: 3.5rem; }
@media (min-width: 640px) { .newsletter-form .btn-gold { width: auto; } }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { margin-top: 8rem; background: var(--navy-deep); color: oklch(1 0 0 / 0.7); }
.site-footer .brand__title { color: #fff; }
.footer-inner { max-width: var(--container-7xl); margin: 0 auto; padding: 4rem 1.5rem; }
@media (min-width: 1024px) { .footer-inner { padding-left: 2.5rem; padding-right: 2.5rem; } }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(5, 1fr); } }
.footer-about { }
@media (min-width: 1024px) { .footer-about { grid-column: span 2 / span 2; } }
.footer-about p { margin-top: 1.25rem; max-width: 24rem; font-size: 0.875rem; color: oklch(1 0 0 / 0.6); }
.footer-social { margin-top: 1.5rem; display: flex; gap: 0.75rem; }
.footer-social a { display: grid; place-items: center; width: 2.5rem; height: 2.5rem; border-radius: 9999px; border: 1px solid oklch(1 0 0 / 0.15); color: oklch(1 0 0 / 0.7); transition: border-color .2s ease, color .2s ease; }
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-social svg { width: 1rem; height: 1rem; }

.footer-col h4 { font-family: var(--font-display); font-size: 1.125rem; color: #fff; }
.footer-col ul { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.875rem; }
.footer-col a { transition: color .2s ease; }
.footer-col a:hover { color: var(--gold); }

.footer-bottom { margin-top: 3.5rem; border-top: 1px solid oklch(1 0 0 / 0.1); padding-top: 1.5rem; }
.footer-bottom__row { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; font-size: 0.75rem; color: oklch(1 0 0 / 0.5); }
.payment-badges { display: flex; align-items: center; gap: 0.75rem; }
.payment-badges span { border-radius: 0.375rem; border: 1px solid oklch(1 0 0 / 0.15); padding: 0.25rem 0.75rem; font-size: 10px; letter-spacing: 0.1em; color: oklch(1 0 0 / 0.7); }

/* ==========================================================================
   Generic content pages (page.php / single.php / archive.php / 404.php)
   ========================================================================== */
.page-hero { position: relative; padding: 11rem 1.5rem 4rem; background: var(--navy-deep); color: #fff; text-align: center; }
@media (min-width: 1024px) { .page-hero { padding-left: 2.5rem; padding-right: 2.5rem; } }
.page-hero h1 { margin-top: 0.75rem; font-size: 2.5rem; }
@media (min-width: 640px) { .page-hero h1 { font-size: 3.25rem; } }

.content-wrap { max-width: 48rem; margin: 4rem auto 8rem; padding: 0 1.5rem; }
.content-wrap .entry-content { font-size: 1rem; line-height: 1.75; color: var(--foreground); }
.content-wrap .entry-content h2 { margin-top: 2.5rem; font-size: 1.875rem; }
.content-wrap .entry-content h3 { margin-top: 2rem; font-size: 1.5rem; }
.content-wrap .entry-content p { margin-top: 1.25rem; }
.content-wrap .entry-content a { color: var(--navy); text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: 3px; }
.content-wrap .entry-content ul, .content-wrap .entry-content ol { margin-top: 1.25rem; padding-left: 1.5rem; }
.content-wrap .entry-content img { border-radius: 1rem; margin-top: 1.5rem; }
.content-wrap .entry-meta { margin-bottom: 1rem; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--muted-foreground); }

.archive-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; max-width: var(--container-7xl); margin: 4rem auto 8rem; padding: 0 1.5rem; }
@media (min-width: 768px) { .archive-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .archive-grid { grid-template-columns: repeat(3, 1fr); padding-left: 2.5rem; padding-right: 2.5rem; } }
.archive-card { border-radius: 1.5rem; border: 1px solid var(--border); background: var(--card); overflow: hidden; transition: transform .25s ease, box-shadow .25s ease; }
.archive-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-luxe); }
.archive-card__media { height: 14rem; overflow: hidden; }
.archive-card__media img { width: 100%; height: 100%; object-fit: cover; }
.archive-card__body { padding: 1.5rem; }
.archive-card__date { font-size: 10px; text-transform: uppercase; letter-spacing: 0.24em; color: var(--gold); }
.archive-card__title { margin-top: 0.5rem; font-size: 1.25rem; }
.archive-card__excerpt { margin-top: 0.5rem; font-size: 0.875rem; color: var(--muted-foreground); }

.pagination-nav { max-width: var(--container-7xl); margin: -3rem auto 6rem; padding: 0 1.5rem; display: flex; gap: 0.75rem; justify-content: center; }
.pagination-nav a, .pagination-nav span { border: 1px solid var(--border); border-radius: 9999px; padding: 0.5rem 1.1rem; font-size: 0.8rem; transition: border-color .2s ease, color .2s ease; }
.pagination-nav a:hover { border-color: var(--gold); color: var(--gold); }

.error-404 { min-height: 70vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 10rem 1.5rem 6rem; }
.error-404__code { font-family: var(--font-display); font-size: 6rem; color: var(--gold-soft); line-height: 1; }
.error-404 h1 { margin-top: 1rem; font-size: 2rem; }
.error-404 p { margin-top: 0.75rem; max-width: 32rem; color: var(--muted-foreground); }
.error-404 .btn-gold { margin-top: 2rem; }

/* ==========================================================================
   Comments
   ========================================================================== */
.comments-area { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.comments-title { font-size: 1.5rem; }
.comment-list { margin-top: 1.5rem; }
.comment-list, .comment-list .children { list-style: none; margin: 0; padding: 0; }
.comment-list .children { margin-left: 2rem; }
.comment-body { padding: 1.25rem 0; border-bottom: 1px solid var(--border); }
.comment-author.vcard { display: flex; align-items: center; gap: 0.75rem; font-weight: 500; }
.comment-author .avatar { border-radius: 9999px; }
.comment-meta { font-size: 0.75rem; color: var(--muted-foreground); margin-top: 0.25rem; }
.comment-content p { margin-top: 0.75rem; line-height: 1.7; }
.reply { margin-top: 0.5rem; }
.reply a { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--gold); }
.comment-form label { display: block; font-size: 0.8rem; margin-top: 1rem; margin-bottom: 0.35rem; }
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  width: 100%; border: 1px solid var(--border); border-radius: 0.75rem;
  padding: 0.75rem 1rem; font-size: 0.9rem; outline: none; transition: border-color .2s ease;
}
.comment-form input:focus, .comment-form textarea:focus { border-color: var(--gold); }
.comment-form .form-submit { margin-top: 1.5rem; }
.comment-reply-title { font-size: 1.25rem; margin-top: 2rem; }

/* ==========================================================================
   Elementor handoff
   ========================================================================== */
/* Unconstrained wrapper used by page.php / front-page.php / index.php when
   handing rendering over to Elementor (edit mode, preview, or a page built
   with Elementor) so Elementor's own full-width sections are not clipped by
   the theme's narrower default content width. */
.elementor-page-content { max-width: none; margin: 0; padding: 0; }

/* WordPress core alignment helpers */
.alignwide { max-width: var(--container-7xl); margin-left: auto; margin-right: auto; }
.alignfull { width: 100%; max-width: none; }
.wp-caption, .wp-block-image { max-width: 100%; }
