/* =========================
   SALU MESA — GLOBAL
   ========================= */

/* Lux separator line */
.lux-separator {
  border: none !important;
  height: 2px;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0),
    rgba(255,200,120,0.9),
    rgba(255,255,255,0.8),
    rgba(255,200,120,0.9),
    rgba(0,0,0,0)
  );
  box-shadow:
    0 0 12px rgba(255,200,120,0.6),
    0 0 25px rgba(255,200,120,0.3);
}

/* Hero button glow */
.hero-button-glow .wp-block-button__link {
  position: relative;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.6);
  color: #fff;
  box-shadow:
    0 0 8px rgba(255,200,120,0.25),
    0 0 20px rgba(255,170,60,0.18);
  transition: all 0.25s ease;
}
.hero-button-glow .wp-block-button__link:hover {
  box-shadow:
    0 0 12px rgba(255,215,140,0.45),
    0 0 30px rgba(255,180,70,0.35);
  transform: translateY(-2px);
}

/* =========================
   HEADER OVERLAY
   ========================= */

:root {
  --header-pad-y: 16px;
  --header-pad-x: 28px;
  --nav-font-size: 12px;
  --nav-letter-spacing: 0.16em;
  --nav-gap: 18px;
}

.header-overlay {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  background: linear-gradient(to bottom, rgba(0,0,0,0.55), rgba(0,0,0,0));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: var(--header-pad-y) var(--header-pad-x);
}

.header-overlay,
.header-overlay .wp-block-group,
.header-overlay .wp-block-columns,
.header-overlay .wp-block-column,
.header-overlay .wp-block-navigation,
.header-overlay .wp-block-buttons {
  background: transparent !important;
}

.header-overlay .wp-block-columns {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: nowrap;
}

.header-overlay .wp-block-navigation__container {
  display: flex;
  gap: var(--nav-gap);
  white-space: nowrap;
}

.header-overlay .wp-block-navigation a {
  text-transform: uppercase;
  letter-spacing: var(--nav-letter-spacing);
  font-size: var(--nav-font-size);
  opacity: 0.85;
}
.header-overlay .wp-block-navigation a:hover { opacity: 1; }

.header-overlay .wp-block-site-title a {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-weight: 400;
  font-size: clamp(18px, 2vw, 28px);
  text-decoration: none;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.header-overlay .wp-block-site-title a::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 70px;
  height: 2px;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0),
    rgba(255,200,120,0.95),
    rgba(255,255,255,0.85),
    rgba(255,200,120,0.95),
    rgba(0,0,0,0)
  );
  box-shadow:
    0 0 10px rgba(255,200,120,0.55),
    0 0 18px rgba(255,200,120,0.25);
}

body:not(.home) .wp-site-blocks { padding-top: 86px; }
.home .wp-site-blocks { padding-top: 0 !important; }

/* =========================
   BOOKING HERO
   ========================= */

.booking-hero {
  padding: 0 !important;
  overflow-x: hidden; /* (from later fix block) */
}

/* Remove theme container width ONLY inside hero */
.booking-hero > .wp-block-group__inner-container,
.booking-hero .wp-block-group__inner-container {
  max-width: none !important;
  width: 100% !important;
  padding: 0 !important;
}

/* Layout */
.booking-hero .wp-block-columns {
  margin: 0 !important;
  gap: 0 !important;

  /* final effective value from your last block */
  min-height: min(92vh, 860px) !important;

  align-items: stretch !important; /* reinforced later */
}

/* Force 50/50 split */
.booking-hero .wp-block-columns > .wp-block-column {
  flex: 0 0 50% !important;
  width: 50% !important;
  min-width: 0 !important;
}

/* Right side (image column) */
.booking-hero .wp-block-column:last-child {
  position: relative;
  overflow: hidden;
}

.booking-right.wp-block-cover {
  min-height: calc(100vh - 80px);
  height: calc(100vh - 80px);
}
.booking-right .wp-block-cover__inner-container { display: none; }

/* If using Image instead of Cover */
.booking-hero .wp-block-column:last-child img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block;
}

/* =========================
   LEFT SIDE (booking-left)
   ========================= */

/* Combined final booking-left rules (order preserved) */
.booking-left {
  --rail: 640px; /* defined in multiple places; final keeps 640 */

  background: #070707;
  color: #f4f1ea;

  display: flex;
  flex-direction: column;

  /* final effective */
  justify-content: flex-start !important;

  gap: 18px;

  /* final padding rules (later overrides win) */
  padding-left: clamp(24px, 5vw, 72px) !important;
  padding-right: clamp(24px, 5vw, 64px) !important;
  padding-top: clamp(44px, 7vh, 86px) !important;
  padding-bottom: 48px !important;

  align-items: flex-start; /* you added this in the “rail” block */
}

/* Keep key content on the rail */
.booking-left h1,
.booking-left .wp-block-separator,
.booking-left p,
.booking-left .features-row,
.booking-left .booking-formbox {
  max-width: var(--rail);
  width: 100%;
}

/* Headline control + wrapping fixes (merged) */
.booking-left h1 {
  margin: 0 !important;
  max-width: 14ch; /* later override from 12ch to 14ch */
  line-height: 0.92 !important;
  letter-spacing: 0.02em;

  white-space: normal;
  word-break: normal !important;
  overflow-wrap: normal !important;
  hyphens: none !important;
}

/* If your theme is forcing break-all somewhere */
.booking-left h1,
.booking-left h1 * {
  word-break: normal !important;
  overflow-wrap: normal !important;
}

/* Paragraph readability (final values) */
.booking-left p {
  font-size: 15px !important;
  line-height: 1.55 !important;
  opacity: 0.88;
  margin: 0 0 10px 0 !important;
}

/* Small label “Private Dining” */
.booking-left .wp-block-paragraph:first-child {
  font-size: 13px !important;
  letter-spacing: 0.08em;
  text-transform: none;
  opacity: 0.85;
}

/* Separator spacing (final values) */
.booking-left hr,
.booking-left .wp-block-separator {
  margin: 18px 0 !important;
  opacity: 0.9;
}

/* Reduce surprise default spacing that can create "mystery height" */
.booking-left > * {
  margin-top: 0 !important;
}

/* Kill any weird negative margins Gutenberg/theme might apply */
.booking-left .wp-block-group,
.booking-left .wp-block-columns,
.booking-left .wp-block-column,
.booking-left h1,
.booking-left p,
.booking-left .wp-block-heading {
  margin-left: 0 !important;
}

/* =========================
   FEATURES ROW
   ========================= */

/* Final effective FEATURES implementation is GRID (your later override) */
.booking-left .features-row {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  column-gap: 34px !important;
  row-gap: 0 !important;
  margin-top: 18px !important;
  align-items: start;
}

/* Remove flex rules that could still be affecting columns */
.booking-left .features-row > .wp-block-column {
  min-width: 0 !important;
  max-width: none !important;
  width: auto !important;
}

/* Keep icon + title horizontal */
.booking-left .features-row .wp-block-row {
  display: flex !important;
  align-items: center;
  gap: 14px;
  flex-wrap: nowrap;
}

/* Titles + subtitles readable */
.booking-left .features-row h2 {
  margin: 0 !important;
  font-size: 15px !important;
  letter-spacing: 0.05em;
  line-height: 1.2 !important;
}

.booking-left .features-row p {
  margin: 0 !important;
  font-size: 13px !important;
  opacity: 0.75;
  margin-top: 6px !important;
  line-height: 1.25 !important;
}

/* Circle */
.booking-left .feature-circle {
  width: 28px;
  height: 28px;
  border: 2.5px solid rgba(212,168,92,0.95);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 6px rgba(212,168,92,0.35);
}

/* =========================
   BOOKING FORM CARD
   ========================= */

.booking-left .booking-formbox {
  max-width: 560px;
  width: 100%;

  /* final effective margin-top */
  margin-top: 28px !important;

  padding: 48px 40px;
  border: 1.5px solid rgba(212,168,92,0.65);
  border-radius: 18px;
  background: rgba(10,10,10,0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow:
    0 0 18px rgba(212,168,92,0.15),
    0 0 40px rgba(0,0,0,0.6);
}

/* CF7 Layout */
.booking-formbox .wpcf7 { margin: 0 !important; }
.booking-formbox .wpcf7-form p { margin: 0 !important; padding: 0 !important; }
.booking-formbox .wpcf7-form br { display: none !important; }

.booking-formbox .sm-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 16px;
}
.booking-formbox .sm-field--full { grid-column: 1 / -1; }

/* Inputs */
.booking-formbox .wpcf7 input[type="text"],
.booking-formbox .wpcf7 input[type="email"],
.booking-formbox .wpcf7 input[type="date"],
.booking-formbox .wpcf7 input[type="number"],
.booking-formbox .wpcf7 textarea {
  width: 100%;
  background: rgba(0,0,0,0.35) !important;
  color: #f4f1ea !important;
  border: 1px solid rgba(255,255,255,0.18) !important;
  border-radius: 10px !important;
  padding: 14px 14px !important;
  box-sizing: border-box;
}

.booking-formbox .wpcf7 textarea {
  min-height: 140px;
  resize: vertical;
}

.booking-formbox .wpcf7 input:focus,
.booking-formbox .wpcf7 textarea:focus {
  border-color: rgba(255,200,120,0.55) !important;
  box-shadow:
    0 0 0 3px rgba(255,200,120,0.10),
    inset 0 0 0 1px rgba(255,200,120,0.18);
}

/* Submit */
.booking-formbox .wpcf7 input[type="submit"] {
  width: 100%;
  margin-top: 16px;
  background: transparent !important;
  color: #f4f1ea !important;
  border: 2px solid rgba(255,200,120,0.75) !important;
  border-radius: 12px !important;
  padding: 14px 16px !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 0 18px rgba(255,200,120,0.12);
  transition: 0.18s ease;
}
.booking-formbox .wpcf7 input[type="submit"]:hover {
  transform: translateY(-1px);
  border-color: rgba(255,225,160,0.95) !important;
  box-shadow:
    0 0 18px rgba(255,200,120,0.28),
    0 0 34px rgba(255,180,70,0.14);
}

/* =========================
   MOBILE
   ========================= */

@media (max-width: 1100px) {
  .booking-left { --rail: 600px; }
}

@media (max-width: 900px) {
  .booking-left {
    --rail: 100%;
    padding-top: 44px !important;
  }

  .booking-left { padding: 44px 22px; } /* your original mobile padding line */

  .booking-hero .wp-block-columns > .wp-block-column {
    flex: 0 0 100% !important;
    width: 100% !important;
  }

  .booking-right.wp-block-cover {
    height: 44vh;
    min-height: 44vh;
  }

  .booking-left .features-row {
    grid-template-columns: 1fr !important;
    row-gap: 18px !important;
  }

  .booking-formbox .sm-form__grid {
    grid-template-columns: 1fr;
  }
}
/* Remove top padding ONLY on Inquiries page */
body.page-id-92 .wp-site-blocks{
  padding-top: 0 !important;
}
/* Mobile: add breathing room so header overlay doesn't sit on top of content */
@media (max-width: 900px){
  body.page-id-92 .wp-site-blocks{
    padding-top: 78px !important; /* tweak 68–92px until perfect */
  }
}
@media (max-width: 900px){
  .booking-left .booking-formbox{
    padding: 34px 20px !important;
    border-radius: 16px;
  }
}
/* =========================
   MOBILE FIX — FORM NOT CLIPPING
   ========================= */
@media (max-width: 900px){

  /* Make sure nothing can create horizontal scroll */
  body.page-id-92{
    overflow-x: hidden;
  }

  /* Form card must fit the viewport */
  .booking-left .booking-formbox{
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box;
    padding: 28px 18px !important;  /* reduce from 48/40 for phones */
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  /* Force the form grid to 1 column on mobile */
  .booking-left .booking-formbox .sm-form__grid{
    grid-template-columns: 1fr !important;
  }

  /* Safety: inputs can’t overflow the card */
  .booking-left .booking-formbox .wpcf7 input,
  .booking-left .booking-formbox .wpcf7 textarea,
  .booking-left .booking-formbox .wpcf7 select{
    max-width: 100% !important;
    box-sizing: border-box;
  }
}
@media (max-width: 900px){

  /* Prevent any horizontal overflow site-wide on mobile */
  html, body{
    overflow-x: hidden !important;
  }

  /* Make the hero stack and remove forced heights */
  .booking-hero .wp-block-columns{
    min-height: 0 !important;
    height: auto !important;
  }
  .booking-hero .wp-block-columns > .wp-block-column{
    flex: 0 0 100% !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  /* Left side: constrain to viewport and use consistent padding */
  .booking-left{
    padding: 34px 16px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Hard fix: the card width is based on viewport, not parent % */
  .booking-left .booking-formbox{
    width: calc(100vw - 32px) !important;      /* 16px left + 16px right */
    max-width: calc(100vw - 32px) !important;
    box-sizing: border-box !important;

    padding: 24px 16px !important;
    margin: 22px 0 0 0 !important;            /* no side margins */
  }

  /* Force CF7 grid to 1 column and prevent any field overflow */
  .booking-left .booking-formbox .sm-form__grid{
    grid-template-columns: 1fr !important;
  }

  .booking-left .booking-formbox .wpcf7,
  .booking-left .booking-formbox .wpcf7 form,
  .booking-left .booking-formbox .wpcf7 p,
  .booking-left .booking-formbox .wpcf7 span,
  .booking-left .booking-formbox .wpcf7 input,
  .booking-left .booking-formbox .wpcf7 textarea,
  .booking-left .booking-formbox .wpcf7 select{
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }

  /* Image: make it a clean, intentional crop instead of “compressed” */
  .booking-right.wp-block-cover{
    height: 56vh !important;
    min-height: 56vh !important;
  }
  .booking-right.wp-block-cover .wp-block-cover__image-background{
    object-fit: cover !important;
    object-position: 50% 35% !important;
  }
  .booking-hero .wp-block-column:last-child img{
    height: 56vh !important;
    width: 100% !important;
    object-fit: cover !important;
    object-position: 50% 35% !important;
    display: block;
  }
}
/* ================================
   SALU MESA — REQUEST PAGE FIX
   ================================ */

/* Main split layout */
.request-hero {
  display: flex;
  min-height: 100vh;
}

/* Left content column */
.request-left {
  flex: 0 0 42%;
  padding: 120px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center; /* centers vertically */
}

/* Right image column */
.request-right {
  flex: 1;
  background-size: cover;
  background-position: center;
}

/* Feature row above form */
.feature-row {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  margin-bottom: 50px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Wider, more premium form box */
.reserve-form-box {
  width: 100%;
  max-width: 520px;
  margin-top: 40px;
}
/* =========================================
   SALU MESA — FORCE NON-50/50 GUTENBERG COLUMNS
   Add class "request-hero" to the Columns block
   ========================================= */

/* Full-bleed + remove theme width constraints */
.request-hero.wp-block-columns{
  width: 100vw !important;
  max-width: none !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  gap: 0 !important;
  min-height: 100vh;
  align-items: stretch;
}

/* IMPORTANT: kill theme's forced 50/50 flex-basis */
.request-hero.wp-block-columns > .wp-block-column{
  flex-basis: auto !important;
  width: auto !important;
  max-width: none !important;
}

/* Left column: 42% */
.request-hero.wp-block-columns > .wp-block-column:first-child{
  flex: 0 0 42% !important;
  width: 42% !important;
  padding: 120px 80px !important;
  display: flex;
  flex-direction: column;
  justify-content: center; /* removes dead vertical space */
}

/* Right column: 58% */
.request-hero.wp-block-columns > .wp-block-column:last-child{
  flex: 0 0 58% !important;
  width: 58% !important;
  padding: 0 !important;
  overflow: hidden;
}

/* Make the right-side image behave like a true hero */
.request-hero.wp-block-columns > .wp-block-column:last-child figure,
.request-hero.wp-block-columns > .wp-block-column:last-child .wp-block-image,
.request-hero.wp-block-columns > .wp-block-column:last-child img{
  height: 100%;
}
.request-hero.wp-block-columns > .wp-block-column:last-child img{
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  display: block;
}

/* Mobile stack */
@media (max-width: 900px){
  .request-hero.wp-block-columns{
    width: auto !important;
    margin-left: auto !important;
    margin-right: auto !important;
    min-height: auto !important;
    flex-direction: column !important;
  }
  .request-hero.wp-block-columns > .wp-block-column:first-child,
  .request-hero.wp-block-columns > .wp-block-column:last-child{
    flex: 0 0 auto !important;
    width: 100% !important;
  }
  .request-hero.wp-block-columns > .wp-block-column:first-child{
    padding: 80px 24px !important;
  }
  .request-hero.wp-block-columns > .wp-block-column:last-child{
    min-height: 420px;
  }
}
/* =========================================
   SALU MESA — INQUIRIES HERO (MOCK LAYOUT)
   Paste at VERY BOTTOM of Additional CSS
   ========================================= */

/* Full-bleed hero for Inquiries page (page-id-92) */
body.page-id-92 .booking-hero .wp-block-columns{
  width: 100vw !important;
  max-width: none !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  gap: 0 !important;
  min-height: 100vh !important;
  align-items: stretch !important;
}

/* Kill your forced 50/50 rule (this is the actual fix) */
body.page-id-92 .booking-hero .wp-block-columns > .wp-block-column{
  flex-basis: auto !important;
  width: auto !important;
  max-width: none !important;
  min-width: 0 !important;
}

/* Left column = ~42% */
body.page-id-92 .booking-hero .wp-block-columns > .wp-block-column:first-child{
  flex: 0 0 42% !important;
  width: 42% !important;
}

/* Right column = ~58% */
body.page-id-92 .booking-hero .wp-block-columns > .wp-block-column:last-child{
  flex: 0 0 58% !important;
  width: 58% !important;
  padding: 0 !important;
  overflow: hidden !important;
}

/* Left side: vertically balanced like mock */
body.page-id-92 .booking-left{
  justify-content: center !important; /* your code currently forces flex-start */
  padding-top: clamp(72px, 7vh, 110px) !important;
}

/* Make right-side image behave like a true hero crop */
body.page-id-92 .booking-hero .wp-block-column:last-child img,
body.page-id-92 .booking-right.wp-block-cover{
  width: 100% !important;
  height: 100% !important;
  min-height: 100vh !important;
  object-fit: cover !important;
  display: block !important;
}

/* Make the form feel larger (less dead black space) */
body.page-id-92 .booking-left .booking-formbox{
  max-width: 640px !important;  /* was 560 */
  width: 100% !important;
}

/* Mobile stack */
@media (max-width: 900px){
  body.page-id-92 .booking-hero .wp-block-columns{
    width: auto !important;
    margin-left: auto !important;
    margin-right: auto !important;
    min-height: auto !important;
    flex-direction: column !important;
  }
  body.page-id-92 .booking-hero .wp-block-columns > .wp-block-column:first-child,
  body.page-id-92 .booking-hero .wp-block-columns > .wp-block-column:last-child{
    flex: 0 0 auto !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  body.page-id-92 .booking-right.wp-block-cover,
  body.page-id-92 .booking-hero .wp-block-column:last-child img{
    min-height: 56vh !important;
    height: 56vh !important;
  }
}
@media (max-width: 900px){

  /* iOS date input can overflow its container — clamp it */
  .booking-left .booking-formbox input[type="date"]{
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    display: block !important;

    /* stop iOS from drawing outside your rounded input */
    border-radius: 10px !important;
    overflow: hidden !important;

    /* normalize iOS styling */
    -webkit-appearance: none !important;
    appearance: none !important;
  }

  /* Also clamp the wrapper CF7 often adds around inputs */
  .booking-left .booking-formbox .wpcf7-form-control-wrap{
    display: block !important;
    max-width: 100% !important;
  }
}
@media (max-width: 900px){
  .booking-hero .wp-block-columns{ display: flex; flex-direction: column !important; }
  .booking-hero .wp-block-columns > .wp-block-column:last-child{ order: -1; } /* image first */
  .booking-right.wp-block-cover{ height: 52vh !important; min-height: 52vh !important; }
}
@media (max-width: 900px){
  .booking-right.wp-block-cover::after{
    content:"";
    position:absolute;
    inset:0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 55%, rgba(0,0,0,0.9) 100%);
    pointer-events:none;
  }
}
/* =========================================
   SALU MESA — INQUIRIES (TYPO / COLOR / UI POLISH)
   Scope: page-id-92 only
   Paste at VERY BOTTOM
   ========================================= */

body.page-id-92{
  --sm-ivory: #f4f1ea;
  --sm-ivory-soft: rgba(244,241,234,.86);
  --sm-muted: rgba(244,241,234,.72);

  --sm-black: #060606;
  --sm-panel: #070707;

  --sm-gold: rgba(212,168,92,0.95);
  --sm-gold-soft: rgba(212,168,92,0.65);
  --sm-gold-glow: rgba(212,168,92,0.28);

  --sm-line: rgba(255,255,255,.14);
  --sm-line-strong: rgba(255,255,255,.18);
}

/* LEFT PANEL BACKDROP + TEXT COLOR */
body.page-id-92 .booking-left{
  background: radial-gradient(1200px 800px at 10% 20%, rgba(255,200,120,.06), rgba(0,0,0,0) 55%),
              linear-gradient(to bottom, #060606, #050505);
  color: var(--sm-ivory);
}

/* “Private Dining” label: small, airy, premium */
body.page-id-92 .booking-left .wp-block-paragraph:first-child{
  font-size: 12px !important;
  letter-spacing: .16em !important;
  text-transform: none !important;
  opacity: .82 !important;
  margin-bottom: 6px !important;
}

/* H1: luxury tracking + tighter leading like mock */
body.page-id-92 .booking-left h1{
  font-weight: 400 !important;
  letter-spacing: .06em !important;
  line-height: .92 !important;
  text-transform: uppercase !important;
  color: var(--sm-ivory) !important;
  text-shadow: 0 2px 18px rgba(0,0,0,.35);
}

/* Body copy: softer + readable */
body.page-id-92 .booking-left p{
  color: var(--sm-ivory-soft) !important;
  font-size: 14.5px !important;
  line-height: 1.6 !important;
}

/* Separator: thin gold line (less “rainbow”, more mock) */
body.page-id-92 .booking-left .wp-block-separator,
body.page-id-92 .booking-left hr{
  height: 1px !important;
  border: none !important;
  background: linear-gradient(to right,
    rgba(0,0,0,0),
    rgba(212,168,92,.95),
    rgba(244,241,234,.60),
    rgba(212,168,92,.95),
    rgba(0,0,0,0)
  ) !important;
  box-shadow: 0 0 12px rgba(212,168,92,.22) !important;
  opacity: .95 !important;
  margin: 18px 0 16px !important;
}

/* FEATURES: tighten hierarchy (title + subtext) */
body.page-id-92 .booking-left .features-row h2{
  color: var(--sm-ivory) !important;
  font-size: 13px !important;
  letter-spacing: .10em !important;
  text-transform: none !important;
  font-weight: 500 !important;
}

body.page-id-92 .booking-left .features-row p{
  color: var(--sm-muted) !important;
  font-size: 12.5px !important;
  line-height: 1.25 !important;
  margin-top: 6px !important;
}

/* Feature circle: slightly smaller + cleaner glow */
body.page-id-92 .booking-left .feature-circle{
  width: 26px !important;
  height: 26px !important;
  border: 2px solid var(--sm-gold) !important;
  box-shadow: 0 0 10px rgba(212,168,92,.22) !important;
}

/* FORM CARD: border + glow more like mock */
body.page-id-92 .booking-left .booking-formbox{
  background: rgba(8,8,8,.62) !important;
  border: 1.5px solid rgba(212,168,92,.55) !important;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.06) inset,
    0 0 18px rgba(212,168,92,.10),
    0 26px 80px rgba(0,0,0,.60) !important;
}

/* Form heading "Reserve Your Table": elegant underline */
body.page-id-92 .booking-left .booking-formbox .wp-block-heading,
body.page-id-92 .booking-left .booking-formbox h2{
  font-weight: 400 !important;
  letter-spacing: .02em !important;
  color: var(--sm-ivory) !important;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 18px !important;
}
body.page-id-92 .booking-left .booking-formbox .wp-block-heading::after,
body.page-id-92 .booking-left .booking-formbox h2::after{
  content:"";
  position:absolute;
  left: 0;
  bottom: 0;
  width: 180px;
  height: 1px;
  background: linear-gradient(to right, var(--sm-gold), rgba(255,255,255,.18), rgba(0,0,0,0));
  box-shadow: 0 0 10px rgba(212,168,92,.18);
}

/* INPUTS: thinner borders + premium focus */
body.page-id-92 .booking-formbox .wpcf7 input[type="text"],
body.page-id-92 .booking-formbox .wpcf7 input[type="email"],
body.page-id-92 .booking-formbox .wpcf7 input[type="date"],
body.page-id-92 .booking-formbox .wpcf7 input[type="number"],
body.page-id-92 .booking-formbox .wpcf7 textarea{
  background: rgba(0,0,0,.32) !important;
  border: 1px solid rgba(255,255,255,.16) !important;
  color: var(--sm-ivory) !important;
}

body.page-id-92 .booking-formbox .wpcf7 input::placeholder,
body.page-id-92 .booking-formbox .wpcf7 textarea::placeholder{
  color: rgba(244,241,234,.48) !important;
}

body.page-id-92 .booking-formbox .wpcf7 input:focus,
body.page-id-92 .booking-formbox .wpcf7 textarea:focus{
  border-color: rgba(212,168,92,.55) !important;
  box-shadow:
    0 0 0 3px rgba(212,168,92,.10),
    0 0 18px rgba(212,168,92,.10) !important;
  outline: none !important;
}

/* SUBMIT: stronger gold outline + tighter typography */
body.page-id-92 .booking-formbox .wpcf7 input[type="submit"]{
  border: 2px solid rgba(212,168,92,.78) !important;
  color: var(--sm-ivory) !important;
  letter-spacing: .18em !important;
  font-size: 12px !important;
  padding: 14px 16px !important;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.06) inset,
    0 0 18px rgba(212,168,92,.12) !important;
}
body.page-id-92 .booking-formbox .wpcf7 input[type="submit"]:hover{
  border-color: rgba(255,225,160,.95) !important;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.08) inset,
    0 0 26px rgba(212,168,92,.22) !important;
  transform: translateY(-1px);
}

/* Tiny polish: reduce “boxy” feeling */
body.page-id-92 .booking-left .booking-formbox{
  border-radius: 18px !important;
}
body.page-id-92 .booking-formbox .wpcf7 input,
body.page-id-92 .booking-formbox .wpcf7 textarea{
  border-radius: 10px !important;
}
/* Tighten intro paragraph on Inquiries page */
body.page-id-92 .booking-left > p:nth-of-type(2) {
  max-width: 36ch;       /* controls line length */
  line-height: 1.55;     /* tighter but still elegant */
  letter-spacing: 0.01em;
}
/* =========================================
   INQUIRIES — FIX INTRO COPY RHYTHM
   ========================================= */

/* Target the intro paragraph block(s) under the H1 */
body.page-id-92 .booking-left h1 + .wp-block-separator + p,
body.page-id-92 .booking-left h1 + hr + p{
  max-width: 34ch !important;      /* controlled line length */
  font-size: 15px !important;      /* a touch bigger */
  line-height: 1.55 !important;    /* tighter rhythm */
  color: rgba(244,241,234,.82) !important;
  letter-spacing: .01em !important;
  margin-top: 10px !important;     /* tighten after separator */
  margin-bottom: 18px !important;  /* tighten before features/card */
}

/* If your intro is split into two paragraph blocks, tighten the second */
body.page-id-92 .booking-left h1 + .wp-block-separator + p + p{
  margin-top: 6px !important;
}

/* Tighten separator spacing (helps “awkward” feeling a lot) */
body.page-id-92 .booking-left .wp-block-separator,
body.page-id-92 .booking-left hr{
  margin: 14px 0 10px !important;
}
/* =========================================
   INQUIRIES — MAKE INTRO MORE PROMINENT
   ========================================= */

/* First intro line */
body.page-id-92 .booking-left h1 + .wp-block-separator + p:first-of-type{
  font-size: 18px !important;
  line-height: 1.6 !important;
  letter-spacing: 0.02em !important;
  color: rgba(244,241,234,.95) !important;
  max-width: 36ch !important;
  margin-top: 12px !important;
  margin-bottom: 10px !important;
}

/* Second paragraph */
body.page-id-92 .booking-left h1 + .wp-block-separator + p + p{
  font-size: 16px !important;
  line-height: 1.6 !important;
  color: rgba(244,241,234,.82) !important;
  max-width: 38ch !important;
  margin-top: 6px !important;
  margin-bottom: 24px !important;
}
/* =========================================
   INQUIRIES — STRONGER SUBMIT BUTTON
   ========================================= */

body.page-id-92 .booking-formbox .wpcf7 input[type="submit"]{
  font-size: 14px !important;        /* was 12 */
  font-weight: 600 !important;       /* more presence */
  letter-spacing: 0.22em !important; /* stronger luxury feel */
  padding: 16px 18px !important;     /* taller button */
  border-width: 2.5px !important;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.08) inset,
    0 0 26px rgba(212,168,92,.22) !important;
}

/* Stronger hover */
body.page-id-92 .booking-formbox .wpcf7 input[type="submit"]:hover{
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.12) inset,
    0 0 36px rgba(212,168,92,.35) !important;
}
/* =========================
   SALU MESA — CUISINE (OPTION 3)
   Page wrapper class: cuisine-page
   Gallery class: cuisine-grid
   ========================= */

/* Page background + spacing */
.cuisine-page{
  background: #070707;
  padding: clamp(48px, 6vw, 110px) 20px;
}

/* Constrain content width so it feels premium */
.cuisine-page .wp-block-group__inner-container{
  max-width: 1120px;
  margin: 0 auto;
}

/* Title */
.cuisine-page .cuisine-title{
  text-align: center;
  margin: 0 0 10px 0;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  font-size: clamp(28px, 3.2vw, 52px);
  line-height: 1.08;
}

/* Subtitle */
.cuisine-page .cuisine-subtitle{
  text-align: center;
  margin: 0 0 clamp(26px, 3vw, 46px) 0;
  color: rgba(255,255,255,0.65);
  font-size: 16px;
  letter-spacing: 0.06em;
}

/* Gallery grid spacing */
.cuisine-page .cuisine-grid{
  margin: 0;
}

/* Make core WP Gallery look like the mock */
.cuisine-page .cuisine-grid .wp-block-gallery,
.cuisine-page .cuisine-grid.wp-block-gallery{
  gap: 18px !important; /* spacing between tiles */
}

/* Ensure consistent “portfolio tile” look */
.cuisine-page .cuisine-grid figure.wp-block-image,
.cuisine-page .cuisine-grid figure.wp-block-gallery figure{
  margin: 0 !important;
  border-radius: 10px;
  overflow: hidden;
  background: #0b0b0b;
  transform: translateZ(0);
}


/* Images fill tile */
.cuisine-page .cuisine-grid img{
  width: 100% !important;
  height: 100% !important;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 3; /* matches the “tight editorial” feel */
  transition: transform 280ms ease, filter 280ms ease;
  filter: contrast(1.03) saturate(1.02);
}

/* Hover = subtle luxury */
@media (hover:hover){
  .cuisine-page .cuisine-grid figure:hover img{
    transform: scale(1.02);
    filter: brightness(0.92) contrast(1.06) saturate(1.05);
  }
}

/* Remove any default captions spacing if present */
.cuisine-page .cuisine-grid figcaption{
  display: none !important;
}

/* Mobile: 2 columns, tighter spacing */
@media (max-width: 860px){
  .cuisine-page{
    padding: 44px 16px;
  }
  .cuisine-page .cuisine-grid .wp-block-gallery,
  .cuisine-page .cuisine-grid.wp-block-gallery{
    gap: 12px !important;
  }
  /* Many themes respect the gallery column setting;
     this helps force a clean 2-col feel where possible */
  .cuisine-page .wp-block-gallery.has-nested-images.columns-3 figure{
    width: calc(50% - 6px) !important;
  }
}

/* Small mobile: 1 column (still looks premium) */
@media (max-width: 520px){
  .cuisine-page .wp-block-gallery.has-nested-images figure{
    width: 100% !important;
  }
  .cuisine-page .cuisine-title{
    letter-spacing: 0.14em;
  }
}/* Widen the Cuisine page container */
.cuisine-page{
  width: 100%;
}

.cuisine-page .wp-block-group__inner-container{
  max-width: 1200px !important;  /* try 1200–1320 */
  margin: 0 auto !important;
}

/* If your theme wraps everything in a narrow content container, override it */
.cuisine-page .wp-site-blocks,
.cuisine-page .wp-block-post-content,
.cuisine-page .entry-content,
.cuisine-page .wp-block-group{
  max-width: none !important;
}

/* Make sure the gallery can actually expand */
.cuisine-page .cuisine-grid.wp-block-gallery.has-nested-images{
  width: 100% !important;
  max-width: 1200px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
/* =========================
   CUISINE PAGE — unify background + remove "poster on gray wall"
   Requires: outer Group has class "cuisine-page"
   ========================= */

/* 1) Make the whole page canvas black */
body:has(.cuisine-page){
  background: #070707 !important;
}

/* WordPress site wrappers that often carry gray */
body:has(.cuisine-page) .wp-site-blocks,
body:has(.cuisine-page) .wp-block-group,
body:has(.cuisine-page) .wp-block-post-content,
body:has(.cuisine-page) main,
body:has(.cuisine-page) .site,
body:has(.cuisine-page) .site-content,
body:has(.cuisine-page) .content-area,
body:has(.cuisine-page) .entry-content{
  background: #070707 !important;
}

/* 2) Kill the narrow content constraint (your “poster” effect) */
body:has(.cuisine-page) .cuisine-page{
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: clamp(56px, 6vw, 110px) 24px !important;
}

/* 3) Set your intended content width (premium) */
body:has(.cuisine-page) .cuisine-page .wp-block-group__inner-container{
  max-width: 1240px !important;  /* bump to 1320 if you want */
  margin: 0 auto !important;
}

/* 4) Optional: add a deliberate vignette so black feels cinematic (not gray) */
body:has(.cuisine-page) .cuisine-page{
  background:
    radial-gradient(1200px 800px at 50% 0%,
      rgba(255,255,255,0.05),
      rgba(0,0,0,0) 55%),
    #070707 !important;
}
/* =========================
   CUISINE PAGE — header transparency + seamless top blend
   ========================= */

/* Make the header transparent on this page only */
body.page-id-521 .wp-site-blocks > header,
body.page-id-521 header.wp-block-template-part,
body.page-id-521 .wp-block-group.is-layout-constrained.wp-block-group-is-layout-constrained:has(.wp-block-site-title),
body.page-id-521 header{
  background: transparent !important;
  box-shadow: none !important;
}

/* If your theme adds a background to the nav bar / header container */
body.page-id-521 header *{
  background: transparent !important;
}

/* Remove any top padding/margin that creates a visible seam */
body.page-id-521 .wp-site-blocks{
  background: #070707 !important;
}

/* Give the cuisine section a deliberate top fade so it melts into the header */
body.page-id-521 .cuisine-page{
  position: relative;
  background: #070707 !important;
}

body.page-id-521 .cuisine-page::before{
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: -80px;             /* reaches into the header area */
  height: 140px;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(7,7,7,0) 0%,
    rgba(7,7,7,0.55) 35%,
    rgba(7,7,7,1) 100%
  );
}
/* =========================
   JETPACK CAROUSEL — CUISINE PAGE
   Hide always-on caption under the image (keep ⓘ panel)
   ========================= */

body.page-id-521 #jp-carousel-wrap .jp-carousel-titleanddesc,
body.page-id-521 #jp-carousel-wrap .jp-carousel-titleanddesc-container,
body.page-id-521 #jp-carousel-wrap .jp-carousel-caption,
body.page-id-521 #jp-carousel-wrap .jp-carousel-caption p {
  display: none !important;
}
html { filter: none !important; }
/* =========================
   SALU MESA — MOBILE MENU FIX
   ========================= */

@media (max-width: 768px) {

  /* Force mobile menu to stay within screen height */
  .wp-block-navigation__responsive-container.is-menu-open {
    height: 100vh !important;
    max-height: 100vh !important;
    overflow-y: auto !important;
    padding-top: 80px !important; /* adjust if needed */
    padding-bottom: 40px !important;
  }

  /* Reduce spacing between menu items */
  .wp-block-navigation__responsive-container .wp-block-navigation-item {
    margin-bottom: 12px !important;
  }

  /* Slightly reduce font size if needed */
  .wp-block-navigation__responsive-container a {
    font-size: 18px !important;
  }

}
/* =========================================
   MOBILE NAV OVERLAY — FIX Z-INDEX + TRANSFORM TRAP
   ========================================= */

@media (max-width: 768px) {

  /* Gutenberg adds this class when the responsive nav is open */
  body.has-modal-open {
    overflow: hidden !important;
  }

  /* Kill the common “fixed inside transformed parent” bug */
  body.has-modal-open .wp-site-blocks,
  body.has-modal-open .wp-block-group,
  body.has-modal-open .wp-block-cover,
  body.has-modal-open .wp-block-template-part {
    transform: none !important;
    filter: none !important;
  }

  /* Force the menu overlay to be a true full-screen overlay */
  .wp-block-navigation__responsive-container.is-menu-open {
    position: fixed !important;
    inset: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    max-height: 100vh !important;
    overflow-y: auto !important;
    z-index: 2147483647 !important; /* nuke everything else */
    background: #fff !important;     /* ensure it isn’t transparent */
    -webkit-overflow-scrolling: touch;
  }

  /* Make sure the close X is above everything */
  .wp-block-navigation__responsive-container-close {
    position: fixed !important;
    top: 18px !important;
    right: 18px !important;
    z-index: 2147483647 !important;
  }

  /* Optional: pull the menu list up a bit */
  .wp-block-navigation__responsive-container-content {
    padding-top: 90px !important;
    padding-bottom: 40px !important;
  }
}
/* =========================================
   MOBILE NAV — FORCE CLOSE (X) BUTTON VISIBLE
   ========================================= */

@media (max-width: 768px) {

  /* Make sure the menu overlay itself is on top */
  .wp-block-navigation__responsive-container.is-menu-open {
    position: fixed !important;
    inset: 0 !important;
    z-index: 999999 !important;
  }

  /* Force the close button to exist, show, and stay tappable */
  .wp-block-navigation__responsive-container-close {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;

    position: fixed !important;
    top: 18px !important;
    right: 18px !important;

    z-index: 1000000 !important;

    width: 44px !important;
    height: 44px !important;

    align-items: center !important;
    justify-content: center !important;

    /* tap friendliness */
    pointer-events: auto !important;
    cursor: pointer !important;
  }

  /* Ensure the SVG/icon inside is visible */
  .wp-block-navigation__responsive-container-close svg,
  .wp-block-navigation__responsive-container-close span {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  /* If something is blocking taps, nuke it */
  .wp-block-navigation__responsive-container.is-menu-open * {
    pointer-events: auto !important;
  }
}
/* ==========================================
   SALU MESA – EXPERIENCES PAGE
   Page ID remains the same even after slug change
   ========================================== */

.page-id-1052 {
  background: #050505;
}

.page-id-1052 .site-main,
.page-id-1052 .entry-content,
.page-id-1052 main {
  background: #050505;
  color: #f4eee6;
}

/* Base typography */
.page-id-1052 h1,
.page-id-1052 h2,
.page-id-1052 h3,
.page-id-1052 h4 {
  font-family: "Cormorant Garamond", serif;
  color: #f2e6d8;
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: 0.01em;
  margin-top: 0;
}

.page-id-1052 p,
.page-id-1052 li,
.page-id-1052 .wp-block-button__link {
  font-family: "Inter", sans-serif;
  color: #f3eee8;
}

/* ==========================================
   HERO
   ========================================== */

.page-id-1052 .sm-exp-hero {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
  padding: 64px 24px 86px;
}

.page-id-1052 .sm-exp-title {
  font-size: clamp(3.3rem, 5.6vw, 5.1rem);
  text-transform: uppercase;
  letter-spacing: 0.025em;
  margin: 0 0 22px;
}

.page-id-1052 .sm-exp-lead {
  max-width: 760px;
  margin: 0 auto 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  line-height: 1.45;
  color: #f0e4d7;
}

.page-id-1052 .sm-exp-sublead {
  max-width: 760px;
  margin: 0 auto 34px;
  font-size: 1.05rem;
  line-height: 1.72;
  color: rgba(243, 238, 232, 0.92);
}

/* ==========================================
   BUTTONS
   ========================================== */

.page-id-1052 .sm-exp-buttons {
  justify-content: center;
  margin-top: 8px;
}

.page-id-1052 .sm-exp-button .wp-block-button__link,
.page-id-1052 .sm-exp-buttons .wp-block-button__link {
  background: transparent !important;
  color: #f2dfc6 !important;
  border: 1px solid rgba(198, 162, 90, 0.82);
  border-radius: 0;
  padding: 14px 42px;
  min-width: 220px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  line-height: 1;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
  transition: all 0.28s ease;
}

.page-id-1052 .sm-exp-button .wp-block-button__link:hover,
.page-id-1052 .sm-exp-buttons .wp-block-button__link:hover {
  background: rgba(198, 162, 90, 0.08) !important;
  border-color: #c6a25a;
  color: #fff2df !important;
  transform: translateY(-1px);
}

/* ==========================================
   DIVIDERS
   ========================================== */

.page-id-1052 .sm-exp-divider,
.page-id-1052 .wp-block-separator {
  max-width: 1460px;
  margin: 0 auto;
  border: none;
  opacity: 1;
}

.page-id-1052 .sm-exp-divider::before,
.page-id-1052 .wp-block-separator::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    to right,
    rgba(198,162,90,0),
    rgba(198,162,90,0.28) 18%,
    rgba(198,162,90,0.95) 50%,
    rgba(198,162,90,0.28) 82%,
    rgba(198,162,90,0)
  );
}

.page-id-1052 .wp-block-separator:not(.is-style-wide):not(.is-style-dots) {
  background: transparent;
  height: auto;
}

/* ==========================================
   SERVICES
   ========================================== */

.page-id-1052 .sm-exp-services {
  max-width: 1460px;
  margin: 0 auto;
  padding: 84px 56px 96px;
  gap: 120px;
  align-items: start;
}

.page-id-1052 .sm-exp-service-col {
  padding: 0 10px;
}

.page-id-1052 .sm-exp-services > .wp-block-column:first-child {
  padding-right: 44px;
}

.page-id-1052 .sm-exp-services > .wp-block-column:last-child {
  padding-left: 44px;
  border-left: 1px solid rgba(198, 162, 90, 0.15);
}

.page-id-1052 .sm-exp-section-title {
  font-size: clamp(2.35rem, 3.2vw, 3.7rem);
  margin: 0 0 18px;
}

.page-id-1052 .sm-exp-kicker {
  font-family: "Cormorant Garamond", serif !important;
  font-style: italic;
  font-size: 1.28rem;
  line-height: 1.42;
  color: #e5d4bb !important;
  margin: 0 0 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(198, 162, 90, 0.26);
}

.page-id-1052 .sm-exp-body {
  max-width: 540px;
  margin: 0 0 24px;
  font-size: 1.05rem;
  line-height: 1.82;
  color: rgba(243, 238, 232, 0.94);
}

.page-id-1052 .sm-exp-label {
  font-family: "Cormorant Garamond", serif !important;
  font-size: 1.5rem;
  line-height: 1.3;
  color: #f0e0ca !important;
  margin: 26px 0 12px;
}

.page-id-1052 .sm-exp-bullet {
  margin: 0 0 7px;
  font-size: 1.04rem;
  line-height: 1.72;
  color: rgba(243, 238, 232, 0.96);
}

.page-id-1052 .sm-exp-note {
  margin-top: 30px;
  font-family: "Cormorant Garamond", serif !important;
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.4;
  color: #e5d5c0 !important;
}

/* ==========================================
   CTA
   ========================================== */

.page-id-1052 .sm-exp-cta {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  padding: 78px 24px 22px;
}

.page-id-1052 .sm-exp-cta-title {
  font-size: clamp(2.7rem, 4vw, 4.4rem);
  margin: 0 0 20px;
}

.page-id-1052 .sm-exp-cta-text {
  max-width: 760px;
  margin: 0 auto 32px;
  font-size: 1.06rem;
  line-height: 1.8;
  color: rgba(243, 238, 232, 0.92);
}

/* ==========================================
   HELP WITH THEME CONTENT WIDTH
   ========================================== */

.page-id-1052 .entry-content,
.page-id-1052 .wp-site-blocks,
.page-id-1052 .is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
  max-width: none;
}

.page-id-1052 .alignwide {
  max-width: 1460px;
}

.page-id-1052 .alignfull {
  max-width: 100%;
}

/* ==========================================
   DESKTOP POLISH
   ========================================== */

@media (min-width: 1280px) {
  .page-id-1052 .sm-exp-hero {
    padding-top: 76px;
    padding-bottom: 94px;
  }

  .page-id-1052 .sm-exp-services {
    padding-top: 92px;
    padding-bottom: 102px;
    gap: 132px;
  }

  .page-id-1052 .sm-exp-cta {
    padding-top: 86px;
  }
}

/* ==========================================
   TABLET
   ========================================== */

@media (max-width: 1024px) {
  .page-id-1052 .sm-exp-hero {
    padding: 54px 20px 68px;
  }

  .page-id-1052 .sm-exp-title {
    font-size: clamp(2.9rem, 7vw, 4.2rem);
  }

  .page-id-1052 .sm-exp-services {
    padding: 64px 28px 72px;
    gap: 56px;
  }

  .page-id-1052 .sm-exp-services > .wp-block-column:first-child {
    padding-right: 24px;
  }

  .page-id-1052 .sm-exp-services > .wp-block-column:last-child {
    padding-left: 24px;
  }

  .page-id-1052 .sm-exp-section-title {
    font-size: clamp(2rem, 4vw, 3rem);
  }

  .page-id-1052 .sm-exp-kicker {
    font-size: 1.15rem;
  }

  .page-id-1052 .sm-exp-label {
    font-size: 1.34rem;
  }

  .page-id-1052 .sm-exp-note {
    font-size: 1.08rem;
  }

  .page-id-1052 .sm-exp-cta-title {
    font-size: clamp(2.3rem, 5vw, 3.4rem);
  }
}

/* ==========================================
   MOBILE
   ========================================== */

@media (max-width: 767px) {
  .page-id-1052 .sm-exp-hero {
    padding: 40px 14px 52px;
  }

  .page-id-1052 .sm-exp-title {
    font-size: clamp(2.15rem, 10vw, 3rem);
    line-height: 1.05;
    margin-bottom: 18px;
  }

  .page-id-1052 .sm-exp-sublead,
  .page-id-1052 .sm-exp-body,
  .page-id-1052 .sm-exp-bullet,
  .page-id-1052 .sm-exp-cta-text {
    font-size: 0.98rem;
    line-height: 1.68;
  }

  .page-id-1052 .sm-exp-services {
    padding: 44px 12px 52px;
    gap: 34px;
  }

  .page-id-1052 .sm-exp-services > .wp-block-column:first-child,
  .page-id-1052 .sm-exp-services > .wp-block-column:last-child {
    padding-left: 0;
    padding-right: 0;
  }

  .page-id-1052 .sm-exp-services > .wp-block-column:last-child {
    border-left: none;
    padding-top: 8px;
  }

  .page-id-1052 .sm-exp-section-title {
    font-size: 2.1rem;
    margin-bottom: 12px;
  }

  .page-id-1052 .sm-exp-kicker {
    font-size: 1.05rem;
    margin-bottom: 18px;
    padding-bottom: 12px;
  }

  .page-id-1052 .sm-exp-label {
    font-size: 1.2rem;
    margin-top: 22px;
  }

  .page-id-1052 .sm-exp-note {
    font-size: 1rem;
    margin-top: 24px;
  }

  .page-id-1052 .sm-exp-cta {
    padding: 52px 14px 10px;
  }

  .page-id-1052 .sm-exp-cta-title {
    font-size: 2.15rem;
    margin-bottom: 16px;
  }

  .page-id-1052 .sm-exp-button .wp-block-button__link,
  .page-id-1052 .sm-exp-buttons .wp-block-button__link {
    width: 100%;
    min-width: 0;
    padding: 13px 24px;
    font-size: 1.06rem;
  }
}
/* =========================
   SPLIT HERO WRAPPER
   ========================= */

.page-id-1052 .sm-exp-hero-wrap {
  max-width: 1460px;
  margin: 0 auto;
  padding: 28px 0 0;
}

.page-id-1052 .sm-exp-hero-split {
  gap: 0;
  align-items: stretch;
  min-height: 640px;
  background: #050505;
  border-top: 1px solid rgba(198, 162, 90, 0.12);
  border-bottom: 1px solid rgba(198, 162, 90, 0.12);
}

.page-id-1052 .sm-exp-hero-split > .wp-block-column {
  margin: 0 !important;
}

.page-id-1052 .sm-exp-hero-image {
  height: 100%;
  margin: 0;
}

.page-id-1052 .sm-exp-hero-image img {
  width: 100%;
  height: 100%;
  min-height: 640px;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.page-id-1052 .sm-exp-hero-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px 80px;
  background:
    linear-gradient(
      to right,
      rgba(5,5,5,0.88) 0%,
      rgba(5,5,5,0.96) 100%
    );
}

.page-id-1052 .sm-exp-title {
  font-size: clamp(3rem, 4.8vw, 5rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.02;
  margin: 0 0 28px;
}

.page-id-1052 .sm-exp-sublead {
  max-width: 520px;
  margin: 0 0 34px;
  font-size: 1.18rem;
  line-height: 1.85;
  color: rgba(243, 238, 232, 0.92);
}

.page-id-1052 .sm-exp-buttons {
  justify-content: flex-start;
}

.page-id-1052 .sm-exp-button .wp-block-button__link,
.page-id-1052 .sm-exp-buttons .wp-block-button__link {
  min-width: 220px;
}

/* spacing below hero before services */
.page-id-1052 .sm-exp-hero-wrap + .sm-exp-divider,
.page-id-1052 .sm-exp-hero-wrap + .wp-block-separator {
  margin-top: 48px;
}

/* =========================
   TABLET
   ========================= */

@media (max-width: 1024px) {
  .page-id-1052 .sm-exp-hero-split {
    min-height: auto;
  }

  .page-id-1052 .sm-exp-hero-image img {
    min-height: 460px;
  }

  .page-id-1052 .sm-exp-hero-content {
    padding: 56px 42px;
  }

  .page-id-1052 .sm-exp-sublead {
    max-width: 100%;
    font-size: 1.05rem;
    line-height: 1.75;
  }
}

/* =========================
   MOBILE
   ========================= */

@media (max-width: 767px) {
  .page-id-1052 .sm-exp-hero-wrap {
    padding-top: 18px;
  }

  .page-id-1052 .sm-exp-hero-split {
    display: flex;
    flex-direction: column;
  }

  .page-id-1052 .sm-exp-hero-image img {
    min-height: 320px;
    max-height: 380px;
  }

  .page-id-1052 .sm-exp-hero-content {
    padding: 36px 22px 42px;
  }

  .page-id-1052 .sm-exp-title {
    font-size: clamp(2.2rem, 10vw, 3.1rem);
    margin-bottom: 18px;
  }

  .page-id-1052 .sm-exp-sublead {
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: 24px;
  }

  .page-id-1052 .sm-exp-buttons {
    justify-content: flex-start;
  }

  .page-id-1052 .sm-exp-button .wp-block-button__link,
  .page-id-1052 .sm-exp-buttons .wp-block-button__link {
    width: 100%;
    min-width: 0;
  }
}
/* HERO IMAGE FADE EFFECT */

.page-id-1052 .sm-exp-hero-image {
  position: relative;
  overflow: hidden;
}

.page-id-1052 .sm-exp-hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* fade overlay */

.page-id-1052 .sm-exp-hero-image::after {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to right,
    rgba(5,5,5,0) 45%,
    rgba(5,5,5,0.4) 65%,
    rgba(5,5,5,0.85) 85%,
    rgba(5,5,5,1) 100%
  );

  pointer-events: none;
}
background: linear-gradient(
  to right,
  rgba(5,5,5,0) 35%,
  rgba(5,5,5,0.3) 60%,
  rgba(5,5,5,0.75) 80%,
  rgba(5,5,5,1) 100%
);
/* HERO IMAGE FADE EFFECT */

.page-id-1052 .sm-exp-hero-image {
  position: relative;
  overflow: hidden;
}

.page-id-1052 .sm-exp-hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* DESKTOP FADE (left → right) */

.page-id-1052 .sm-exp-hero-image::after {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to right,
    rgba(5,5,5,0) 40%,
    rgba(5,5,5,0.35) 60%,
    rgba(5,5,5,0.75) 80%,
    rgba(5,5,5,1) 100%
  );

  pointer-events: none;
}
/* MOBILE FADE (top → bottom) */

@media (max-width: 768px) {

.page-id-1052 .sm-exp-hero-image::after {

  background: linear-gradient(
    to bottom,
    rgba(5,5,5,0) 55%,
    rgba(5,5,5,0.45) 75%,
    rgba(5,5,5,0.85) 90%,
    rgba(5,5,5,1) 100%
  );

}

}
.page-id-1052 .sm-exp-sublead {
  max-width: 420px;
  margin: 0 auto 34px auto;
  text-align: center;
}
@media (max-width: 768px){

.page-id-1052 .sm-exp-hero-image::before{
content:"";
position:absolute;
inset:0;

background: linear-gradient(
to bottom,
rgba(5,5,5,0.35) 0%,
rgba(5,5,5,0.15) 6%,
rgba(5,5,5,0) 14%,
rgba(5,5,5,0) 86%,
rgba(5,5,5,0.15) 94%,
rgba(5,5,5,0.35) 100%
);

pointer-events:none;

}

}