/*!
 * Theme Name:  Morocco Tour Studio
 * Theme URI:   https://moroccotourstudio.com
 * Author:      Serkan Eser
 * Author URI:  https://serkaneser.com
 * Description: Custom WordPress theme for Morocco Tour Studio — a premium luxury travel brand crafting refined desert and imperial city experiences.
 * Version:     1.0
 * License:     GNU General Public License v2 or later
 * License URI: https://www.gnu.org/licenses/gpl-2.0.html
 * Text Domain: morocco-tour-studio
 * Tags:        custom-theme, travel, luxury, editorial
 */


/* =============================================================================
   TABLE OF CONTENTS
   01. Design Tokens / CSS Variables
   02. Global Reset & Base
   03. Typography
   04. Links & Buttons
   05. Forms & Inputs
   06. Layout Utilities
   07. Theme Structure
   08. Hero Starter
   09. Responsive (Tablet & Mobile)
   ============================================================================= */


/* =============================================================================
   01. DESIGN TOKENS / CSS VARIABLES
   ============================================================================= */

:root {

  /* --- Color Palette --- */
  /* Warm neutrals rooted in sand, stone, and aged plaster */
  --color-sand:         #F5EFE6;     /* Page background — warm off-white     */
  --color-parchment:    #EDE4D6;     /* Subtle section tints                  */
  --color-stone:        #C8B9A4;     /* Borders, dividers                     */
  --color-clay:         #9C7E65;     /* Muted warm mid-tone                   */
  --color-terra:        #B05C34;     /* Primary accent — terracotta           */
  --color-terra-dark:   #8A4526;     /* Hover / active state on terra         */
  --color-ink:          #1E1A17;     /* Body text — near-black, warm-tinted   */
  --color-ink-muted:    #5A504A;     /* Secondary text, captions              */
  --color-gold:         #C49A3C;     /* Luxury highlight — gilt               */
  --color-white:        #FFFFFF;
  --color-black:        #0D0B09;

  /* Functional Semantic Aliases */
  --color-bg:           var(--color-sand);
  --color-bg-alt:       var(--color-parchment);
  --color-text:         var(--color-ink);
  --color-text-muted:   var(--color-ink-muted);
  --color-border:       var(--color-stone);
  --color-accent:       var(--color-terra);
  --color-accent-hover: var(--color-terra-dark);
  --color-highlight:    var(--color-gold);

  /* --- Spacing Scale --- */
  /* Based on a 8px base unit, scaled intentionally for luxury breathing room */
  --space-2xs:   4px;
  --space-xs:    8px;
  --space-sm:    12px;
  --space-md:    20px;
  --space-lg:    32px;
  --space-xl:    48px;
  --space-2xl:   72px;
  --space-3xl:  104px;
  --space-4xl:  144px;

  /* Section vertical rhythm */
  --section-gap:         var(--space-3xl);
  --section-gap-tight:   var(--space-2xl);
  --section-gap-spacious:var(--space-4xl);

  /* --- Container Widths --- */
  --container-max:      1320px;   /* Standard content width                  */
  --container-narrow:    760px;   /* Editorial / prose-focused content       */
  --container-wide:     1520px;   /* Full-bleed constrained grid             */
  --container-padding-x: var(--space-xl); /* Inline gutter on all containers */

  /* --- Typography --- */
  /* Display: Cormorant Garamond — editorial, warm, authoritative             */
  /* Body: DM Sans — clean, modern, approachable                              */
  --font-display:    'Cormorant Garamond', 'Georgia', serif;
  --font-body:       'DM Sans', 'Helvetica Neue', sans-serif;
  --font-mono:       'Courier New', 'Courier', monospace;

  /* Fluid type scale — editorial proportions */
  --text-xs:     0.75rem;    /*  12px */
  --text-sm:     0.875rem;   /*  14px */
  --text-base:   1rem;       /*  16px */
  --text-md:     1.125rem;   /*  18px */
  --text-lg:     1.25rem;    /*  20px */
  --text-xl:     1.5rem;     /*  24px */
  --text-2xl:    2rem;       /*  32px */
  --text-3xl:    2.75rem;    /*  44px */
  --text-4xl:    3.75rem;    /*  60px */
  --text-5xl:    5rem;       /*  80px */

  /* Line heights */
  --leading-tight:   1.15;
  --leading-snug:    1.35;
  --leading-normal:  1.6;
  --leading-relaxed: 1.8;

  /* Letter spacing */
  --tracking-tight:  -0.02em;
  --tracking-normal:  0em;
  --tracking-wide:    0.06em;
  --tracking-widest:  0.14em;

  /* Font weights */
  --weight-light:    300;
  --weight-regular:  400;
  --weight-medium:   500;
  --weight-semibold: 600;

  /* --- Border Radius --- */
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   16px;
  --radius-pill: 9999px;
  --radius-none: 0;

  /* --- Transitions --- */
  --transition-base:   all 0.28s ease;
  --transition-slow:   all 0.5s ease;
  --transition-color:  color 0.22s ease, background-color 0.22s ease, border-color 0.22s ease;

  /* --- Shadows --- */
  --shadow-sm:  0 1px 4px rgba(30, 26, 23, 0.08);
  --shadow-md:  0 4px 20px rgba(30, 26, 23, 0.10);
  --shadow-lg:  0 12px 48px rgba(30, 26, 23, 0.14);

  /* --- Z-Index Scale --- */
  --z-below:   -1;
  --z-base:     0;
  --z-raised:   10;
  --z-overlay:  100;
  --z-modal:    200;
  --z-toast:    300;
}


/* =============================================================================
   02. GLOBAL RESET & BASE
   ============================================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  hanging-punctuation: first last;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--weight-regular);
  line-height: var(--leading-normal);
  letter-spacing: var(--tracking-normal);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}

/* Images */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Embed iframes */
iframe {
  border: 0;
}

/* Lists — reset for layout use; re-style contextually */
ul,
ol {
  list-style: none;
}

/* Tables */
table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}


/* =============================================================================
   03. TYPOGRAPHY
   ============================================================================= */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: var(--weight-light);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  color: var(--color-text);
}

h1 { font-size: var(--text-4xl); }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl);  }
h5 { font-size: var(--text-lg);  }
h6 { font-size: var(--text-md);  }

p {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--color-text);
  max-width: 68ch; /* Comfortable reading measure */
}

p + p {
  margin-top: var(--space-md);
}

small {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

strong,
b {
  font-weight: var(--weight-semibold);
}

em,
i {
  font-style: italic;
}

blockquote {
  border-left: 3px solid var(--color-highlight);
  padding-left: var(--space-lg);
  margin: var(--space-xl) 0;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-style: italic;
  color: var(--color-ink-muted);
  line-height: var(--leading-snug);
}

hr {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: var(--space-xl) 0;
}

/* Label / overline style — utility */
.label-overline {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--color-clay);
}


/* =============================================================================
   04. LINKS & BUTTONS
   ============================================================================= */

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: var(--transition-color);
}

a:hover,
a:focus-visible {
  color: var(--color-accent-hover);
  text-decoration: underline;
  text-underline-offset: 3px;
}

a:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* Base button reset — use modifier classes for visual styles */
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
}

button:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* Primary CTA Button */
.btn-primary {
  background-color: var(--color-accent);
  color: var(--color-white);
  padding: var(--space-sm) var(--space-xl);
  border-radius: var(--radius-sm);
}

.btn-primary:hover {
  background-color: var(--color-accent-hover);
  color: var(--color-white);
  text-decoration: none;
}

/* Ghost / Outline Button */
.btn-ghost {
  background-color: transparent;
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
  padding: var(--space-sm) var(--space-xl);
  border-radius: var(--radius-sm);
}

.btn-ghost:hover {
  background-color: var(--color-accent);
  color: var(--color-white);
  text-decoration: none;
}


/* =============================================================================
   05. FORMS & INPUTS
   ============================================================================= */

input,
textarea,
select {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: var(--space-sm) var(--space-md);
  width: 100%;
  transition: var(--transition-color);
  appearance: none;
  -webkit-appearance: none;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(176, 92, 52, 0.15);
}

input::placeholder,
textarea::placeholder {
  color: var(--color-stone);
}

label {
  display: block;
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-ink-muted);
  margin-bottom: var(--space-2xs);
}

textarea {
  resize: vertical;
  min-height: 140px;
}


/* =============================================================================
   06. LAYOUT UTILITIES
   ============================================================================= */

/* --- Site Containers --- */

.site-container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-padding-x);
}

.site-container--narrow {
  width: 100%;
  max-width: var(--container-narrow);
  margin-inline: auto;
  padding-inline: var(--container-padding-x);
}

.site-container--wide {
  width: 100%;
  max-width: var(--container-wide);
  margin-inline: auto;
  padding-inline: var(--container-padding-x);
}

/* --- Sections --- */

.section {
  padding-block: var(--section-gap);
}

.section--tight {
  padding-block: var(--section-gap-tight);
}

.section--spacious {
  padding-block: var(--section-gap-spacious);
}

/* Section background variants */
.section--alt {
  background-color: var(--color-bg-alt);
}

.section--dark {
  background-color: var(--color-ink);
  color: var(--color-sand);
}

.section--dark p,
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4,
.section--dark h5,
.section--dark h6 {
  color: var(--color-sand);
}


/* =============================================================================
   07. THEME STRUCTURE
   ============================================================================= */

/* --- Site Header --- */

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-overlay);
  background-color: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  height: 76px;
  padding-inline: var(--container-padding-x);
  max-width: var(--container-max);
  margin-inline: auto;
}

/* --- Site Branding --- */

.site-branding {
  flex-shrink: 0;
}

.site-branding a {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
  color: var(--color-text);
}

.site-branding a:hover {
  text-decoration: none;
  color: var(--color-accent);
}

.site-branding__logo {
  height: 36px;
  width: auto;
}

.site-branding__name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: var(--weight-light);
  letter-spacing: var(--tracking-wide);
  line-height: 1;
}

/* --- Site Main --- */

.site-main {
  flex: 1 0 auto;
  min-height: 60vh;
}

/* --- Site Footer --- */

.site-footer {
  background-color: var(--color-ink);
  color: var(--color-sand);
  padding-block: var(--space-3xl) var(--space-xl);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-xl);
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-padding-x);
}

.site-footer a {
  color: var(--color-stone);
  font-size: var(--text-sm);
  transition: var(--transition-color);
}

.site-footer a:hover {
  color: var(--color-highlight);
  text-decoration: none;
}

.site-footer__bottom {
  border-top: 1px solid rgba(200, 185, 164, 0.2);
  margin-top: var(--space-2xl);
  padding-top: var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-padding-x);
}

.site-footer__copyright {
  font-size: var(--text-xs);
  color: var(--color-clay);
  letter-spacing: var(--tracking-wide);
}


/* =============================================================================
   08. HERO STARTER
   ============================================================================= */

.hero-simple {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: calc(100vh - 76px);
  padding-block: var(--space-4xl);
  padding-inline: var(--container-padding-x);
  background-color: var(--color-bg);
  overflow: hidden;
}

/* Optional: decorative background tint support via custom property */
.hero-simple[data-bg]::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--hero-bg-image, none);
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  z-index: var(--z-below);
}

.hero-simple h1 {
  font-family: var(--font-display);
  font-size: clamp(var(--text-3xl), 6vw, var(--text-5xl));
  font-weight: var(--weight-light);
  letter-spacing: var(--tracking-tight);
  line-height: var(--leading-tight);
  color: var(--color-text);
  max-width: 16ch;
  margin-inline: auto;
  margin-bottom: var(--space-lg);
}

.hero-simple p {
  font-size: clamp(var(--text-base), 1.5vw, var(--text-md));
  color: var(--color-text-muted);
  line-height: var(--leading-relaxed);
  max-width: 52ch;
  margin-inline: auto;
  margin-bottom: var(--space-xl);
}

.hero-simple__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}


/* =============================================================================
   09. RESPONSIVE — TABLET & MOBILE
   ============================================================================= */

/* --- Tablet: up to 1024px --- */
@media (max-width: 1024px) {

  :root {
    --container-padding-x: var(--space-lg);
    --section-gap:          var(--space-2xl);
    --section-gap-spacious: var(--space-3xl);
  }

  h1 { font-size: var(--text-3xl); }
  h2 { font-size: var(--text-2xl); }
  h3 { font-size: var(--text-xl);  }

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

/* --- Mobile: up to 767px --- */
@media (max-width: 767px) {

  :root {
    --container-padding-x: var(--space-md);
    --section-gap:          var(--space-xl);
    --section-gap-tight:    var(--space-lg);
    --section-gap-spacious: var(--space-2xl);
  }

  h1 { font-size: var(--text-2xl); }
  h2 { font-size: var(--text-xl);  }
  h3 { font-size: var(--text-lg);  }

  .site-header__inner {
    height: 62px;
  }

  .hero-simple {
    min-height: calc(100vh - 62px);
    padding-block: var(--space-3xl);
  }

  .hero-simple h1 {
    font-size: var(--text-2xl);
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
  }

  p {
    max-width: 100%;
  }
}

/* --- Small Mobile: up to 479px --- */
@media (max-width: 479px) {

  :root {
    --container-padding-x: var(--space-md);
  }

  .btn-primary,
  .btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .hero-simple__actions {
    flex-direction: column;
    width: 100%;
  }
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* =============================================================================
   10. FRONT PAGE SECTIONS
   ============================================================================= */

.hero__inner {
  max-width: 900px;
}

.hero__title {
  margin-bottom: var(--space-lg);
}

.hero__lead {
  margin-bottom: var(--space-xl);
}

.section-header {
  margin-bottom: var(--space-2xl);
  max-width: 760px;
}

.section-header__title {
  margin: var(--space-sm) 0 var(--space-md);
}

.section-header__subtitle {
  color: var(--color-text-muted);
}

.intro__title,
.cta__title {
  margin: var(--space-sm) 0 var(--space-lg);
}

.intro__text,
.cta__text {
  color: var(--color-text-muted);
}

.intro__link,
.journey-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: var(--space-md);
  font-weight: var(--weight-medium);
  text-decoration: none;
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-lg);
}

.journey-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
}

.journey-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.journey-card__image-wrap {
  aspect-ratio: 4 / 3;
  background: var(--color-parchment);
}

.journey-card__image-placeholder {
  width: 100%;
  height: 100%;
  background:
    linear-gradient(135deg, rgba(176, 92, 52, 0.10), rgba(196, 154, 60, 0.10));
}

.journey-card__body {
  padding: var(--space-lg);
}

.journey-card__title {
  margin: var(--space-sm) 0 var(--space-md);
}

.journey-card__excerpt {
  color: var(--color-text-muted);
}

.journeys__footer {
  margin-top: var(--space-xl);
  display: flex;
  justify-content: center;
}

.why-us__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-lg);
}

.why-us__item {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
}

.why-us__icon {
  margin-bottom: var(--space-md);
  color: var(--color-accent);
  font-size: var(--text-lg);
}

.why-us__title {
  margin-bottom: var(--space-sm);
}

.why-us__text {
  color: var(--color-text-muted);
}

.cta__inner {
  text-align: center;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-sm);
}

.cta__inner .btn-primary {
  margin-top: var(--space-md);
}

@media (max-width: 1024px) {
  .journey-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .journey-grid,
  .why-us__grid {
    grid-template-columns: 1fr;
  }

  .cta__inner {
    padding: var(--space-xl);
  }
}
/* =============================================================================
   11. HEADER
   ============================================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-overlay);
  background-color: rgba(245, 239, 230, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
}

.site-header__inner {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-padding-x);
  min-height: 84px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--space-lg);
}

.site-branding {
  display: flex;
  align-items: center;
}

.site-branding__name,
.site-branding a {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: var(--weight-light);
  letter-spacing: 0.04em;
  color: var(--color-text);
  text-decoration: none;
}

.site-branding a:hover {
  text-decoration: none;
  color: var(--color-accent);
}

.site-nav {
  display: flex;
  justify-content: center;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav__list a {
  color: var(--color-text);
  text-decoration: none;
  font-size: var(--text-sm);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}

.site-nav__list a:hover {
  color: var(--color-accent);
  text-decoration: none;
}

.site-header__actions {
  display: flex;
  justify-content: flex-end;
}

.site-header__menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
}

.site-header__menu-toggle-icon,
.site-header__menu-toggle-icon::before,
.site-header__menu-toggle-icon::after {
  display: block;
  width: 20px;
  height: 1.5px;
  background-color: var(--color-text);
  position: relative;
  transition: var(--transition-base);
}

.site-header__menu-toggle-icon::before,
.site-header__menu-toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.site-header__menu-toggle-icon::before {
  top: -6px;
}

.site-header__menu-toggle-icon::after {
  top: 6px;
}

@media (max-width: 1024px) {
  .site-header__inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .site-nav,
  .site-header__actions {
    display: none;
  }

  .site-header__menu-toggle {
    display: inline-flex;
  }
}
/* =============================================================================
   12. HEADER LAYOUT OVERRIDE
   ============================================================================= */

.site-header {
  position: sticky !important;
  top: 0;
  z-index: 1000;
  background: rgba(245, 239, 230, 0.96) !important;
  border-bottom: 1px solid var(--color-border);
  backdrop-filter: blur(10px);
}

.site-header__inner {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding-x);
  min-height: 84px;
  display: grid !important;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: var(--space-lg);
}

.site-branding {
  display: flex;
  align-items: center;
}

.site-nav {
  display: flex !important;
  justify-content: center;
  min-width: 0;
}

.site-nav .site-nav__list,
.site-nav ul.menu,
.site-nav ul {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  justify-content: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav .site-nav__list li,
.site-nav ul.menu li,
.site-nav ul li {
  display: block;
  margin: 0;
  padding: 0;
}

.site-nav .site-nav__list a,
.site-nav ul.menu a,
.site-nav ul a {
  display: inline-block;
  color: var(--color-text);
  text-decoration: none;
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-nav .site-nav__list a:hover,
.site-nav ul.menu a:hover,
.site-nav ul a:hover {
  color: var(--color-accent);
  text-decoration: none;
}

.site-header__actions {
  display: flex !important;
  align-items: center;
  justify-content: flex-end;
}

.site-header__menu-toggle {
  display: none;
}

@media (max-width: 1024px) {
  .site-header__inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .site-nav,
  .site-header__actions {
    display: none !important;
  }

  .site-header__menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: transparent;
    border: 0;
    padding: 0;
  }
}
/* =============================================================================
   13. FORCE HEADER MENU LAYOUT
   ============================================================================= */

.site-header .site-header__inner {
  display: grid !important;
  grid-template-columns: auto 1fr auto !important;
  align-items: center !important;
  gap: 32px !important;
  min-height: 84px !important;
}

.site-header .site-nav {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 100% !important;
}

.site-header .site-nav > ul,
.site-header .site-nav .site-nav__list,
.site-header .site-nav ul.menu,
.site-header .site-nav .menu {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 28px !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  width: auto !important;
}

.site-header .site-nav > ul > li,
.site-header .site-nav .site-nav__list > li,
.site-header .site-nav ul.menu > li,
.site-header .site-nav .menu > li {
  display: inline-flex !important;
  align-items: center !important;
  margin: 0 !important;
  padding: 0 !important;
  width: auto !important;
}

.site-header .site-nav > ul > li > a,
.site-header .site-nav .site-nav__list > li > a,
.site-header .site-nav ul.menu > li > a,
.site-header .site-nav .menu > li > a {
  display: inline-block !important;
  white-space: nowrap !important;
  text-decoration: none !important;
  color: var(--color-text) !important;
  font-size: var(--text-sm) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  line-height: 1 !important;
}

.site-header .site-nav > ul > li > a:hover,
.site-header .site-nav .site-nav__list > li > a:hover,
.site-header .site-nav ul.menu > li > a:hover,
.site-header .site-nav .menu > li > a:hover {
  color: var(--color-accent) !important;
}

.site-header .site-header__actions {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
}

.site-header .site-header__menu-toggle {
  display: none !important;
}

@media (max-width: 1024px) {
  .site-header .site-header__inner {
    grid-template-columns: auto auto !important;
  }

  .site-header .site-nav,
  .site-header .site-header__actions {
    display: none !important;
  }

  .site-header .site-header__menu-toggle {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
}
.journey-card__image-link {
  display: block;
  width: 100%;
  height: 100%;
}

.journey-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.journey-card__title a {
  color: inherit;
  text-decoration: none;
}

.journey-card__title a:hover {
  color: var(--color-accent);
  text-decoration: none;
}

.journeys__empty {
  padding: var(--space-xl);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}
/* =============================================================================
   14. HERO VIDEO
   ============================================================================= */

.hero--video {
  position: relative;
  overflow: hidden;
  min-height: 88vh;
  display: flex;
  align-items: center;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(20, 16, 12, 0.52), rgba(20, 16, 12, 0.20)),
    linear-gradient(to top, rgba(20, 16, 12, 0.26), rgba(20, 16, 12, 0.08));
}

.hero--video .site-container {
  position: relative;
  z-index: 1;
}

.hero--video .hero__inner {
  max-width: 760px;
}

.hero--video .label-overline,
.hero--video .hero__title,
.hero--video .hero__lead {
  color: #fff;
}

.hero--video .btn-ghost {
  border-color: #fff;
  color: #fff;
}

.hero--video .btn-ghost:hover {
  background: #fff;
  color: var(--color-text);
}

@media (max-width: 767px) {
  .hero--video {
    min-height: 72vh;
  }
}
/* =============================================================================
   15. HERO TYPOGRAPHY REFINEMENT
   ============================================================================= */

.hero--video .hero__inner {
  max-width: 720px;
  padding-top: 40px;
  text-align: left;
}

.hero--video .hero__eyebrow {
  margin: 0 0 8px;
  font-size: clamp(1rem, 1.4vw, 1.35rem);
  line-height: 1.3;
  color: rgba(255, 244, 220, 0.92);
  letter-spacing: 0.01em;
}

.hero--video .hero__kicker {
  margin: 0 0 4px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
  color: #fff;
}

.hero--video .hero__title--display {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 10vw, 8.5rem);
  line-height: 0.88;
  letter-spacing: 0.01em;
  color: #d4a63d;
  text-shadow:
    0 1px 0 rgba(0, 0, 0, 0.18),
    2px 2px 0 rgba(56, 32, 12, 0.55);
}

.hero--video .hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 10px;
}

.hero--video .btn-primary,
.hero--video .btn-ghost {
  min-width: 220px;
  justify-content: center;
}

@media (max-width: 767px) {
  .hero--video .hero__inner {
    max-width: 100%;
    padding-top: 20px;
  }

  .hero--video .hero__title--display {
    margin-bottom: 16px;
    line-height: 0.92;
  }

  .hero--video .hero__actions {
    gap: 14px;
  }

  .hero--video .btn-primary,
  .hero--video .btn-ghost {
    min-width: 0;
    width: 100%;
  }
}
/* =============================================================================
   16. FOOTER
   ============================================================================= */

.site-footer {
  background: #151311;
  color: rgba(255, 255, 255, 0.78);
  padding-top: 72px;
  padding-bottom: 24px;
}

.site-footer__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding-x);
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 40px;
}

.site-footer__brand {
  display: inline-block;
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  color: #fff;
  text-decoration: none;
}

.site-footer__brand:hover {
  color: #d4a63d;
  text-decoration: none;
}

.site-footer__text {
  max-width: 320px;
  color: rgba(255, 255, 255, 0.68);
}

.site-footer__heading {
  margin: 0 0 18px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.site-footer__menu,
.site-footer__contact {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__menu li,
.site-footer__contact li {
  margin-bottom: 12px;
}

.site-footer__menu a,
.site-footer__contact a,
.site-footer__contact li {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.site-footer__menu a:hover,
.site-footer__contact a:hover {
  color: #d4a63d;
  text-decoration: none;
}

.site-footer__newsletter {
  max-width: var(--container-max);
  margin: 48px auto 0;
  padding: 40px var(--container-padding-x) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.site-footer__newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
  align-items: end;
}

.site-footer__newsletter-title {
  margin: 0 0 12px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
}

.site-footer__newsletter-text {
  margin: 0;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.68);
}

.site-footer__newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
}

.site-footer__newsletter-form input[type="email"] {
  min-height: 56px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
}

.site-footer__newsletter-form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.site-footer__newsletter-form .btn-primary {
  min-height: 56px;
  min-width: 170px;
}

.site-footer__bottom {
  max-width: var(--container-max);
  margin: 48px auto 0;
  padding: 20px var(--container-padding-x) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.site-footer__copyright {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 1024px) {
  .site-footer__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
  }

  .site-footer__newsletter-inner {
    grid-template-columns: 1fr;
  }
}

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

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

  .site-footer__brand {
    font-size: 1.75rem;
  }

  .site-footer__newsletter-form {
    grid-template-columns: 1fr;
  }

  .site-footer__newsletter-form .btn-primary {
    width: 100%;
  }

  .site-footer__bottom {
    margin-top: 32px;
  }
}
/* =============================================================================
   16. FOOTER
   ============================================================================= */

.site-footer {
  background: #151311;
  color: rgba(255, 255, 255, 0.78);
  padding-top: 72px;
  padding-bottom: 24px;
}

.site-footer__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding-x);
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
}

.site-footer__col {
  min-width: 0;
}

.site-footer__brand {
  display: inline-block;
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  color: #fff;
  text-decoration: none;
}

.site-footer__brand:hover {
  color: #d4a63d;
  text-decoration: none;
}

.site-footer__text {
  max-width: 320px;
  color: rgba(255, 255, 255, 0.68);
  margin: 0 0 20px;
}

.site-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-footer__social a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}

.site-footer__social a:hover {
  color: #d4a63d;
  text-decoration: none;
}

.site-footer__heading {
  margin: 0 0 18px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
}

.site-footer__menu,
.site-footer__contact {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__menu li,
.site-footer__contact li {
  margin-bottom: 12px;
}

.site-footer__menu a,
.site-footer__contact a,
.site-footer__contact li {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.site-footer__menu a:hover,
.site-footer__contact a:hover {
  color: #d4a63d;
  text-decoration: none;
}

.site-footer__newsletter {
  max-width: var(--container-max);
  margin: 48px auto 0;
  padding: 40px var(--container-padding-x) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.site-footer__newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 32px;
  align-items: end;
}

.site-footer__newsletter-title {
  margin: 0 0 10px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
}

.site-footer__newsletter-text {
  margin: 0;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.68);
}

.site-footer__newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
}

.site-footer__newsletter-form input[type="email"] {
  min-height: 56px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
}

.site-footer__newsletter-form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.site-footer__newsletter-form .btn-primary {
  min-height: 56px;
  min-width: 170px;
}

.site-footer__bottom {
  max-width: var(--container-max);
  margin: 48px auto 0;
  padding: 20px var(--container-padding-x) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.site-footer__copyright {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}

.site-footer__bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.site-footer__bottom-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.82rem;
}

.site-footer__bottom-links a:hover {
  color: #d4a63d;
  text-decoration: none;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1024px) {
  .site-footer__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
  }

  .site-footer__newsletter-inner {
    grid-template-columns: 1fr;
  }
}

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

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

  .site-footer__brand {
    font-size: 1.75rem;
  }

  .site-footer__newsletter-form {
    grid-template-columns: 1fr;
  }

  .site-footer__newsletter-form .btn-primary {
    width: 100%;
  }

  .site-footer__bottom {
    margin-top: 32px;
    align-items: flex-start;
  }
}
/* =============================================================================
   17. ABOUT PAGE
   ============================================================================= */

.about-hero {
  padding-top: calc(var(--space-4xl) + 20px);
}

.about-hero__inner {
  max-width: 900px;
}

.about-hero__eyebrow {
  margin: 0 0 10px;
  font-size: var(--text-sm);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.about-hero__title {
  margin: 0 0 20px;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 0.98;
}

.about-hero__lead {
  max-width: 760px;
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  color: var(--color-text-muted);
}

.about-section__title {
  margin: 10px 0 20px;
}

.about-story .about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.about-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
}

.about-card__title {
  margin: 10px 0 16px;
}

.about-card p:last-child {
  color: var(--color-text-muted);
}

.about-cta__inner {
  text-align: center;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-sm);
}

.about-cta__title {
  margin: 10px 0 18px;
}

.about-cta__text {
  color: var(--color-text-muted);
  margin-bottom: 22px;
}

@media (max-width: 767px) {
  .about-story .about-grid {
    grid-template-columns: 1fr;
  }

  .about-hero {
    padding-top: var(--space-3xl);
  }

  .about-cta__inner {
    padding: var(--space-xl);
  }
}
/* =============================================================================
   17. ABOUT PAGE
   ============================================================================= */

.about-hero {
  padding-top: calc(var(--space-4xl) + 20px);
}

.about-hero__inner {
  max-width: 980px;
}

.about-hero__eyebrow {
  margin: 0 0 10px;
  font-size: var(--text-sm);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.about-hero__title {
  margin: 0 0 22px;
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  line-height: 0.96;
}

.about-hero__lead {
  max-width: 840px;
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  color: var(--color-text-muted);
}

.about-section__title {
  margin: 10px 0 20px;
}

.about-split {
  display: grid;
  grid-template-columns: 0.9fr 1.3fr;
  gap: 48px;
  align-items: start;
}

.about-split__content p + p {
  margin-top: 22px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.about-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
}

.about-card__title {
  margin: 10px 0 14px;
}

.about-card p:last-child {
  color: var(--color-text-muted);
}

.about-cta__inner {
  text-align: center;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-sm);
}

.about-cta__title {
  margin: 10px 0 18px;
}

.about-cta__text {
  color: var(--color-text-muted);
  margin-bottom: 22px;
}

@media (max-width: 1024px) {
  .about-split,
  .about-grid--three {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-hero {
    padding-top: var(--space-3xl);
  }

  .about-cta__inner {
    padding: var(--space-xl);
  }
}
.private-journeys {
	padding: 90px 0;
	background: #242424;
	color: #f5efe7;
	overflow: hidden;
}

.private-journeys__inner {
	display: flex;
	gap: 42px;
	align-items: flex-start;
	padding-left: 6vw;
}

.private-journeys__intro {
	flex: 0 0 340px;
	position: sticky;
	top: 120px;
	align-self: flex-start;
}

.private-journeys__title {
	font-size: 56px;
	line-height: 1.05;
	margin: 0 0 20px;
	color: #f5efe7;
}

.private-journeys__text {
	font-size: 18px;
	line-height: 1.7;
	max-width: 320px;
	margin-bottom: 24px;
	color: rgba(245, 239, 231, 0.9);
}

.private-journeys__link {
	display: inline-block;
	color: #f5efe7;
	text-decoration: none;
	border-bottom: 1px solid rgba(245,239,231,.45);
	padding-bottom: 4px;
}

.private-journeys__rail {
	display: flex;
	gap: 22px;
	overflow-x: auto;
	overflow-y: hidden;
	padding-right: 6vw;
	padding-bottom: 10px;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
}

.private-journeys__rail::-webkit-scrollbar {
	height: 8px;
}

.private-journey-card {
	flex: 0 0 320px;
	scroll-snap-align: start;
}

.private-journey-card__link-wrap {
	display: block;
	text-decoration: none;
	color: inherit;
}

.private-journey-card__image-wrap {
	position: relative;
	height: 560px;
	overflow: hidden;
	background: #d8d1c6;
}

.private-journey-card__image,
.private-journey-card__image-placeholder {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.private-journey-card__duration {
	position: absolute;
	top: 18px;
	right: 18px;
	z-index: 3;
	font-size: 12px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #fff;
}

.private-journey-card__overlay {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 28px;
	background: linear-gradient(to top, rgba(0,0,0,.62), rgba(0,0,0,.2), rgba(0,0,0,0));
}

.private-journey-card__title {
	font-size: 34px;
	line-height: 1.15;
	margin: 0 0 18px;
	color: #fff;
}

.private-journey-card__cta {
	display: inline-block;
	align-self: flex-start;
	border: 1px solid rgba(255,255,255,.65);
	padding: 10px 16px;
	font-size: 12px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #fff;
}

@media (max-width: 991px) {
	.private-journeys__inner {
		flex-direction: column;
		gap: 28px;
		padding-left: 24px;
	}

	.private-journeys__intro {
		position: static;
		flex: none;
		max-width: 100%;
	}

	.private-journeys__text {
		max-width: 100%;
	}

	.private-journeys__rail {
		padding-right: 24px;
	}

	.private-journey-card {
		flex: 0 0 78vw;
	}

	.private-journey-card__image-wrap {
		height: 480px;
	}

	.private-journeys__title {
		font-size: 38px;
	}

	.private-journey-card__title {
		font-size: 28px;
	}
}
.private-journeys {
	padding: 90px 0;
	background: #242424;
	color: #f5efe7;
	overflow: hidden;
}

.private-journeys__inner {
	display: flex;
	gap: 42px;
	align-items: flex-start;
	padding-left: 6vw;
}

.private-journeys__intro {
	flex: 0 0 340px;
	position: sticky;
	top: 120px;
	align-self: flex-start;
}

.private-journeys__title {
	font-size: 56px;
	line-height: 1.05;
	margin: 0 0 20px;
	color: #f5efe7;
}

.private-journeys__text {
	font-size: 18px;
	line-height: 1.7;
	max-width: 320px;
	margin-bottom: 24px;
	color: rgba(245, 239, 231, 0.9);
}

.private-journeys__link {
	display: inline-block;
	color: #f5efe7;
	text-decoration: none;
	border-bottom: 1px solid rgba(245,239,231,.45);
	padding-bottom: 4px;
}

.private-journeys__rail {
	display: flex;
	gap: 22px;
	overflow-x: auto;
	overflow-y: hidden;
	padding-right: 6vw;
	padding-bottom: 10px;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
}

.private-journeys__rail::-webkit-scrollbar {
	height: 8px;
}

.private-journey-card {
	flex: 0 0 320px;
	scroll-snap-align: start;
}

.private-journey-card__link-wrap {
	display: block;
	text-decoration: none;
	color: inherit;
}

.private-journey-card__image-wrap {
	position: relative;
	height: 560px;
	overflow: hidden;
	background: #d8d1c6;
	border-radius: 0;
}

.private-journey-card__image,
.private-journey-card__image-placeholder {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.private-journey-card__duration {
	position: absolute;
	top: 18px;
	right: 18px;
	z-index: 3;
	font-size: 12px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #fff;
}

.private-journey-card__overlay {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 28px;
	background: linear-gradient(to top, rgba(0,0,0,.62), rgba(0,0,0,.2), rgba(0,0,0,0));
}

.private-journey-card__title {
	font-size: 34px;
	line-height: 1.15;
	margin: 0 0 18px;
	color: #fff;
}

.private-journey-card__cta {
	display: inline-block;
	align-self: flex-start;
	border: 1px solid rgba(255,255,255,.65);
	padding: 10px 16px;
	font-size: 12px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #fff;
}

@media (max-width: 991px) {
	.private-journeys__inner {
		flex-direction: column;
		gap: 28px;
		padding-left: 24px;
	}

	.private-journeys__intro {
		position: static;
		flex: none;
		max-width: 100%;
	}

	.private-journeys__text {
		max-width: 100%;
	}

	.private-journeys__rail {
		padding-right: 24px;
	}

	.private-journey-card {
		flex: 0 0 78vw;
	}

	.private-journey-card__image-wrap {
		height: 480px;
	}

	.private-journeys__title {
		font-size: 38px;
	}

	.private-journey-card__title {
		font-size: 28px;
	}
}
.private-journeys {
	padding: 90px 0;
	background: #242424;
	color: #f5efe7;
	overflow: hidden;
}

.private-journeys__inner {
	display: flex;
	gap: 42px;
	align-items: flex-start;
	padding-left: 6vw;
}

.private-journeys__intro {
	flex: 0 0 340px;
	position: sticky;
	top: 120px;
	align-self: flex-start;
}

.private-journeys__title {
	font-size: 56px;
	line-height: 1.05;
	margin: 0 0 20px;
	color: #f5efe7;
}

.private-journeys__text {
	font-size: 18px;
	line-height: 1.7;
	max-width: 320px;
	margin-bottom: 24px;
	color: rgba(245, 239, 231, 0.9);
}

.private-journeys__link {
	display: inline-block;
	color: #f5efe7;
	text-decoration: none;
	border-bottom: 1px solid rgba(245,239,231,.45);
	padding-bottom: 4px;
}

.private-journeys__rail {
	display: flex;
	gap: 22px;
	overflow-x: auto;
	overflow-y: hidden;
	padding-right: 6vw;
	padding-bottom: 10px;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
}

.private-journeys__rail::-webkit-scrollbar {
	height: 8px;
}

.private-journey-card {
	flex: 0 0 320px;
	scroll-snap-align: start;
}

.private-journey-card__link-wrap {
	display: block;
	text-decoration: none;
	color: inherit;
}

.private-journey-card__image-wrap {
	position: relative;
	height: 560px;
	overflow: hidden;
	background: #d8d1c6;
}

.private-journey-card__image,
.private-journey-card__image-placeholder {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.private-journey-card__duration {
	position: absolute;
	top: 18px;
	right: 18px;
	z-index: 3;
	font-size: 12px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #fff;
}

.private-journey-card__overlay {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 28px;
	background: linear-gradient(to top, rgba(0,0,0,.62), rgba(0,0,0,.2), rgba(0,0,0,0));
}

.private-journey-card__title {
	font-size: 34px;
	line-height: 1.15;
	margin: 0 0 18px;
	color: #fff;
}

.private-journey-card__cta {
	display: inline-block;
	align-self: flex-start;
	border: 1px solid rgba(255,255,255,.65);
	padding: 10px 16px;
	font-size: 12px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #fff;
}

@media (max-width: 991px) {
	.private-journeys__inner {
		flex-direction: column;
		gap: 28px;
		padding-left: 24px;
	}

	.private-journeys__intro {
		position: static;
		flex: none;
		max-width: 100%;
	}

	.private-journeys__text {
		max-width: 100%;
	}

	.private-journeys__rail {
		padding-right: 24px;
	}

	.private-journey-card {
		flex: 0 0 78vw;
	}

	.private-journey-card__image-wrap {
		height: 480px;
	}

	.private-journeys__title {
		font-size: 38px;
	}

	.private-journey-card__title {
		font-size: 28px;
	}
}
.studio-page__featured-image {
	padding: 48px 0 0;
}

.studio-page__image {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 0;
}

.studio-page__content {
	padding: 48px 0 96px;
}

.studio-page__content > .site-container {
	max-width: 1280px;
}

.studio-page__content .wp-block-group,
.studio-page__content .wp-block-columns,
.studio-page__content .wp-block-cover,
.studio-page__content .wp-block-media-text {
	margin-bottom: 32px;
}

.studio-page__content h1,
.studio-page__content h2,
.studio-page__content h3 {
	margin-top: 0;
}

.studio-page__content .alignwide {
	max-width: 1400px;
	margin-left: auto;
	margin-right: auto;
}

.studio-page__content .alignfull {
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}
.studio-page__hero {
	position: relative;
	width: 100%;
	height: 72vh;
	min-height: 420px;
	overflow: hidden;
}

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

.studio-page__hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgba(0,0,0,0.12), rgba(0,0,0,0.28));
}

.studio-page__content {
	padding: 56px 0 96px;
}

.studio-page__content > .site-container {
	max-width: 1280px;
}

.studio-page__content .wp-block-group,
.studio-page__content .wp-block-columns,
.studio-page__content .wp-block-media-text,
.studio-page__content .wp-block-cover {
	margin-bottom: 32px;
}

.studio-page__content h1,
.studio-page__content h2,
.studio-page__content h3 {
	margin-top: 0;
}

.studio-page__content .alignwide {
	max-width: 1400px;
	margin-left: auto;
	margin-right: auto;
}

.studio-page__content .alignfull {
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}
.studio-page__hero {
	position: relative;
	width: 100%;
	height: 62vh;
	min-height: 360px;
	max-height: 560px;
	overflow: hidden;
}

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

.studio-page__hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgba(0,0,0,0.08), rgba(0,0,0,0.18));
}

.studio-page__content {
	padding: 72px 24px 110px;
}

.studio-page__content-inner {
	width: 100%;
	max-width: 1320px;
	margin: 0 auto;
}

/* Gutenberg / block content spacing */
.studio-page__content .wp-block-group,
.studio-page__content .wp-block-columns,
.studio-page__content .wp-block-media-text,
.studio-page__content .wp-block-cover,
.studio-page__content .wp-block-image,
.studio-page__content .wp-block-heading,
.studio-page__content p {
	margin-bottom: 28px;
}

/* Main editorial text area */
.studio-page__content p,
.studio-page__content .wp-block-heading:not(.alignwide):not(.alignfull),
.studio-page__content .wp-block-paragraph:not(.alignwide):not(.alignfull) {
	max-width: 860px;
	margin-left: auto;
	margin-right: auto;
}

/* Headings centered like premium editorial pages */
.studio-page__content h1,
.studio-page__content h2,
.studio-page__content h3 {
	margin-top: 0;
	text-align: center;
}

.studio-page__content h1 {
	font-size: clamp(42px, 5vw, 72px);
	line-height: 1.02;
	margin-bottom: 24px;
}

.studio-page__content h2 {
	font-size: clamp(32px, 3vw, 48px);
	line-height: 1.08;
	margin-bottom: 20px;
}

.studio-page__content h3 {
	font-size: clamp(24px, 2vw, 34px);
	line-height: 1.15;
}

/* Paragraph styling */
.studio-page__content p {
	font-size: 18px;
	line-height: 1.85;
	text-align: center;
}

/* Wide blocks */
.studio-page__content .alignwide {
	max-width: 1240px;
	margin-left: auto;
	margin-right: auto;
}

/* Full width blocks */
.studio-page__content .alignfull {
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}

/* Media + text blocks can be left aligned inside */
.studio-page__content .wp-block-media-text {
	max-width: 1240px;
	margin-left: auto;
	margin-right: auto;
}

.studio-page__content .wp-block-media-text p,
.studio-page__content .wp-block-media-text h2,
.studio-page__content .wp-block-media-text h3 {
	text-align: left;
	margin-left: 0;
	margin-right: 0;
	max-width: none;
}

/* Buttons centered by default */
.studio-page__content .wp-block-buttons {
	justify-content: center;
	margin-bottom: 36px;
}

/* Trip grid section should breathe */
.mts-trip-grid-block {
	margin: 72px 0 88px;
}

.mts-trip-grid-block__header {
	margin-bottom: 32px;
}

.mts-trip-grid-block__title {
	font-size: clamp(28px, 3vw, 42px);
	line-height: 1.08;
	margin: 0;
	text-align: center;
}

.mts-trip-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 32px;
	max-width: 1240px;
	margin: 0 auto;
}

.mts-trip-card {
	background: #fff;
	overflow: hidden;
}

.mts-trip-card__link {
	display: block;
	color: inherit;
	text-decoration: none;
	height: 100%;
}

.mts-trip-card__image-wrap {
	position: relative;
	aspect-ratio: 4 / 3.2;
	background: #ddd3c7;
	overflow: hidden;
}

.mts-trip-card__image,
.mts-trip-card__image-placeholder {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.mts-trip-card__duration {
	position: absolute;
	top: 16px;
	right: 16px;
	background: rgba(20,20,20,0.45);
	color: #fff;
	padding: 6px 10px;
	font-size: 11px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.mts-trip-card__body {
	padding: 24px;
}

.mts-trip-card__title {
	font-size: 30px;
	line-height: 1.15;
	margin: 0 0 12px;
	text-align: left;
}

.mts-trip-card__excerpt {
	font-size: 16px;
	line-height: 1.75;
	margin-bottom: 18px;
	color: #4b433c;
	text-align: left;
	max-width: none;
}

.mts-trip-card__cta {
	display: inline-block;
	font-size: 13px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	border-bottom: 1px solid currentColor;
	padding-bottom: 3px;
}

@media (max-width: 991px) {
	.studio-page__hero {
		height: 42vh;
		min-height: 280px;
	}

	.studio-page__content {
		padding: 48px 20px 80px;
	}

	.studio-page__content p,
	.studio-page__content .wp-block-heading:not(.alignwide):not(.alignfull),
	.studio-page__content .wp-block-paragraph:not(.alignwide):not(.alignfull) {
		max-width: 100%;
	}

	.mts-trip-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.mts-trip-card__title {
		font-size: 24px;
	}
}
/* ============================================================
   MOROCCO TOUR STUDIO — Single Journey Page Styles
   Add this block to the bottom of style.css
   ============================================================

   Design tokens used
   --mts-ivory      : #F7F3EE   (warm page background)
   --mts-sand       : #EDE7DD   (subtle tint, borders)
   --mts-charcoal   : #2C2C2C   (body text)
   --mts-charcoal-l : #4A4A4A   (secondary text)
   --mts-terracotta : #B05C38   (CTA / accent)
   --mts-terracotta-d: #934B2C  (CTA hover)
   --mts-beige-border: #D9D0C5  (thin dividers)
   --mts-hero-overlay: rgba(28, 20, 14, 0.52)
   ============================================================ */


/* ── 0. ROOT TOKENS ─────────────────────────────────────── */
:root {
	--mts-ivory:          #F7F3EE;
	--mts-sand:           #EDE7DD;
	--mts-charcoal:       #2C2C2C;
	--mts-charcoal-l:     #4A4A4A;
	--mts-terracotta:     #B05C38;
	--mts-terracotta-d:   #934B2C;
	--mts-beige-border:   #D9D0C5;
	--mts-hero-overlay:   rgba(28, 20, 14, 0.52);

	--mts-font-serif:     'Cormorant Garamond', Georgia, 'Times New Roman', serif;
	--mts-font-sans:      'Jost', 'Helvetica Neue', Arial, sans-serif;

	--mts-max-width:      1200px;
	--mts-sidebar-width:  340px;
	--mts-gap:            2.5rem;
}

/* Page background */
body.single-journey {
	background-color: var(--mts-ivory);
	color: var(--mts-charcoal);
	font-family: var(--mts-font-sans);
}


/* ── 1. SHARED BUTTON STYLES ────────────────────────────── */
.btn {
	display: inline-block;
	font-family: var(--mts-font-sans);
	font-size: 0.8125rem;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	text-decoration: none;
	padding: 0.85rem 2rem;
	border-radius: 2px;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
	cursor: pointer;
}

.btn--primary {
	background-color: var(--mts-terracotta);
	color: #fff;
	border: 1px solid var(--mts-terracotta);
}

.btn--primary:hover,
.btn--primary:focus-visible {
	background-color: var(--mts-terracotta-d);
	border-color: var(--mts-terracotta-d);
}

.btn--secondary {
	background-color: transparent;
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.65);
}

.btn--secondary:hover,
.btn--secondary:focus-visible {
	background-color: rgba(255, 255, 255, 0.12);
	border-color: #fff;
}

.btn--outline {
	background-color: transparent;
	color: var(--mts-terracotta);
	border: 1px solid var(--mts-terracotta);
}

.btn--outline:hover,
.btn--outline:focus-visible {
	background-color: var(--mts-terracotta);
	color: #fff;
}

.btn--full {
	display: block;
	width: 100%;
	text-align: center;
}


/* ── 2. HERO ─────────────────────────────────────────────── */
.journey-hero {
	position: relative;
	min-height: 90vh;
	background-color: #1c140e; /* fallback if no image */
	background-size: cover;
	background-position: center 30%;
	display: flex;
	align-items: flex-end;
	padding-bottom: 5rem;
}

.journey-hero__overlay {
	position: absolute;
	inset: 0;
	background: var(--mts-hero-overlay);
	pointer-events: none;
}

.journey-hero__inner {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: var(--mts-max-width);
	margin: 0 auto;
	padding: 0 2rem;
}

.journey-hero__eyebrow {
	font-family: var(--mts-font-sans);
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.75);
	margin: 0 0 1rem;
}

.journey-hero__title {
	font-family: var(--mts-font-serif);
	font-size: clamp(2.5rem, 6vw, 5rem);
	font-weight: 400;
	line-height: 1.1;
	color: #fff;
	margin: 0 0 1.25rem;
	max-width: 18ch;
	text-wrap: balance;
}

.journey-hero__subtitle {
	font-family: var(--mts-font-sans);
	font-size: 1.0625rem;
	font-weight: 300;
	color: rgba(255, 255, 255, 0.82);
	max-width: 52ch;
	line-height: 1.6;
	margin: 0 0 2.5rem;
}

.journey-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}


/* ── 3. SNAPSHOT BAR ─────────────────────────────────────── */
.journey-snapshot {
	background-color: var(--mts-sand);
	border-bottom: 1px solid var(--mts-beige-border);
}

.journey-snapshot__inner {
	max-width: var(--mts-max-width);
	margin: 0 auto;
	padding: 0 2rem;
	display: flex;
	flex-wrap: wrap;
	gap: 0;
}

.journey-snapshot__item {
	flex: 1 1 0;
	min-width: 120px;
	padding: 1.35rem 1.5rem;
	border-right: 1px solid var(--mts-beige-border);
	display: flex;
	flex-direction: column;
	gap: 0.3rem;
}

.journey-snapshot__item:last-child {
	border-right: none;
}

.journey-snapshot__label {
	font-size: 0.68rem;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--mts-charcoal-l);
}

.journey-snapshot__value {
	font-family: var(--mts-font-serif);
	font-size: 1.0625rem;
	font-weight: 500;
	color: var(--mts-charcoal);
}


/* ── 4. BODY (two-column) ─────────────────────────────────── */
.journey-body {
	background-color: var(--mts-ivory);
	padding: 5rem 0 4rem;
}

.journey-body__inner {
	max-width: var(--mts-max-width);
	margin: 0 auto;
	padding: 0 2rem;
	display: grid;
	grid-template-columns: 1fr var(--mts-sidebar-width);
	gap: var(--mts-gap);
	align-items: start;
}


/* ── 5. MAIN CONTENT (editor output) ─────────────────────── */
.journey-content {
	min-width: 0; /* prevent overflow in grid */
	font-family: var(--mts-font-sans);
	font-size: 1rem;
	line-height: 1.75;
	color: var(--mts-charcoal);
}

.journey-content h2 {
	font-family: var(--mts-font-serif);
	font-size: clamp(1.5rem, 3vw, 2.125rem);
	font-weight: 400;
	color: var(--mts-charcoal);
	margin: 3rem 0 1rem;
	padding-top: 2rem;
	border-top: 1px solid var(--mts-beige-border);
	line-height: 1.25;
	text-wrap: balance;
}

.journey-content h2:first-child {
	margin-top: 0;
	padding-top: 0;
	border-top: none;
}

.journey-content h3 {
	font-family: var(--mts-font-serif);
	font-size: clamp(1.125rem, 2vw, 1.4375rem);
	font-weight: 500;
	color: var(--mts-charcoal);
	margin: 2rem 0 0.625rem;
	line-height: 1.35;
}

.journey-content p {
	margin: 0 0 1.25rem;
	color: var(--mts-charcoal-l);
}

.journey-content ul,
.journey-content ol {
	margin: 0 0 1.5rem;
	padding-left: 1.5rem;
}

.journey-content li {
	margin-bottom: 0.5rem;
	color: var(--mts-charcoal-l);
}

.journey-content strong {
	color: var(--mts-charcoal);
	font-weight: 600;
}


/* ── 6. SIDEBAR CARD ─────────────────────────────────────── */
.journey-sidebar {
	position: sticky;
	top: 2rem;
}

.journey-sidebar__card {
	background-color: #fff;
	border: 1px solid var(--mts-beige-border);
	border-radius: 3px;
	overflow: hidden;
}

/* Price block */
.journey-sidebar__price-block {
	padding: 1.75rem 1.75rem 1.5rem;
	border-bottom: 1px solid var(--mts-beige-border);
	background-color: var(--mts-sand);
}

.journey-sidebar__price-label {
	font-size: 0.7rem;
	font-weight: 500;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--mts-charcoal-l);
	margin: 0 0 0.35rem;
}

.journey-sidebar__price-value {
	font-family: var(--mts-font-serif);
	font-size: 2rem;
	font-weight: 500;
	color: var(--mts-charcoal);
	margin: 0 0 0.35rem;
	line-height: 1.1;
}

.journey-sidebar__price-note {
	font-size: 0.8125rem;
	color: var(--mts-charcoal-l);
	margin: 0;
	line-height: 1.5;
}

/* Action buttons */
.journey-sidebar__actions {
	padding: 1.5rem 1.75rem;
	border-bottom: 1px solid var(--mts-beige-border);
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

/* Details DL */
.journey-sidebar__details {
	padding: 1.5rem 1.75rem;
}

.journey-sidebar__details-heading {
	font-family: var(--mts-font-sans);
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--mts-charcoal-l);
	margin: 0 0 1.25rem;
}

.journey-sidebar__dl {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 0.5rem 1.25rem;
	margin: 0;
}

.journey-sidebar__dl dt {
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--mts-charcoal-l);
	white-space: nowrap;
	padding-top: 0.05rem;
}

.journey-sidebar__dl dd {
	font-size: 0.9375rem;
	color: var(--mts-charcoal);
	margin: 0;
	line-height: 1.5;
}


/* ── 7. TAILOR CTA BAND ───────────────────────────────────── */
.journey-tailor {
	background-color: var(--mts-sand);
	border-top: 1px solid var(--mts-beige-border);
	border-bottom: 1px solid var(--mts-beige-border);
	padding: 5rem 2rem;
	text-align: center;
}

.journey-tailor__inner {
	max-width: 640px;
	margin: 0 auto;
}

.journey-tailor__label {
	font-size: 0.72rem;
	font-weight: 500;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--mts-terracotta);
	margin: 0 0 1rem;
}

.journey-tailor__heading {
	font-family: var(--mts-font-serif);
	font-size: clamp(1.75rem, 4vw, 2.75rem);
	font-weight: 400;
	color: var(--mts-charcoal);
	margin: 0 0 1.25rem;
	line-height: 1.2;
	text-wrap: balance;
}

.journey-tailor__text {
	font-size: 1rem;
	line-height: 1.7;
	color: var(--mts-charcoal-l);
	margin: 0 0 2.25rem;
}


/* ── 8. ENQUIRY SECTION ───────────────────────────────────── */
.journey-enquiry {
	background-color: var(--mts-ivory);
	padding: 5rem 2rem;
}

.journey-enquiry__inner {
	max-width: 700px;
	margin: 0 auto;
}

.journey-enquiry__heading {
	font-family: var(--mts-font-serif);
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 400;
	color: var(--mts-charcoal);
	margin: 0 0 1rem;
	text-wrap: balance;
}

.journey-enquiry__intro {
	font-size: 1rem;
	line-height: 1.7;
	color: var(--mts-charcoal-l);
	margin: 0 0 2.5rem;
}


/* ── 9. RESPONSIVE ───────────────────────────────────────── */

/* Tablet (≤ 1024px) */
@media (max-width: 1024px) {
	.journey-body__inner {
		grid-template-columns: 1fr;
	}

	.journey-sidebar {
		position: static; /* remove sticky on smaller screens */
	}

	.journey-sidebar__card {
		max-width: 560px;
	}

	.journey-snapshot__item {
		flex: 1 1 calc(50% - 1px); /* 2-column snapshot on tablet */
	}

	.journey-snapshot__item:nth-child(even) {
		border-right: none;
	}
}

/* Mobile (≤ 640px) */
@media (max-width: 640px) {
	.journey-hero {
		min-height: 70vh;
		padding-bottom: 3rem;
	}

	.journey-hero__actions {
		flex-direction: column;
	}

	.journey-hero__actions .btn {
		text-align: center;
	}

	.journey-snapshot__item {
		flex: 1 1 100%; /* single column snapshot on mobile */
		border-right: none;
		border-bottom: 1px solid var(--mts-beige-border);
	}

	.journey-snapshot__item:last-child {
		border-bottom: none;
	}

	.journey-body {
		padding: 3rem 0 2rem;
	}

	.journey-body__inner {
		padding: 0 1.25rem;
	}

	.journey-tailor {
		padding: 3.5rem 1.25rem;
	}

	.journey-enquiry {
		padding: 3.5rem 1.25rem;
	}

	.journey-sidebar__card {
		max-width: 100%;
	}
}
/* About Hero Image */
.about-hero--image {
	position: relative;
	min-height: 78vh;
	display: flex;
	align-items: center;
	overflow: hidden;
	color: #fff;
}

.about-hero__media {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.about-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.about-hero__overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(31, 24, 18, 0.78) 0%, rgba(31, 24, 18, 0.58) 42%, rgba(31, 24, 18, 0.22) 100%),
		linear-gradient(180deg, rgba(31, 24, 18, 0.15) 0%, rgba(31, 24, 18, 0.45) 100%);
}

.about-hero--image .site-container {
	position: relative;
	z-index: 1;
	width: 100%;
}

.about-hero--image .about-hero__inner {
	max-width: 760px;
	padding: 7rem 0;
}

.about-hero--image .section-eyebrow {
	color: rgba(255, 255, 255, 0.86);
}

.about-hero--image .about-hero__title,
.about-hero--image .about-hero__lead,
.about-hero--image .about-hero__text {
	color: #fff;
}

.about-hero--image .about-hero__lead {
	max-width: 720px;
}

.about-hero--image .about-hero__text {
	max-width: 700px;
	color: rgba(255, 255, 255, 0.86);
}

.about-hero--image .button--secondary {
	color: #fff;
	border-color: rgba(255, 255, 255, 0.65);
}

.about-hero--image .button--secondary:hover {
	background: rgba(255, 255, 255, 0.12);
	border-color: #fff;
}

@media (max-width: 768px) {
	.about-hero--image {
		min-height: 72vh;
	}

	.about-hero--image .about-hero__inner {
		padding: 5rem 0;
	}

	.about-hero__overlay {
		background:
			linear-gradient(180deg, rgba(31, 24, 18, 0.76) 0%, rgba(31, 24, 18, 0.58) 55%, rgba(31, 24, 18, 0.68) 100%);
	}
}
/* ==================================================
   About Page
================================================== */

.about-page {
	background: #fbf7f0;
	color: #2a211a;
}

/* Editorial Hero */
.about-hero--editorial {
	position: relative;
	min-height: 82vh;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: #1f1812;
	color: #fff;
}

.about-hero--editorial .about-hero__media {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.about-hero--editorial .about-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	display: block;
	transform: scale(1.02);
}

.about-hero--editorial .about-hero__overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(
			90deg,
			rgba(20, 14, 9, 0.78) 0%,
			rgba(20, 14, 9, 0.62) 38%,
			rgba(20, 14, 9, 0.28) 72%,
			rgba(20, 14, 9, 0.18) 100%
		),
		linear-gradient(
			180deg,
			rgba(20, 14, 9, 0.25) 0%,
			rgba(20, 14, 9, 0.35) 100%
		);
}

.about-hero--editorial .site-container {
	position: relative;
	z-index: 1;
	width: 100%;
}

.about-hero--editorial .about-hero__content {
	max-width: 680px;
	padding: 9rem 0 7rem;
}

.about-hero__eyebrow,
.about-page .section-eyebrow {
	margin: 0 0 1.25rem;
	font-size: 0.78rem;
	line-height: 1.2;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #9b6b43;
	font-weight: 600;
}

.about-hero--editorial .about-hero__eyebrow {
	color: rgba(255, 255, 255, 0.78);
}

.about-hero--editorial .about-hero__title {
	margin: 0;
	max-width: 650px;
	font-size: clamp(3.4rem, 7vw, 6.8rem);
	line-height: 0.92;
	letter-spacing: -0.055em;
	color: #fff;
}

.about-hero--editorial .about-hero__lead {
	margin: 1.75rem 0 0;
	max-width: 620px;
	font-size: clamp(1.05rem, 1.5vw, 1.35rem);
	line-height: 1.75;
	color: rgba(255, 255, 255, 0.86);
}

.about-hero--editorial .about-hero__actions,
.about-cta__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	margin-top: 2.4rem;
}

.about-hero--editorial .button--light,
.about-hero--editorial .button--secondary {
	color: #fff;
	border-color: rgba(255, 255, 255, 0.65);
	background: transparent;
}

.about-hero--editorial .button--light:hover,
.about-hero--editorial .button--secondary:hover {
	background: rgba(255, 255, 255, 0.12);
	border-color: #fff;
	color: #fff;
}

/* General About Sections */
.about-page .section {
	padding: 6.5rem 0;
}

.about-page .section--spacious {
	padding: 8rem 0;
}

.about-page .section--soft {
	background: #f3eadf;
}

.about-page .section--dark {
	background: #241b14;
	color: #f8efe3;
}

.about-page h2 {
	margin: 0 0 1.5rem;
	font-size: clamp(2rem, 4vw, 4rem);
	line-height: 1;
	letter-spacing: -0.045em;
	color: #2a211a;
}

.about-page .section--dark h2 {
	color: #fff;
}

.about-page p {
	font-size: 1.02rem;
	line-height: 1.85;
	color: #5f5146;
}

.about-page .section--dark p {
	color: rgba(255, 255, 255, 0.78);
}

/* Split Layout */
.about-split {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
	gap: clamp(2rem, 5vw, 5rem);
	align-items: center;
}

.about-split--reverse .about-split__media {
	order: 2;
}

.about-split--reverse .about-split__content {
	order: 1;
}

.about-split__media {
	position: relative;
	min-height: 520px;
	overflow: hidden;
	border-radius: 2rem;
	background: #e6d7c5;
	box-shadow: 0 24px 70px rgba(49, 37, 28, 0.14);
}

.about-split__media img {
	width: 100%;
	height: 100%;
	min-height: 520px;
	object-fit: cover;
	display: block;
}

.about-split__content {
	max-width: 680px;
}

/* Centered Text Blocks */
.about-centered {
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
}

.about-centered p {
	max-width: 780px;
	margin-left: auto;
	margin-right: auto;
}

/* Section Heading */
.section-heading {
	margin-bottom: 3.5rem;
}

.section-heading--center {
	text-align: center;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
}

.section-heading--center h2 {
	max-width: 760px;
	margin-left: auto;
	margin-right: auto;
}

/* Cards */
.about-card-grid {
	display: grid;
	gap: 1.2rem;
}

.about-card-grid--four {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.about-card {
	background: #fffaf3;
	border: 1px solid rgba(128, 88, 55, 0.16);
	border-radius: 1.5rem;
	padding: 2rem;
	box-shadow: 0 18px 45px rgba(49, 37, 28, 0.07);
}

.about-card h3,
.about-feature h3 {
	margin: 0 0 1rem;
	font-size: 1.15rem;
	line-height: 1.25;
	color: #2a211a;
}

.about-card p,
.about-feature p {
	margin: 0;
	font-size: 0.96rem;
	line-height: 1.75;
}

/* Checklist */
.about-checklist {
	list-style: none;
	padding: 0;
	margin: 1.7rem 0 0;
	display: grid;
	gap: 0.75rem;
}

.about-checklist li {
	position: relative;
	padding-left: 1.6rem;
	color: #4f4339;
	line-height: 1.6;
}

.about-checklist li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.62rem;
	width: 0.45rem;
	height: 0.45rem;
	border-radius: 50%;
	background: #9b6b43;
}

/* Features */
.about-feature-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.2rem;
}

.about-feature {
	background: #fffaf3;
	border: 1px solid rgba(128, 88, 55, 0.16);
	border-radius: 1.5rem;
	padding: 2rem;
}

.about-feature__number {
	display: inline-block;
	margin-bottom: 1.4rem;
	font-size: 0.78rem;
	letter-spacing: 0.18em;
	color: #9b6b43;
	font-weight: 700;
}

/* CTA */
.about-cta {
	background:
		linear-gradient(rgba(251, 247, 240, 0.9), rgba(251, 247, 240, 0.96)),
		url("https://moroccotourstudio.com/wp-content/uploads/2026/04/AdobeStock_222919367-1-scaled.jpeg");
	background-size: cover;
	background-position: center;
}

.about-cta__inner {
	max-width: 820px;
	margin: 0 auto;
	text-align: center;
	background: rgba(255, 250, 243, 0.86);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(128, 88, 55, 0.18);
	border-radius: 2rem;
	padding: clamp(2rem, 5vw, 4.5rem);
	box-shadow: 0 24px 70px rgba(49, 37, 28, 0.12);
}

.about-cta__actions {
	justify-content: center;
}

/* Responsive */
@media (max-width: 1100px) {
	.about-card-grid--four {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.about-feature-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 900px) {
	.about-hero--editorial {
		min-height: 76vh;
	}

	.about-hero--editorial .about-hero__content {
		max-width: 100%;
		padding: 7rem 0 5rem;
	}

	.about-hero--editorial .about-hero__overlay {
		background:
			linear-gradient(
				180deg,
				rgba(20, 14, 9, 0.72) 0%,
				rgba(20, 14, 9, 0.62) 48%,
				rgba(20, 14, 9, 0.76) 100%
			);
	}

	.about-split,
	.about-split--reverse {
		grid-template-columns: 1fr;
	}

	.about-split--reverse .about-split__media,
	.about-split--reverse .about-split__content {
		order: initial;
	}

	.about-split__media,
	.about-split__media img {
		min-height: 420px;
	}

	.about-page .section {
		padding: 5rem 0;
	}
}

@media (max-width: 640px) {
	.about-card-grid--four,
	.about-feature-grid {
		grid-template-columns: 1fr;
	}

	.about-hero--editorial {
		min-height: 70vh;
	}

	.about-hero--editorial .about-hero__title {
		font-size: clamp(2.8rem, 16vw, 4.2rem);
	}

	.about-hero--editorial .about-hero__lead {
		font-size: 1rem;
		line-height: 1.65;
	}

	.about-hero--editorial .about-hero__actions,
	.about-cta__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.about-split__media,
	.about-split__media img {
		min-height: 340px;
	}

	.about-page .section {
		padding: 4rem 0;
	}
}
/* About hero - reduce height */
.about-hero--editorial {
	min-height: 42vh;
}

.about-hero--editorial .about-hero__content {
	padding: 4.5rem 0 3.8rem;
}

.about-hero--editorial .about-hero__media img {
	object-position: center center;
}
/* ==================================================
   About Page - Final Editorial Layout
================================================== */

.about-page {
	background: #fbf7f0;
	color: #2a211a;
}

/* Hero */
.about-hero--editorial {
	position: relative;
	min-height: 56vh;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: #1f1812;
	color: #fff;
}

.about-hero--editorial .about-hero__media {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.about-hero--editorial .about-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	display: block;
	transform: scale(1.03);
}

.about-hero--editorial .about-hero__overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(
			90deg,
			rgba(20, 14, 9, 0.78) 0%,
			rgba(20, 14, 9, 0.62) 38%,
			rgba(20, 14, 9, 0.28) 72%,
			rgba(20, 14, 9, 0.16) 100%
		),
		linear-gradient(
			180deg,
			rgba(20, 14, 9, 0.18) 0%,
			rgba(20, 14, 9, 0.38) 100%
		);
}

.about-hero--editorial .site-container {
	position: relative;
	z-index: 1;
	width: 100%;
}

.about-hero--editorial .about-hero__content {
	max-width: 660px;
	padding: 4.8rem 0 4.3rem;
}

.about-hero__eyebrow,
.about-page .section-eyebrow {
	margin: 0 0 1.15rem;
	font-size: 0.74rem;
	line-height: 1.2;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: #9b6b43;
	font-weight: 600;
}

.about-hero--editorial .about-hero__eyebrow {
	color: rgba(255, 255, 255, 0.78);
}

.about-hero--editorial .about-hero__title {
	margin: 0;
	max-width: 620px;
	font-size: clamp(3rem, 6.2vw, 6rem);
	line-height: 0.93;
	letter-spacing: -0.055em;
	color: #fff;
}

.about-hero--editorial .about-hero__lead {
	margin: 1.45rem 0 0;
	max-width: 600px;
	font-size: clamp(1rem, 1.3vw, 1.22rem);
	line-height: 1.72;
	color: rgba(255, 255, 255, 0.86);
}

.about-hero--editorial .about-hero__actions,
.about-cta__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	margin-top: 2rem;
}

.about-hero--editorial .button--light,
.about-hero--editorial .button--secondary {
	color: #fff;
	border-color: rgba(255, 255, 255, 0.65);
	background: transparent;
}

.about-hero--editorial .button--light:hover,
.about-hero--editorial .button--secondary:hover {
	background: rgba(255, 255, 255, 0.12);
	border-color: #fff;
	color: #fff;
}

/* General sections */
.about-page .section {
	padding: 5.8rem 0;
}

.about-page .section--spacious {
	padding: 6.8rem 0;
}

.about-page .section--soft {
	background: #f3eadf;
}

.about-page .section--dark {
	background: #241b14;
	color: #f8efe3;
}

.about-page h2 {
	margin: 0 0 1.6rem;
	font-size: clamp(2.15rem, 4vw, 4.25rem);
	line-height: 1.03;
	letter-spacing: -0.045em;
	color: #2a211a;
}

.about-page .section--dark h2 {
	color: #fff;
}

.about-page p {
	margin: 0 0 1.25rem;
	font-size: 1rem;
	line-height: 1.78;
	color: #5f5146;
}

.about-page p:last-child {
	margin-bottom: 0;
}

.about-page .section--dark p {
	color: rgba(255, 255, 255, 0.78);
}

/* Narrative blocks */
.about-narrative {
	max-width: 940px;
}

.about-narrative--left {
	margin-left: 0;
	margin-right: auto;
}

.about-narrative--contained {
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
	text-align: left;
}

.about-narrative--dark {
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
	text-align: left;
}

.about-narrative h2 {
	max-width: 820px;
}

.about-copy-block {
	max-width: 760px;
}

.about-copy-block .about-lead {
	font-size: 1.12rem;
	line-height: 1.75;
	color: #463a31;
}

.section--dark .about-copy-block .about-lead {
	color: rgba(255, 255, 255, 0.9);
}

/* Text columns for story */
.about-text-columns {
	max-width: 960px;
	columns: 2;
	column-gap: 4rem;
}

.about-text-columns p {
	break-inside: avoid;
	text-align: left;
}

/* Section heading */
.section-heading {
	margin-bottom: 3rem;
}

.section-heading--left {
	text-align: left;
	max-width: 860px;
	margin-left: 0;
	margin-right: auto;
}

.section-heading--left h2 {
	max-width: 760px;
}

/* Cards */
.about-card-grid {
	display: grid;
	gap: 1.15rem;
}

.about-card-grid--four {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.about-card {
	background: #fffaf3;
	border: 1px solid rgba(128, 88, 55, 0.16);
	border-radius: 1.4rem;
	padding: 1.8rem;
	box-shadow: 0 18px 45px rgba(49, 37, 28, 0.06);
}

.about-card h3,
.about-feature h3 {
	margin: 0 0 0.9rem;
	font-size: 1.12rem;
	line-height: 1.25;
	color: #2a211a;
}

.about-card p,
.about-feature p {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.72;
}

/* Split layout */
.about-split {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
	gap: clamp(2rem, 5vw, 5rem);
	align-items: center;
}

.about-split--reverse .about-split__media {
	order: 2;
}

.about-split--reverse .about-split__content {
	order: 1;
}

.about-split__content {
	max-width: 660px;
}

.about-split__media {
	position: relative;
	min-height: 480px;
	overflow: hidden;
	border-radius: 1.8rem;
	background: #e6d7c5;
	box-shadow: 0 24px 70px rgba(49, 37, 28, 0.13);
}

.about-split__media img {
	width: 100%;
	height: 100%;
	min-height: 480px;
	object-fit: cover;
	object-position: center center;
	display: block;
}

/* Checklist */
.about-checklist {
	list-style: none;
	padding: 0;
	margin: 1.55rem 0 0;
	display: grid;
	gap: 0.7rem;
}

.about-checklist li {
	position: relative;
	padding-left: 1.45rem;
	color: #4f4339;
	line-height: 1.6;
	font-size: 0.98rem;
}

.about-checklist li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.62rem;
	width: 0.42rem;
	height: 0.42rem;
	border-radius: 50%;
	background: #9b6b43;
}

/* Features */
.about-feature-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.15rem;
}

.about-feature {
	background: #fffaf3;
	border: 1px solid rgba(128, 88, 55, 0.16);
	border-radius: 1.4rem;
	padding: 1.85rem;
}

.about-feature__number {
	display: inline-block;
	margin-bottom: 1.25rem;
	font-size: 0.74rem;
	letter-spacing: 0.18em;
	color: #9b6b43;
	font-weight: 700;
}

/* CTA */
.about-cta {
	background:
		linear-gradient(rgba(251, 247, 240, 0.92), rgba(251, 247, 240, 0.97)),
		url("https://moroccotourstudio.com/wp-content/uploads/2026/04/AdobeStock_222919367-1-scaled.jpeg");
	background-size: cover;
	background-position: center;
}

.about-cta__inner {
	max-width: 820px;
	margin: 0 auto;
	text-align: left;
	background: rgba(255, 250, 243, 0.88);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(128, 88, 55, 0.18);
	border-radius: 1.8rem;
	padding: clamp(2rem, 5vw, 4.2rem);
	box-shadow: 0 24px 70px rgba(49, 37, 28, 0.12);
}

.about-cta__inner h2 {
	max-width: 700px;
}

.about-cta__inner p {
	max-width: 680px;
}

.about-cta__actions {
	justify-content: flex-start;
}

/* Responsive */
@media (max-width: 1100px) {
	.about-card-grid--four {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.about-feature-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.about-text-columns {
		columns: 1;
		max-width: 760px;
	}
}

@media (max-width: 900px) {
	.about-hero--editorial {
		min-height: 62vh;
	}

	.about-hero--editorial .about-hero__content {
		max-width: 100%;
		padding: 5rem 0 4rem;
	}

	.about-hero--editorial .about-hero__overlay {
		background:
			linear-gradient(
				180deg,
				rgba(20, 14, 9, 0.72) 0%,
				rgba(20, 14, 9, 0.62) 48%,
				rgba(20, 14, 9, 0.76) 100%
			);
	}

	.about-split,
	.about-split--reverse {
		grid-template-columns: 1fr;
	}

	.about-split--reverse .about-split__media,
	.about-split--reverse .about-split__content {
		order: initial;
	}

	.about-split__media,
	.about-split__media img {
		min-height: 380px;
	}

	.about-page .section {
		padding: 4.7rem 0;
	}
}

@media (max-width: 640px) {
	.about-card-grid--four,
	.about-feature-grid {
		grid-template-columns: 1fr;
	}

	.about-hero--editorial {
		min-height: 60vh;
	}

	.about-hero--editorial .about-hero__title {
		font-size: clamp(2.75rem, 15vw, 4rem);
	}

	.about-hero--editorial .about-hero__lead {
		font-size: 1rem;
		line-height: 1.62;
	}

	.about-hero--editorial .about-hero__actions,
	.about-cta__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.about-split__media,
	.about-split__media img {
		min-height: 320px;
	}

	.about-page .section {
		padding: 3.8rem 0;
	}

	.about-page h2 {
		font-size: clamp(2rem, 10vw, 3rem);
	}

	.about-card,
	.about-feature,
	.about-cta__inner {
		border-radius: 1.2rem;
	}
}
/* ==================================================
   Private Journeys Page
================================================== */

.private-journeys-page {
	background: #fbf7f0;
	color: #2a211a;
}

/* Hero */
.pj-hero {
	position: relative;
	min-height: 58vh;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: #1f1812;
	color: #fff;
}

.pj-hero__media {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.pj-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	display: block;
	transform: scale(1.03);
}

.pj-hero__overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(
			90deg,
			rgba(20, 14, 9, 0.78) 0%,
			rgba(20, 14, 9, 0.62) 38%,
			rgba(20, 14, 9, 0.28) 72%,
			rgba(20, 14, 9, 0.16) 100%
		),
		linear-gradient(
			180deg,
			rgba(20, 14, 9, 0.18) 0%,
			rgba(20, 14, 9, 0.38) 100%
		);
}

.pj-hero .site-container {
	position: relative;
	z-index: 1;
	width: 100%;
}

.pj-hero__content {
	max-width: 760px;
	padding: 5rem 0 4.4rem;
}

.pj-hero h1 {
	margin: 0;
	max-width: 760px;
	font-size: clamp(3rem, 6.2vw, 6rem);
	line-height: 0.94;
	letter-spacing: -0.055em;
	color: #fff;
}

.pj-hero p:not(.pj-eyebrow) {
	margin: 1.55rem 0 0;
	max-width: 650px;
	font-size: clamp(1rem, 1.3vw, 1.22rem);
	line-height: 1.72;
	color: rgba(255, 255, 255, 0.86);
}

.pj-hero__actions,
.pj-cta__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	margin-top: 2rem;
}

.pj-hero .button--light,
.pj-hero .button--secondary {
	color: #fff;
	border-color: rgba(255, 255, 255, 0.65);
	background: transparent;
}

.pj-hero .button--light:hover,
.pj-hero .button--secondary:hover {
	background: rgba(255, 255, 255, 0.12);
	border-color: #fff;
	color: #fff;
}

/* General */
.pj-section {
	padding: 5.8rem 0;
}

.pj-section--soft {
	background: #f3eadf;
}

.pj-section--dark {
	background: #241b14;
	color: #f8efe3;
}

.pj-eyebrow {
	margin: 0 0 1.15rem;
	font-size: 0.74rem;
	line-height: 1.2;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: #9b6b43;
	font-weight: 600;
}

.pj-hero .pj-eyebrow,
.pj-section--dark .pj-eyebrow {
	color: rgba(255, 255, 255, 0.72);
}

.pj-section h2 {
	margin: 0 0 1.6rem;
	font-size: clamp(2.15rem, 4vw, 4.25rem);
	line-height: 1.03;
	letter-spacing: -0.045em;
	color: #2a211a;
}

.pj-section--dark h2 {
	color: #fff;
}

.pj-section p {
	margin: 0 0 1.25rem;
	font-size: 1rem;
	line-height: 1.78;
	color: #5f5146;
}

.pj-section p:last-child {
	margin-bottom: 0;
}

.pj-section--dark p {
	color: rgba(255, 255, 255, 0.78);
}

/* Narrative */
.pj-narrative {
	max-width: 940px;
	margin-left: 0;
	margin-right: auto;
}

.pj-narrative h2 {
	max-width: 840px;
}

.pj-copy {
	max-width: 820px;
	columns: 2;
	column-gap: 4rem;
}

.pj-copy p {
	break-inside: avoid;
	text-align: left;
}

/* Section Heading */
.pj-section-heading {
	max-width: 860px;
	margin: 0 0 3rem;
	text-align: left;
}

.pj-section-heading h2 {
	max-width: 820px;
}

.pj-section-heading--split {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(300px, 0.55fr);
	gap: 4rem;
	align-items: end;
	max-width: none;
}

.pj-section-heading--split p:not(.pj-eyebrow) {
	margin-bottom: 0;
}

/* Cards */
.pj-card-grid {
	display: grid;
	gap: 1.15rem;
}

.pj-card-grid--four {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pj-card {
	background: #fffaf3;
	border: 1px solid rgba(128, 88, 55, 0.16);
	border-radius: 1.4rem;
	padding: 1.8rem;
	box-shadow: 0 18px 45px rgba(49, 37, 28, 0.06);
}

.pj-card h3,
.pj-route-card h3,
.pj-process h3,
.pj-stay-list h3,
.pj-audience-grid h3 {
	margin: 0 0 0.9rem;
	font-size: 1.12rem;
	line-height: 1.25;
	color: #2a211a;
}

.pj-card p,
.pj-route-card p,
.pj-process p,
.pj-stay-list p,
.pj-audience-grid p {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.72;
}

/* Routes */
.pj-route-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.15rem;
}

.pj-route-card {
	position: relative;
	min-height: 310px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	background: #fffaf3;
	border: 1px solid rgba(128, 88, 55, 0.16);
	border-radius: 1.4rem;
	padding: 1.9rem;
	box-shadow: 0 18px 45px rgba(49, 37, 28, 0.06);
	overflow: hidden;
}

.pj-route-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(rgba(255, 250, 243, 0.75), rgba(255, 250, 243, 0.98)),
		url("https://moroccotourstudio.com/wp-content/uploads/2026/04/AdobeStock_222919367-1-scaled.jpeg");
	background-size: cover;
	background-position: center;
	opacity: 0.9;
	z-index: 0;
}

.pj-route-card > * {
	position: relative;
	z-index: 1;
}

.pj-route-card span {
	display: inline-block;
	margin-bottom: 1rem;
	font-size: 0.74rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #9b6b43;
	font-weight: 700;
}

.pj-route-card a {
	display: inline-flex;
	margin-top: 1.3rem;
	color: #9b4f2f;
	font-weight: 600;
	text-decoration: none;
}

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

/* Process */
.pj-process-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1.15rem;
}

.pj-process {
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 1.4rem;
	padding: 1.8rem;
	background: rgba(255, 255, 255, 0.045);
}

.pj-process span {
	display: inline-block;
	margin-bottom: 1.25rem;
	font-size: 0.74rem;
	letter-spacing: 0.18em;
	color: rgba(255, 255, 255, 0.68);
	font-weight: 700;
}

.pj-process h3 {
	color: #fff;
}

.pj-process p {
	color: rgba(255, 255, 255, 0.72);
}

/* Stays */
.pj-split {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: clamp(2rem, 5vw, 5rem);
	align-items: start;
}

.pj-split__content {
	max-width: 660px;
}

.pj-stay-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.15rem;
}

.pj-stay-list div {
	background: #fffaf3;
	border: 1px solid rgba(128, 88, 55, 0.16);
	border-radius: 1.4rem;
	padding: 1.75rem;
}

/* Audience */
.pj-audience-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.15rem;
}

.pj-audience-grid article {
	background: #fffaf3;
	border: 1px solid rgba(128, 88, 55, 0.16);
	border-radius: 1.4rem;
	padding: 1.75rem;
}

/* FAQ */
.pj-faq-list {
	max-width: 900px;
	display: grid;
	gap: 0.85rem;
}

.pj-faq-list details {
	background: #fffaf3;
	border: 1px solid rgba(128, 88, 55, 0.16);
	border-radius: 1rem;
	padding: 1.25rem 1.4rem;
}

.pj-faq-list summary {
	cursor: pointer;
	font-size: 1.04rem;
	font-weight: 600;
	color: #2a211a;
}

.pj-faq-list summary::marker {
	color: #9b6b43;
}

.pj-faq-list details p {
	margin-top: 1rem;
	max-width: 760px;
}

/* CTA */
.pj-cta {
	background:
		linear-gradient(rgba(251, 247, 240, 0.9), rgba(251, 247, 240, 0.97)),
		url("https://moroccotourstudio.com/wp-content/uploads/2026/04/AdobeStock_222919367-1-scaled.jpeg");
	background-size: cover;
	background-position: center;
}

.pj-cta__inner {
	max-width: 840px;
	margin: 0 auto;
	text-align: left;
	background: rgba(255, 250, 243, 0.9);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(128, 88, 55, 0.18);
	border-radius: 1.8rem;
	padding: clamp(2rem, 5vw, 4.2rem);
	box-shadow: 0 24px 70px rgba(49, 37, 28, 0.12);
}

.pj-cta__inner h2 {
	max-width: 720px;
}

.pj-cta__inner p {
	max-width: 680px;
}

.pj-cta__actions {
	justify-content: flex-start;
}

/* Responsive */
@media (max-width: 1180px) {
	.pj-card-grid--four,
	.pj-process-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 980px) {
	.pj-section-heading--split,
	.pj-split {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.pj-route-grid,
	.pj-audience-grid {
		grid-template-columns: 1fr;
	}

	.pj-copy {
		columns: 1;
		max-width: 760px;
	}

	.pj-hero {
		min-height: 62vh;
	}

	.pj-hero__content {
		max-width: 100%;
		padding: 5rem 0 4rem;
	}

	.pj-hero__overlay {
		background:
			linear-gradient(
				180deg,
				rgba(20, 14, 9, 0.72) 0%,
				rgba(20, 14, 9, 0.62) 48%,
				rgba(20, 14, 9, 0.76) 100%
			);
	}

	.pj-section {
		padding: 4.7rem 0;
	}
}

@media (max-width: 640px) {
	.pj-card-grid--four,
	.pj-process-grid,
	.pj-stay-list {
		grid-template-columns: 1fr;
	}

	.pj-hero {
		min-height: 60vh;
	}

	.pj-hero h1 {
		font-size: clamp(2.75rem, 15vw, 4rem);
	}

	.pj-hero p:not(.pj-eyebrow) {
		font-size: 1rem;
		line-height: 1.62;
	}

	.pj-hero__actions,
	.pj-cta__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.pj-section {
		padding: 3.8rem 0;
	}

	.pj-section h2 {
		font-size: clamp(2rem, 10vw, 3rem);
	}

	.pj-card,
	.pj-route-card,
	.pj-process,
	.pj-stay-list div,
	.pj-audience-grid article,
	.pj-cta__inner {
		border-radius: 1.2rem;
	}
}
/* ==================================================
   Private Journeys - Inspiration Rail
================================================== */

.pj-inspirations {
	position: relative;
	padding: 5.8rem 0;
	background: #20231f;
	color: #fff;
	overflow: hidden;
}

.pj-inspirations::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 10% 50%, rgba(155, 107, 67, 0.16), transparent 34%),
		linear-gradient(90deg, rgba(0, 0, 0, 0.38), transparent 45%);
	pointer-events: none;
}

.pj-inspirations__intro {
	position: relative;
	z-index: 1;
	max-width: 360px;
	margin-left: max(1.5rem, calc((100vw - 1180px) / 2));
	margin-bottom: 2.5rem;
}

.pj-inspirations__intro .pj-eyebrow {
	color: rgba(255, 255, 255, 0.7);
}

.pj-inspirations__intro h2 {
	margin: 0 0 1.2rem;
	font-size: clamp(2rem, 3.4vw, 3.4rem);
	line-height: 1.02;
	letter-spacing: -0.045em;
	color: #fff;
}

.pj-inspirations__intro p {
	margin: 0;
	font-size: 0.98rem;
	line-height: 1.75;
	color: rgba(255, 255, 255, 0.74);
}

.pj-inspirations__rail {
	position: relative;
	z-index: 1;
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: minmax(260px, 320px);
	gap: 1.25rem;
	overflow-x: auto;
	overscroll-behavior-inline: contain;
	scroll-snap-type: inline mandatory;
	padding: 0 max(1.5rem, calc((100vw - 1180px) / 2)) 1rem;
	scrollbar-width: thin;
}

.pj-inspirations__rail::-webkit-scrollbar {
	height: 8px;
}

.pj-inspirations__rail::-webkit-scrollbar-track {
	background: rgba(255, 255, 255, 0.08);
}

.pj-inspirations__rail::-webkit-scrollbar-thumb {
	background: rgba(255, 255, 255, 0.28);
	border-radius: 999px;
}

.pj-inspiration-card {
	position: relative;
	height: 430px;
	min-width: 0;
	overflow: hidden;
	border-radius: 0;
	background: #1f1812;
	scroll-snap-align: start;
	box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
}

.pj-inspiration-card img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	display: block;
	transform: scale(1.02);
	transition: transform 0.6s ease;
}

.pj-inspiration-card:hover img {
	transform: scale(1.08);
}

.pj-inspiration-card__overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(20, 14, 9, 0.06) 0%, rgba(20, 14, 9, 0.35) 45%, rgba(20, 14, 9, 0.84) 100%),
		linear-gradient(90deg, rgba(20, 14, 9, 0.25), transparent);
}

.pj-inspiration-card__content {
	position: absolute;
	left: 1.35rem;
	right: 1.35rem;
	bottom: 1.35rem;
	z-index: 2;
}

.pj-inspiration-card__content span {
	position: absolute;
	right: 0;
	bottom: 100%;
	margin-bottom: 15rem;
	font-size: 0.66rem;
	line-height: 1;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.82);
	font-weight: 700;
}

.pj-inspiration-card__content h3 {
	margin: 0 0 1rem;
	max-width: 260px;
	font-size: 1rem;
	line-height: 1.25;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #fff;
}

.pj-inspiration-card__content a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2.6rem;
	padding: 0.75rem 1.1rem;
	border: 1px solid rgba(255, 255, 255, 0.72);
	color: #fff;
	font-size: 0.68rem;
	line-height: 1;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	text-decoration: none;
	transition: background 0.2s ease, border-color 0.2s ease;
}

.pj-inspiration-card__content a:hover {
	background: rgba(255, 255, 255, 0.12);
	border-color: #fff;
}

@media (min-width: 1100px) {
	.pj-inspirations {
		display: grid;
		grid-template-columns: minmax(260px, calc((100vw - 1180px) / 2 + 330px)) 1fr;
		align-items: center;
		gap: 1rem;
	}

	.pj-inspirations__intro {
		margin: 0 0 0 max(1.5rem, calc((100vw - 1180px) / 2));
		padding-right: 1.5rem;
	}

	.pj-inspirations__rail {
		padding-left: 0;
	}
}

@media (max-width: 900px) {
	.pj-inspirations {
		padding: 4.5rem 0;
	}

	.pj-inspirations__rail {
		grid-auto-columns: minmax(240px, 78vw);
	}

	.pj-inspiration-card {
		height: 390px;
	}
}

@media (max-width: 640px) {
	.pj-inspirations__intro {
		max-width: none;
		margin-right: 1.5rem;
	}

	.pj-inspiration-card {
		height: 370px;
	}
}
/* Remove sidebar from WP Travel Engine / single trip pages */
.single-trip .widget-area,
.single-trip #secondary,
.single-trip .sidebar {
	display: none !important;
}

.single-trip .content-area,
.single-trip .site-main,
.single-trip #primary {
	width: 100% !important;
	max-width: 100% !important;
}

.single-trip .site-content {
	display: block !important;
}