/*
 * Villa Rhodéa — extra.css
 * Scoped CSS that theme.json and core blocks cannot handle alone.
 * All rules are prefixed with .rhodea- to avoid collisions.
 */

/* ============================================================
   GLOBAL RESETS
   ============================================================ */
*,
*::before,
*::after { box-sizing: border-box; }

body { overflow-x: hidden; -webkit-font-smoothing: antialiased; }

img { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

/* ============================================================
   EYEBROW
   ============================================================ */
.rhodea-eyebrow {
  font-family: var(--wp--preset--font-family--body);
  font-size: .72rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--wp--preset--color--primary);
}

/* ============================================================
   FIXED HEADER — transparent → solid on scroll
   ============================================================ */
header.rhodea-header,
header.wp-block-template-part.rhodea-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 22px 32px;
  transition:
    background .5s cubic-bezier(.22,.68,.16,1),
    padding    .5s cubic-bezier(.22,.68,.16,1),
    box-shadow .5s cubic-bezier(.22,.68,.16,1);
}

header.rhodea-header.has-solid-header {
  background: rgba(250, 246, 238, 0.94);
  backdrop-filter: blur(10px);
  padding: 14px 32px;
  box-shadow: 0 1px 0 #E3D7C0;
}

/* Logo: white on hero, ink when solid */
header.rhodea-header .wp-block-site-title a,
header.rhodea-header .rhodea-logo {
  color: #fff;
  transition: color .5s;
}
header.rhodea-header.has-solid-header .wp-block-site-title a,
header.rhodea-header.has-solid-header .rhodea-logo {
  color: var(--wp--preset--color--contrast);
}

/* Nav links: white on hero, ink when solid.
   WP 7.0 raised core specificity to .wp-block-navigation-item__content.wp-block-navigation-item__content
   (0,3,0 with color:inherit); we mirror the doubled-class trick so our colors still win. */
header.rhodea-header .wp-block-navigation-item__content.wp-block-navigation-item__content,
header.rhodea-header .wp-block-navigation a {
  color: #fff;
  transition: color .5s, opacity .3s;
}
header.rhodea-header.has-solid-header .wp-block-navigation-item__content.wp-block-navigation-item__content,
header.rhodea-header.has-solid-header .wp-block-navigation a {
  color: var(--wp--preset--color--contrast);
}
header.rhodea-header .wp-block-navigation a:hover { opacity: .6; }

/* Burger icon button: white on hero, ink when solid.
   WP core renders an SVG icon — size & color it explicitly so it doesn't
   collapse to an invisible box. */
header.rhodea-header .wp-block-navigation__responsive-container-open {
  color: #fff;
  background: transparent !important;
  border: 0;
  padding: 12px;
  transition: color .5s;
}
header.rhodea-header .wp-block-navigation__responsive-container-open svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  background: transparent !important;
  display: block;
}
header.rhodea-header .wp-block-navigation__responsive-container-open span {
  display: inline-block;
  background-color: currentColor;
  width: 22px;
  height: 1.5px;
}
header.rhodea-header.has-solid-header .wp-block-navigation__responsive-container-open {
  color: var(--wp--preset--color--contrast);
}

/* Push page content below fixed header */
body { padding-top: 70px; }

/* Logo (image): white mark on the transparent hero, swapped to the full-color
   mark when the header turns solid (white-on-cream would be invisible). */
.rhodea-header .rhodea-logo-link {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.rhodea-header .rhodea-logo-img {
  height: 64px;
  width: auto;
  display: block;
  transition: filter .5s, opacity .5s;
}
.rhodea-header.has-solid-header .rhodea-logo-img {
  content: url('/wp-content/themes/villa-rhodea/assets/img/logo-full-color.png');
}
/* On the transparent hero the white mark sits over a dark photo —
   a soft drop-shadow keeps the lighter areas from disappearing. */
.rhodea-header:not(.has-solid-header) .rhodea-logo-img {
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.45));
}
@media (max-width: 600px) {
  .rhodea-header .rhodea-logo-img { height: 60px; }
}

/* ============================================================
   FOOTER — "site-footer" variant (custom HTML in parts/footer.html).
   All rules scoped to .rhodea-footer.site-footer to avoid leaking.
   ============================================================ */
.rhodea-footer.site-footer {
  --vrf-bg:        #28221e;
  --vrf-bg-deep:   #221d19;
  --vrf-cream:     #f3ede2;
  --vrf-muted:     #a89c8b;
  --vrf-muted-dim: #837868;
  --vrf-gold:      #c9a86c;
  --vrf-line:      rgba(243, 237, 226, 0.12);

  position: relative;
  background: var(--vrf-bg);
  color: var(--vrf-cream);
  padding: clamp(115px, 13vw, 168px) clamp(24px, 6vw, 110px) 40px;
  overflow: hidden;
  font-family: 'Jost', system-ui, sans-serif;
}
.rhodea-footer.site-footer * { box-sizing: border-box; }

/* warm light pooling in from the top, echoing the brand's sunlit tone */
.rhodea-footer.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 60% at 50% -10%, rgba(201, 168, 108, 0.10), transparent 70%);
  pointer-events: none;
}

.rhodea-footer.site-footer .footer-inner {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
}

/* thin gold hairline at the top of the inner block */
.rhodea-footer.site-footer .footer-rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--vrf-gold), transparent);
  opacity: 0.55;
  margin-bottom: 64px;
}

/* Main grid */
.rhodea-footer.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.3fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}

/* Brand column */
.rhodea-footer.site-footer .brand-mark {
  display: inline-block;
  line-height: 0;
}
.rhodea-footer.site-footer .brand-logo {
  width: auto;
  height: 120px;
  display: block;
}

.rhodea-footer.site-footer .brand-tagline {
  margin-top: 26px;
  max-width: 340px;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--vrf-muted);
}

.rhodea-footer.site-footer .cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 12px 24px;
  border: 1px solid var(--vrf-line);
  border-radius: 999px;
  color: var(--vrf-cream);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color .35s ease, background .35s ease, color .35s ease;
}
.rhodea-footer.site-footer .cta:hover {
  border-color: var(--vrf-gold);
  background: var(--vrf-gold);
  color: var(--vrf-bg);
}
.rhodea-footer.site-footer .cta svg { width: 14px; height: 14px; transition: transform .35s ease; }
.rhodea-footer.site-footer .cta:hover svg { transform: translateX(3px); }

/* Column headings */
.rhodea-footer.site-footer .col-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--vrf-gold);
  margin-bottom: 26px;
}
.rhodea-footer.site-footer .col-label::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--vrf-gold);
}

/* Explore links */
.rhodea-footer.site-footer .nav-list { list-style: none; margin: 0; padding: 0; }
.rhodea-footer.site-footer .nav-list li + li { margin-top: 14px; }
.rhodea-footer.site-footer .nav-list a {
  position: relative;
  display: inline-block;
  color: var(--vrf-cream);
  font-size: 16px;
  font-weight: 300;
  text-decoration: none;
  transition: color .3s ease;
}
.rhodea-footer.site-footer .nav-list a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -3px;
  width: 100%; height: 1px;
  background: var(--vrf-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.rhodea-footer.site-footer .nav-list a:hover { color: var(--vrf-gold); }
.rhodea-footer.site-footer .nav-list a:hover::after { transform: scaleX(1); }

/* Contact column */
.rhodea-footer.site-footer .contact-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.rhodea-footer.site-footer .contact-list li {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.5;
  color: var(--vrf-muted);
}
.rhodea-footer.site-footer .contact-list a {
  color: var(--vrf-cream);
  text-decoration: none;
  transition: color .3s ease;
}
.rhodea-footer.site-footer .contact-list a:hover { color: var(--vrf-gold); }

.rhodea-footer.site-footer .socials {
  display: flex;
  gap: 12px;
  margin-top: 26px;
}
.rhodea-footer.site-footer .socials a {
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  border: 1px solid var(--vrf-line);
  border-radius: 50%;
  color: var(--vrf-muted);
  transition: color .3s ease, border-color .3s ease, transform .3s ease, background .3s ease;
}
.rhodea-footer.site-footer .socials a:hover {
  color: var(--vrf-bg);
  background: var(--vrf-gold);
  border-color: var(--vrf-gold);
  transform: translateY(-3px);
}
.rhodea-footer.site-footer .socials svg { width: 16px; height: 16px; }

/* Bottom bar */
.rhodea-footer.site-footer .footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 64px;
  padding-top: 26px;
  border-top: 1px solid var(--vrf-line);
  font-size: 13px;
  font-weight: 300;
  color: var(--vrf-muted-dim);
}
.rhodea-footer.site-footer .footer-bottom .place {
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.16em;
}
.rhodea-footer.site-footer .footer-bottom .place .dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--vrf-gold);
}

/* Entrance animation */
.rhodea-footer.site-footer .fade-up { opacity: 0; transform: translateY(14px); animation: vrf-fadeUp .8s ease forwards; }
.rhodea-footer.site-footer .d1 { animation-delay: .05s; }
.rhodea-footer.site-footer .d2 { animation-delay: .15s; }
.rhodea-footer.site-footer .d3 { animation-delay: .25s; }
.rhodea-footer.site-footer .d4 { animation-delay: .35s; }
@keyframes vrf-fadeUp { to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) {
  .rhodea-footer.site-footer .fade-up { animation: none; opacity: 1; transform: none; }
}

/* Responsive */
@media (max-width: 880px) {
  .rhodea-footer.site-footer .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px 40px;
  }
  .rhodea-footer.site-footer .brand-col { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .rhodea-footer.site-footer { padding: 60px 26px 34px; }
  .rhodea-footer.site-footer .footer-grid { grid-template-columns: 1fr; gap: 44px; }
  .rhodea-footer.site-footer .footer-bottom { flex-direction: column; align-items: flex-start; gap: 14px; }
  .rhodea-footer.site-footer .brand-logo { height: 100px; }
}

/* Nav hamburger at 960px instead of WP default 600px */
@media (max-width: 960px) {
  .rhodea-header .wp-block-navigation__responsive-container-open { display: flex !important; }
  .rhodea-header .wp-block-navigation__responsive-container:not(.is-menu-open) { display: none !important; }
}
@media (min-width: 961px) {
  .rhodea-header .wp-block-navigation__responsive-container-open { display: none !important; }
  .rhodea-header .wp-block-navigation__responsive-container {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    gap: 32px;
  }
}

/* ============================================================
   HERO — display title + content layout
   Block-comment JSON does not inject inline styles on the frontend;
   these rules are the authoritative source for hero typography.
   ============================================================ */

/* Force full display size (theme.json fontSizes.display = clamp(3.4rem,11vw,8.5rem)) */
.rhodea-hero .rhodea-display {
  font-size: clamp(3.4rem, 11vw, 8.5rem) !important;
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: 0.02em;
  margin: 0.18em 0 0.28em;
}

/* Left-align hero content inside a 1240px wrap (design spec) */
.rhodea-hero .wp-block-cover__inner-container {
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  justify-content: flex-end !important;
  padding-bottom: 11vh;
  text-align: start !important;
}
.rhodea-hero .rhodea-hero-inner {
  max-width: 1240px !important;
  margin-inline: auto !important;
  padding: 0 32px !important;
  text-align: start !important;
  width: 100%;
}
.rhodea-hero .rhodea-hero-inner > * {
  text-align: start !important;
  margin-inline: 0 !important;
}
.rhodea-hero .rhodea-hero-inner .wp-block-paragraph,
.rhodea-hero .rhodea-hero-inner > p.has-white-color {
  max-width: 380px !important;
}
.rhodea-hero .rhodea-hero-inner .rhodea-hero-eyebrow {
  margin-bottom: 4px;
}
.rhodea-hero .rhodea-hero-inner .wp-block-buttons {
  justify-content: flex-start !important;
  gap: 16px !important;
}
.rhodea-hero .rhodea-hero-inner .wp-block-buttons > .wp-block-button {
  margin: 0;
}

@media (max-width: 600px) {
  .rhodea-hero .rhodea-hero-inner {
    padding: 0 24px !important;
  }
  .rhodea-hero .rhodea-hero-inner .wp-block-buttons {
    align-items: stretch !important;
  }
}

/* ============================================================
   HERO LOAD ANIMATION
   ============================================================ */
.rhodea-hero .wp-block-cover__inner-container { padding-bottom: 11vh; }

.rhodea-hero .rhodea-display,
.rhodea-hero .rhodea-hero-eyebrow,
.rhodea-hero .wp-block-paragraph,
.rhodea-hero .wp-block-buttons {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity  1.1s cubic-bezier(.22,.68,.16,1),
    transform 1.1s cubic-bezier(.22,.68,.16,1);
}

.rhodea-hero.hero-ready .rhodea-hero-eyebrow {
  opacity: 1; transform: none; transition-delay: .15s;
}
.rhodea-hero.hero-ready .rhodea-display {
  opacity: 1; transform: none; transition-delay: .32s;
}
.rhodea-hero.hero-ready .wp-block-paragraph {
  opacity: 1; transform: none; transition-delay: .49s;
}
.rhodea-hero.hero-ready .wp-block-buttons {
  opacity: 1; transform: none; transition-delay: .66s;
}

/* ============================================================
   SCROLL FADE-UP
   ============================================================ */
.rhodea-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity  1s cubic-bezier(.22,.68,.16,1),
    transform 1s cubic-bezier(.22,.68,.16,1);
}
.rhodea-reveal.in { opacity: 1; transform: none; }

.rhodea-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity  .9s cubic-bezier(.22,.68,.16,1),
    transform .9s cubic-bezier(.22,.68,.16,1);
}
.rhodea-stagger.in > * { opacity: 1; transform: none; }
.rhodea-stagger.in > *:nth-child(2) { transition-delay: .1s; }
.rhodea-stagger.in > *:nth-child(3) { transition-delay: .2s; }
.rhodea-stagger.in > *:nth-child(4) { transition-delay: .3s; }
.rhodea-stagger.in > *:nth-child(5) { transition-delay: .4s; }
.rhodea-stagger.in > *:nth-child(6) { transition-delay: .5s; }

/* ============================================================
   BOOKING BAR — negative margin overlap
   ============================================================ */
.rhodea-booking-bar {
  margin-top: -58px;
  position: relative;
  z-index: 10;
}
.rhodea-booking-card {
  box-shadow: 0 24px 60px -28px rgba(44,38,32,.45);
}

/* Lodgify widget overrides — scoped to booking bar */
.rhodea-booking-bar input,
.rhodea-booking-bar select,
.rhodea-booking-bar .lodgify-search-bar input,
.rhodea-booking-bar .lodgify-search-bar select {
  font-family: var(--wp--preset--font-family--body);
  color: var(--wp--preset--color--contrast);
}

@media (max-width: 980px) {
  .rhodea-booking-bar { margin-top: -32px; }
}
@media (max-width: 600px) {
  .rhodea-booking-bar { margin-top: 0; }
}

/* ============================================================
   FACTS GRID — 1px gap with background trick
   ============================================================ */
.rhodea-facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #E3D7C0;
  border: 1px solid #E3D7C0;
}
.rhodea-fact {
  background: #F1E7D6;
  padding: 40px 30px;
  text-align: center;
}
.rhodea-fact-ico {
  width: 34px;
  height: 34px;
  color: var(--wp--preset--color--primary);
  margin: 0 auto 18px;
  display: block;
}
.rhodea-fact b {
  display: block;
  font-family: var(--wp--preset--font-family--display);
  font-size: 1.6rem;
  font-weight: 300;
}
.rhodea-fact span {
  font-size: .82rem;
  letter-spacing: .06em;
  color: var(--wp--preset--color--ink-soft);
}

@media (max-width: 980px) {
  .rhodea-facts-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .rhodea-facts-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   GALLERY GLIMPSE header — eyebrow+heading left, button right
   ============================================================ */
.rhodea-gal-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
}
.rhodea-gal-head > .wp-block-group { flex: 1; }

/* ============================================================
   GALLERY GLIMPSE — asymmetric 6-column grid
   ============================================================ */
.rhodea-gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 200px;
  gap: 14px;
}
.rhodea-gallery a {
  display: block;
  overflow: hidden;
  border-radius: 3px;
  background: #EADFC8;
}
.rhodea-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s cubic-bezier(.22,.68,.16,1);
}
.rhodea-gallery a:hover img { transform: scale(1.06); }

/* Asymmetric spans */
.rhodea-gallery a:nth-child(1) { grid-column: span 3; grid-row: span 2; }
.rhodea-gallery a:nth-child(2) { grid-column: span 3; }
.rhodea-gallery a:nth-child(3),
.rhodea-gallery a:nth-child(4),
.rhodea-gallery a:nth-child(5) { grid-column: span 2; }

@media (max-width: 980px) {
  .rhodea-gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .rhodea-gallery a { grid-column: span 1 !important; grid-row: span 1 !important; }
  .rhodea-gallery a:nth-child(1) { grid-column: span 2 !important; grid-row: span 2 !important; }
}
@media (max-width: 480px) {
  .rhodea-gallery { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .rhodea-gallery a,
  .rhodea-gallery a:nth-child(1) { grid-column: span 1 !important; grid-row: span 1 !important; }
}

/* ============================================================
   INTRO SECTION — image with stamp badge
   ============================================================ */
.rhodea-intro-figure { position: relative; }
.rhodea-intro-img img { border-radius: 3px; }

.rhodea-intro-stamp {
  position: absolute;
  bottom: -26px;
  left: -26px;
  background: var(--wp--preset--color--primary);
  color: #fff;
  padding: 22px 26px;
  border-radius: 3px;
  line-height: 1.25;
}
.rhodea-intro-stamp b {
  display: block;
  font-family: var(--wp--preset--font-family--display);
  font-size: 1.9rem;
  font-weight: 300;
}
.rhodea-intro-stamp span {
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .rhodea-intro-stamp { bottom: -18px; left: -12px; padding: 16px 20px; }
  .rhodea-intro-stamp b { font-size: 1.5rem; }
}
@media (max-width: 560px) {
  .rhodea-intro-stamp { display: none; } /* Too cramped on mobile */
}

/* ============================================================
   DISTANCES LIST
   ============================================================ */
.rhodea-distances {
  margin-top: 34px;
  border-top: 1px solid var(--wp--preset--color--line);
}
.rhodea-distances div {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid var(--wp--preset--color--line);
  font-size: .96rem;
}
.rhodea-distances span:last-child {
  color: var(--wp--preset--color--primary);
  font-weight: 500;
}

/* ============================================================
   TRUST / CONTACT ICONS
   ============================================================ */
.rhodea-trust-ico {
  color: var(--wp--preset--color--primary);
  display: block;
}

/* ============================================================
   FAQ — native Details accordion
   ============================================================ */
.rhodea-faq-item {
  border-bottom: 1px solid var(--wp--preset--color--line);
}
.rhodea-faq-item:first-child { border-top: 1px solid var(--wp--preset--color--line); }

.rhodea-faq-item summary {
  font-family: var(--wp--preset--font-family--display);
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--wp--preset--color--contrast);
  padding: 26px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.rhodea-faq-item summary::-webkit-details-marker { display: none; }
.rhodea-faq-item summary::after {
  content: '+';
  flex-shrink: 0;
  font-family: var(--wp--preset--font-family--body);
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--wp--preset--color--primary);
  transition: transform .35s cubic-bezier(.22,.68,.16,1);
}
.rhodea-faq-item[open] summary::after { transform: rotate(45deg); }

.rhodea-faq-item p {
  padding: 0 0 26px;
  color: var(--wp--preset--color--ink-soft);
  max-width: 62ch;
}

/* ============================================================
   BUTTON STYLE VARIATIONS
   ============================================================ */

/* Secondary — outline */
.wp-block-button.is-style-secondary .wp-block-button__link {
  background: transparent !important;
  color: var(--wp--preset--color--contrast) !important;
  border: 1px solid var(--wp--preset--color--contrast) !important;
}
.wp-block-button.is-style-secondary .wp-block-button__link:hover {
  background: var(--wp--preset--color--contrast) !important;
  color: var(--wp--preset--color--base) !important;
  transform: translateY(-2px);
}

/* Ghost — transparent, white border, white text (on photos) */
.wp-block-button.is-style-ghost .wp-block-button__link {
  background: transparent !important;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,.55) !important;
}
.wp-block-button.is-style-ghost .wp-block-button__link:hover {
  background: rgba(255,255,255,.12) !important;
}

/* Primary — fill hover lift */
.wp-block-button__link:hover {
  transform: translateY(-2px);
  transition: transform .35s cubic-bezier(.22,.68,.16,1),
              background .35s cubic-bezier(.22,.68,.16,1);
}

/* ============================================================
   FOOTER SOCIAL ICONS
   ============================================================ */
.rhodea-socials {
  display: flex;
  gap: 14px;
  margin-top: 6px;
}
.rhodea-socials a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(250,246,238,.22);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(250,246,238,.7);
  transition: background .35s, border-color .35s, color .35s;
}
.rhodea-socials a:hover {
  background: var(--wp--preset--color--primary);
  border-color: var(--wp--preset--color--primary);
  color: #fff;
}

/* ============================================================
   GALLERY INLINE IMG FIX (villa gallery section)
   ============================================================ */
.rhodea-section .wp-block-gallery .wp-block-image img {
  height: 220px;
  object-fit: cover;
  border-radius: 3px;
  width: 100%;
}

/* ============================================================
   MAP EMBED
   ============================================================ */
.rhodea-map-embed { border-radius: 3px; overflow: hidden; }
.rhodea-map-embed iframe { display: block; }

/* ============================================================
   CLOSING CTA — remove extra top padding that Cover adds
   ============================================================ */
.rhodea-closing-cta .wp-block-cover__inner-container { padding: 0; }

/* ============================================================
   HERO — no top padding, account for fixed nav
   ============================================================ */
.rhodea-hero.wp-block-cover { margin-top: -70px; }

/* ============================================================
   RESPONSIVE — GLOBAL
   ============================================================ */
@media (max-width: 980px) {
  header.rhodea-header { padding: 18px 24px; }
  header.rhodea-header.has-solid-header { padding: 12px 24px; }
  body { padding-top: 64px; }
}

@media (max-width: 560px) {
  header.rhodea-header { padding: 16px 22px; }
  body { padding-top: 60px; }

  /* Hero buttons stack */
  .rhodea-hero .wp-block-buttons {
    flex-direction: column;
  }
  .rhodea-hero .wp-block-button { width: 100%; }
  .rhodea-hero .wp-block-button__link { width: 100%; text-align: center; justify-content: center; }

  /* Closing CTA padding */
  .rhodea-closing-cta { padding-top: 84px !important; padding-bottom: 84px !important; }
}

/* ============================================================
   v2 FEEDBACK FIXES — Villa Rhodéa homepage redesign alignment
   ============================================================ */

/* ---- Section spacing — block JSON in pattern comments isn't piped
   into inline padding on rendered output, so set it here directly. ---- */
.rhodea-section,
section.rhodea-section,
.rhodea-closing-cta {
  padding-top: clamp(48px, 5.5vw, 80px) !important;
  padding-bottom: clamp(48px, 5.5vw, 80px) !important;
}

/* ============================================================
   VILLA PAGE — /villa-rhodea/
   Reuses .rhodea-hero-inner, .rhodea-section padding, .rhodea-eyebrow,
   .rhodea-closing-cta, .btn styling from the homepage. The styles below
   are page-specific section layouts.
   ============================================================ */

/* Villa hero — same left-aligned 1240px wrap as homepage rhodea-hero */
.rhodea-villa-hero { margin-top: -70px; }
.rhodea-villa-hero .wp-block-cover__inner-container {
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  justify-content: flex-end !important;
  padding-bottom: 9vh;
  text-align: start !important;
}
.rhodea-villa-hero .rhodea-display {
  font-size: clamp(2.8rem, 7vw, 5.4rem) !important;
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: 0.02em;
  margin: 0.16em 0 0.3em;
}
/* Same scroll-reveal staged animations the homepage hero uses */
.rhodea-villa-hero .rhodea-display,
.rhodea-villa-hero .rhodea-hero-eyebrow,
.rhodea-villa-hero .wp-block-paragraph,
.rhodea-villa-hero .wp-block-buttons {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1.1s cubic-bezier(.22,.68,.16,1),
              transform 1.1s cubic-bezier(.22,.68,.16,1);
}
.rhodea-villa-hero.in .rhodea-hero-eyebrow,
.rhodea-villa-hero.hero-ready .rhodea-hero-eyebrow { opacity: 1; transform: none; transition-delay: .12s; }
.rhodea-villa-hero.in .rhodea-display,
.rhodea-villa-hero.hero-ready .rhodea-display { opacity: 1; transform: none; transition-delay: .26s; }
.rhodea-villa-hero.in .wp-block-paragraph,
.rhodea-villa-hero.hero-ready .wp-block-paragraph { opacity: 1; transform: none; transition-delay: .4s; }
.rhodea-villa-hero.in .wp-block-buttons,
.rhodea-villa-hero.hero-ready .wp-block-buttons { opacity: 1; transform: none; transition-delay: .54s; }

/* Layout overview — 4×2 grid of fact tiles (paper bg with 1px line gaps) */
.rhodea-villa-layout-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--wp--preset--color--line);
  border: 1px solid var(--wp--preset--color--line);
}
.rhodea-villa-lay-item {
  background: var(--wp--preset--color--paper);
  padding: 30px 26px;
}
.rhodea-villa-lay-item .k {
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--wp--preset--color--ink-soft);
  font-weight: 600;
  margin-bottom: 6px;
}
.rhodea-villa-lay-item .v {
  font-family: var(--wp--preset--font-family--display);
  font-size: 1.22rem;
  font-weight: 300;
  line-height: 1.35;
}
@media (max-width: 980px) {
  .rhodea-villa-layout-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .rhodea-villa-layout-grid { grid-template-columns: 1fr; }
}

/* Bedroom row — alternating image left/right, italic terracotta em */
.rhodea-villa-bedrooms .rhodea-villa-bedrooms-head h2 em {
  font-style: italic;
  color: var(--wp--preset--color--primary);
}
.rhodea-villa-room {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 64px;
}
.rhodea-villa-room:last-child { margin-bottom: 0; }
.rhodea-villa-room.flip .rhodea-villa-room-img { order: 2; }
.rhodea-villa-room-img img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 3px;
  background: var(--wp--preset--color--paper-deep);
}
.rhodea-villa-room-text .num {
  font-family: var(--wp--preset--font-family--display);
  font-size: .95rem;
  color: var(--wp--preset--color--primary);
  letter-spacing: .04em;
}
.rhodea-villa-room-text h3 {
  font-family: var(--wp--preset--font-family--display);
  font-size: 1.7rem;
  font-weight: 300;
  margin: 6px 0 12px;
  line-height: 1.15;
}
.rhodea-villa-room-text p { color: var(--wp--preset--color--ink-soft); }
@media (max-width: 980px) {
  .rhodea-villa-room { grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; }
  .rhodea-villa-room.flip .rhodea-villa-room-img { order: 0; }
  .rhodea-villa-room-img img { height: 340px; }
}

/* Split layout — used by Bathrooms, Kitchen & Living, Outside */
.rhodea-villa-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.rhodea-villa-split.flip .rhodea-villa-split-img { order: 2; }
.rhodea-villa-split-img img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 3px;
  background: var(--wp--preset--color--paper-deep);
}
.rhodea-villa-split-text .rhodea-eyebrow {
  display: block;
  margin-bottom: 14px;
}
.rhodea-villa-split-text h2 {
  font-family: var(--wp--preset--font-family--display);
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  font-weight: 300;
  margin: 0 0 18px;
  line-height: 1.1;
}
.rhodea-villa-split-text h2 em {
  font-style: italic;
  color: var(--wp--preset--color--primary);
}
.rhodea-villa-split-text p {
  color: var(--wp--preset--color--ink-soft);
  margin-bottom: 14px;
}
.rhodea-villa-split-text p:last-child { margin-bottom: 0; }
@media (max-width: 980px) {
  .rhodea-villa-split { grid-template-columns: 1fr; gap: 32px; }
  .rhodea-villa-split.flip .rhodea-villa-split-img { order: 0; }
  .rhodea-villa-split-img img { height: 380px; }
}

/* Mini gallery — 3 supporting images under the split */
.rhodea-villa-mini-gal {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 46px;
}
.rhodea-villa-mini-gal img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 3px;
  background: var(--wp--preset--color--paper-deep);
}
@media (max-width: 560px) {
  .rhodea-villa-mini-gal { grid-template-columns: 1fr; }
}

/* Amenities — dark section with 3×2 categorised list grid */
.rhodea-villa-amen { color: var(--wp--preset--color--base); }
.rhodea-villa-amen .rhodea-eyebrow { color: #E8B79A; }
.rhodea-villa-amen h2 em {
  font-style: italic;
  color: #E0A081;
}
.rhodea-villa-amen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.rhodea-villa-amen-col h3 {
  font-family: var(--wp--preset--font-family--display);
  font-size: 1.15rem;
  font-weight: 300;
  color: #FAF6EE;
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(250, 246, 238, .18);
  display: flex;
  align-items: center;
  gap: 10px;
}
.rhodea-villa-amen-col h3 svg { width: 20px; height: 20px; color: #E0A081; }
.rhodea-villa-amen-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.rhodea-villa-amen-col li {
  font-size: .96rem;
  color: rgba(250, 246, 238, .74);
  padding: 6px 0;
  display: flex;
  gap: 9px;
  align-items: baseline;
}
.rhodea-villa-amen-col li::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #E0A081;
  flex-shrink: 0;
  transform: translateY(-2px);
}
@media (max-width: 980px) {
  .rhodea-villa-amen-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* Who it's for — centred copy + tag pills */
.rhodea-villa-who { text-align: center; }
.rhodea-villa-who .wp-block-group { text-align: center; }
.rhodea-villa-who-tags {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 34px;
}
.rhodea-villa-who-tags span {
  border: 1px solid var(--wp--preset--color--line);
  background: var(--wp--preset--color--paper);
  padding: 9px 20px;
  border-radius: 40px;
  font-size: .86rem;
  color: var(--wp--preset--color--contrast);
}

/* ============================================================
   LOCATION PAGE — /location/
   Reuses .rhodea-villa-hero, .rhodea-section, .rhodea-eyebrow,
   .rhodea-closing-cta. Section layouts below are page-specific.
   ============================================================ */

.rhodea-greek {
  font-family: var(--wp--preset--font-family--display);
  font-style: italic;
  font-size: .95rem;
  color: var(--wp--preset--color--sage);
}

/* Shared section heading */
.rhodea-loc-sec-head {
  max-width: 50ch;
  margin-bottom: 48px;
}
.rhodea-loc-sec-head.center {
  margin-inline: auto;
  text-align: center;
}
.rhodea-loc-sec-head .rhodea-eyebrow { display: block; }
.rhodea-loc-sec-head h2 {
  font-family: var(--wp--preset--font-family--display);
  font-size: clamp(1.9rem, 3.4vw, 2.9rem);
  font-weight: 300;
  margin: 14px 0 0;
  line-height: 1.1;
}
.rhodea-loc-sec-head h2 em { font-style: italic; color: var(--wp--preset--color--primary); }
.rhodea-loc-sec-head p { margin-top: 16px; color: var(--wp--preset--color--ink-soft); }

/* Intro — text + figure */
.rhodea-loc-intro {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 78px;
  align-items: center;
}
.rhodea-loc-intro-text .rhodea-eyebrow { display: block; margin-bottom: 14px; }
.rhodea-loc-intro-text h2 {
  font-family: var(--wp--preset--font-family--display);
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 300;
  line-height: 1.1;
}
.rhodea-loc-intro-text h2 em { font-style: italic; color: var(--wp--preset--color--primary); }
.rhodea-loc-intro-text p {
  margin-top: 20px;
  color: var(--wp--preset--color--ink-soft);
  max-width: 46ch;
}
.rhodea-loc-intro-figure img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: 3px;
  background: var(--wp--preset--color--paper-deep);
}

/* Map + distances */
.rhodea-loc-place-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 64px;
  align-items: stretch;
}
.rhodea-loc-map-frame {
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid var(--wp--preset--color--line);
  box-shadow: var(--shadow-card, 0 24px 60px -28px rgba(44,38,32,.45));
  min-height: 460px;
  background: var(--wp--preset--color--paper-deep);
}
.rhodea-loc-map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 460px;
  border: 0;
  display: block;
  filter: saturate(.92) contrast(.96);
}
.rhodea-loc-dist .rhodea-eyebrow { display: block; }
.rhodea-loc-dist h2 {
  font-family: var(--wp--preset--font-family--display);
  font-size: clamp(1.7rem, 2.8vw, 2.3rem);
  font-weight: 300;
  margin: 12px 0 8px;
}
.rhodea-loc-dist-lead { color: var(--wp--preset--color--ink-soft); margin-bottom: 22px; }
.rhodea-loc-dist-list { border-top: 1px solid var(--wp--preset--color--line); }
.rhodea-loc-dist-list .row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid var(--wp--preset--color--line);
}
.rhodea-loc-dist-list .name {
  font-family: var(--wp--preset--font-family--display);
  font-size: 1.08rem;
  font-weight: 300;
}
.rhodea-loc-dist-list .name span {
  display: block;
  font-family: var(--wp--preset--font-family--body);
  font-size: .82rem;
  color: var(--wp--preset--color--ink-soft);
  margin-top: 2px;
}
.rhodea-loc-dist-list .time {
  color: var(--wp--preset--color--primary);
  font-weight: 500;
  white-space: nowrap;
  font-size: .95rem;
}

/* Photo placeholder (day cards, discover, family) */
.rhodea-loc-photo-slot {
  height: 200px;
  border-radius: 3px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--wp--preset--color--paper-deep);
}
.rhodea-loc-photo-slot img { width: 100%; height: 100%; object-fit: cover; }
.rhodea-loc-ph {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  text-align: center;
  padding: 18px;
  color: var(--wp--preset--color--ink-soft);
  background:
    repeating-linear-gradient(45deg, transparent, transparent 11px,
      rgba(187,106,72,.05) 11px, rgba(187,106,72,.05) 22px),
    var(--wp--preset--color--paper-deep);
}
.rhodea-loc-ph svg { width: 26px; height: 26px; color: var(--wp--preset--color--primary); opacity: .7; }
.rhodea-loc-ph .ph-name {
  font-family: var(--wp--preset--font-family--display);
  font-style: italic;
  font-size: 1rem;
  color: var(--wp--preset--color--contrast);
}
.rhodea-loc-ph .ph-hint { font-size: .7rem; letter-spacing: .05em; }
.rhodea-loc-ph.dark {
  color: rgba(250,246,238,.6);
  background:
    repeating-linear-gradient(45deg, transparent, transparent 11px,
      rgba(224,160,129,.07) 11px, rgba(224,160,129,.07) 22px),
    #3a342c;
}
.rhodea-loc-ph.dark svg { color: #E0A081; }
.rhodea-loc-ph.dark .ph-name { color: var(--wp--preset--color--base); }

/* Day arc */
.rhodea-loc-day-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.rhodea-loc-day-card {
  background: var(--wp--preset--color--paper);
  border: 1px solid var(--wp--preset--color--line);
  border-radius: 3px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.rhodea-loc-day-card .rhodea-loc-photo-slot { border-radius: 0; }
.rhodea-loc-day-card .dc-body {
  padding: 32px 32px 36px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.rhodea-loc-day-card .hours {
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--wp--preset--color--ink-soft);
  font-weight: 600;
}
.rhodea-loc-day-card h3 {
  font-family: var(--wp--preset--font-family--display);
  font-size: 1.7rem;
  font-weight: 300;
  margin: 10px 0 4px;
}
.rhodea-loc-day-card .rhodea-greek { margin-bottom: 16px; display: block; }
.rhodea-loc-day-card p {
  color: var(--wp--preset--color--ink-soft);
  font-size: .97rem;
  margin-bottom: 18px;
}
.rhodea-loc-day-card .spots {
  margin-top: auto;
  border-top: 1px solid var(--wp--preset--color--line);
  padding-top: 16px;
}
.rhodea-loc-day-card .spot { display: flex; gap: 12px; align-items: baseline; padding: 6px 0; }
.rhodea-loc-day-card .spot .pin {
  font-family: var(--wp--preset--font-family--display);
  font-style: italic;
  color: var(--wp--preset--color--primary);
  font-size: .9rem;
  flex-shrink: 0;
  width: 62px;
}
.rhodea-loc-day-card .spot .s-name { font-weight: 500; }
.rhodea-loc-day-card .spot .s-name span { font-weight: 400; color: var(--wp--preset--color--ink-soft); }

/* Discover — dark section */
.rhodea-loc-discover { color: var(--wp--preset--color--base); }
.rhodea-loc-discover .rhodea-eyebrow { color: #E8B79A; }
.rhodea-loc-discover .rhodea-loc-sec-head h2 { color: var(--wp--preset--color--base); }
.rhodea-loc-discover .rhodea-loc-sec-head h2 em { color: #E0A081; }
.rhodea-loc-discover .rhodea-loc-sec-head p { color: rgba(250,246,238,.72); }
.rhodea-loc-disc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.rhodea-loc-disc {
  background: #322c25;
  border: 1px solid rgba(250,246,238,.12);
  border-radius: 3px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.rhodea-loc-disc .rhodea-loc-photo-slot { border-radius: 0; height: 228px; }
.rhodea-loc-disc .dc-body { padding: 34px 34px 36px; }
.rhodea-loc-disc .d-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 12px;
}
.rhodea-loc-disc .d-num {
  font-family: var(--wp--preset--font-family--display);
  font-size: 1rem;
  color: #E0A081;
}
.rhodea-loc-disc .d-tag {
  font-size: .72rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: rgba(250,246,238,.55);
}
.rhodea-loc-disc h3 {
  font-family: var(--wp--preset--font-family--display);
  font-size: 1.55rem;
  font-weight: 300;
  margin-bottom: 10px;
  color: var(--wp--preset--color--base);
}
.rhodea-loc-disc p { color: rgba(250,246,238,.72); font-size: .98rem; }

/* Family */
.rhodea-loc-fam-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.rhodea-loc-fam-item { display: flex; flex-direction: column; }
.rhodea-loc-fam-item .fi-body {
  padding-top: 20px;
  border-top: 2px solid var(--wp--preset--color--primary);
  margin-top: 20px;
}
.rhodea-loc-fam-item .f-tag {
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--wp--preset--color--primary);
  font-weight: 600;
}
.rhodea-loc-fam-item h3 {
  font-family: var(--wp--preset--font-family--display);
  font-size: 1.32rem;
  font-weight: 300;
  margin: 8px 0;
}
.rhodea-loc-fam-item p { color: var(--wp--preset--color--ink-soft); font-size: .96rem; }

/* Getting around */
.rhodea-loc-arrive-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.rhodea-loc-arrive-text .rhodea-eyebrow { display: block; }
.rhodea-loc-arrive-text h2 {
  font-family: var(--wp--preset--font-family--display);
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  font-weight: 300;
  margin: 14px 0;
  line-height: 1.1;
}
.rhodea-loc-arrive-text h2 em { font-style: italic; color: var(--wp--preset--color--primary); }
.rhodea-loc-arrive-lead { color: var(--wp--preset--color--ink-soft); max-width: 42ch; }
.rhodea-loc-guide-note {
  margin-top: 26px;
  background: var(--wp--preset--color--base);
  border: 1px solid var(--wp--preset--color--line);
  border-radius: 3px;
  padding: 22px 24px;
}
.rhodea-loc-guide-note .g-eye {
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--wp--preset--color--primary);
  font-weight: 600;
}
.rhodea-loc-guide-note p { margin-top: 8px; color: var(--wp--preset--color--ink-soft); font-size: .96rem; }
.rhodea-loc-move-list .move {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--wp--preset--color--line);
}
.rhodea-loc-move-list .move:first-child { border-top: 1px solid var(--wp--preset--color--line); }
.rhodea-loc-move-list .m-key {
  font-family: var(--wp--preset--font-family--display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--wp--preset--color--contrast);
}
.rhodea-loc-move-list .m-val { color: var(--wp--preset--color--ink-soft); font-size: .96rem; }

@media (max-width: 980px) {
  .rhodea-loc-intro,
  .rhodea-loc-place-grid,
  .rhodea-loc-arrive-grid { grid-template-columns: 1fr; gap: 42px; }
  .rhodea-loc-intro-figure img { height: 380px; }
  .rhodea-loc-day-grid,
  .rhodea-loc-disc-grid,
  .rhodea-loc-fam-grid { grid-template-columns: 1fr; }
  .rhodea-loc-fam-grid { gap: 34px; }
}
@media (max-width: 560px) {
  .rhodea-loc-move-list .move { grid-template-columns: 1fr; gap: 4px; }
}

/* ============================================================
   MAP PAGE — /map/  (interactive Leaflet map)
   ============================================================ */

.rhodea-map-head { margin-bottom: 26px; max-width: 60ch; }
.rhodea-map-head .rhodea-eyebrow { display: block; }
.rhodea-map-head h2 {
  font-family: var(--wp--preset--font-family--display);
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  font-weight: 300;
  margin-top: 12px;
  line-height: 1.1;
}
.rhodea-map-head h2 em { font-style: italic; color: var(--wp--preset--color--primary); }
.rhodea-map-head p { margin-top: 14px; color: var(--wp--preset--color--ink-soft); }

/* filter chips */
.rhodea-map-filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 22px; }
.rhodea-map-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
  font-size: .8rem;
  letter-spacing: .04em;
  padding: 9px 16px;
  border-radius: 40px;
  border: 1px solid var(--wp--preset--color--line);
  background: var(--wp--preset--color--base);
  color: var(--wp--preset--color--ink-soft);
  transition: .3s cubic-bezier(.22,.68,.16,1);
  font-weight: 500;
  user-select: none;
}
.rhodea-map-chip:hover { border-color: var(--wp--preset--color--primary); }
.rhodea-map-chip.on {
  background: var(--wp--preset--color--contrast);
  color: var(--wp--preset--color--base);
  border-color: var(--wp--preset--color--contrast);
}
.rhodea-map-chip .dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.rhodea-map-chip.on .dot { box-shadow: 0 0 0 2px rgba(250,246,238,.35); }
.dot-villa { background: var(--wp--preset--color--primary-deep); }
.dot-eat { background: var(--wp--preset--color--primary); }
.dot-discover { background: var(--wp--preset--color--sage); }
.dot-kids { background: var(--wp--preset--color--sea); }

/* layout */
.rhodea-map-shell {
  display: grid;
  grid-template-columns: 1.62fr 1fr;
  gap: 22px;
  height: 640px;
}
#rhodes-map {
  height: 100%;
  width: 100%;
  border-radius: 4px;
  border: 1px solid var(--wp--preset--color--line);
  box-shadow: var(--shadow-card, 0 24px 60px -28px rgba(44,38,32,.45));
  background: var(--wp--preset--color--paper-deep);
}
.leaflet-tile-pane { filter: saturate(.86) sepia(.1) brightness(1.02); }
.leaflet-container { background: #DCE6E4; font-family: var(--wp--preset--font-family--body); }

/* markers */
.rhodea-map-pin {
  width: 26px;
  height: 26px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  border: 2px solid var(--wp--preset--color--base);
  box-shadow: 0 3px 8px rgba(44,38,32,.4);
  transition: .2s cubic-bezier(.22,.68,.16,1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.rhodea-map-pin i {
  transform: rotate(45deg);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--wp--preset--color--base);
}
.rhodea-map-pin.villa { width: 34px; height: 34px; background: var(--wp--preset--color--primary-deep); }
.rhodea-map-pin.villa i { width: 11px; height: 11px; border-radius: 2px; }
.rhodea-map-pin.eat { background: var(--wp--preset--color--primary); }
.rhodea-map-pin.discover { background: var(--wp--preset--color--sage); }
.rhodea-map-pin.kids { background: var(--wp--preset--color--sea); }
.rhodea-map-pin.sel {
  transform: rotate(-45deg) scale(1.32);
  z-index: 1000;
  box-shadow: 0 6px 16px rgba(44,38,32,.5);
}

/* detail panel */
.rhodea-map-panel {
  border: 1px solid var(--wp--preset--color--line);
  border-radius: 4px;
  background: var(--wp--preset--color--paper);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.rhodea-map-panel .p-photo {
  height: 228px;
  background: var(--wp--preset--color--paper-deep);
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
}
.rhodea-map-panel .p-photo img { width: 100%; height: 100%; object-fit: cover; }
.rhodea-map-panel .placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--wp--preset--color--ink-soft);
  text-align: center;
  padding: 20px;
  background:
    repeating-linear-gradient(45deg, transparent, transparent 11px,
      rgba(187,106,72,.05) 11px, rgba(187,106,72,.05) 22px),
    var(--wp--preset--color--paper-deep);
}
.rhodea-map-panel .placeholder svg { width: 30px; height: 30px; color: var(--wp--preset--color--primary); opacity: .7; }
.rhodea-map-panel .placeholder .ph-name {
  font-family: var(--wp--preset--font-family--display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--wp--preset--color--contrast);
}
.rhodea-map-panel .placeholder .ph-hint { font-size: .74rem; letter-spacing: .04em; }
.rhodea-map-panel .p-cat {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: .64rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 30px;
  color: var(--wp--preset--color--base);
}
.rhodea-map-panel .p-cat.eat { background: rgba(158,86,56,.92); }
.rhodea-map-panel .p-cat.discover { background: rgba(126,132,102,.94); }
.rhodea-map-panel .p-cat.kids { background: rgba(61,91,98,.94); }
.rhodea-map-panel .p-cat.villa { background: rgba(158,86,56,.95); }
.rhodea-map-panel .p-body { padding: 26px 26px 28px; overflow-y: auto; flex: 1; }
.rhodea-map-panel .p-area {
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--wp--preset--color--primary);
  font-weight: 600;
}
.rhodea-map-panel .p-body h3 {
  font-family: var(--wp--preset--font-family--display);
  font-size: 1.7rem;
  font-weight: 300;
  margin: 5px 0 12px;
}
.rhodea-map-panel .p-blurb { color: var(--wp--preset--color--ink-soft); font-size: .97rem; }
.rhodea-map-panel .p-tip {
  margin-top: 16px;
  padding: 14px 16px;
  background: var(--wp--preset--color--base);
  border-left: 3px solid var(--wp--preset--color--sage);
  border-radius: 0 3px 3px 0;
  font-size: .88rem;
  color: var(--wp--preset--color--ink-soft);
}
.rhodea-map-panel .p-tip b {
  font-family: var(--wp--preset--font-family--display);
  font-style: italic;
  font-weight: 400;
  color: var(--wp--preset--color--contrast);
  font-size: .95rem;
}
.rhodea-map-panel .p-intro { padding: 34px 28px; overflow-y: auto; flex: 1; }
.rhodea-map-panel .p-intro h3 {
  font-family: var(--wp--preset--font-family--display);
  font-size: 1.4rem;
  font-weight: 300;
  margin: 8px 0;
}
.rhodea-map-panel .p-intro > p { color: var(--wp--preset--color--ink-soft); font-size: .94rem; margin-bottom: 22px; }
.rhodea-map-panel .p-list { list-style: none; margin: 0; padding: 0; }
.rhodea-map-panel .p-group-row { padding: 0; border: 0; cursor: default; }
.rhodea-map-panel .p-group {
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--wp--preset--color--ink-soft);
  margin: 18px 0 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.rhodea-map-panel .p-group .dot { width: 8px; height: 8px; border-radius: 50%; }
.rhodea-map-panel .p-list li {
  padding: 8px 0;
  border-bottom: 1px solid var(--wp--preset--color--line);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: baseline;
  transition: .2s cubic-bezier(.22,.68,.16,1);
}
.rhodea-map-panel .p-list li.p-group-row { border-bottom: 0; }
.rhodea-map-panel .p-list li:hover:not(.p-group-row) { padding-left: 6px; }
.rhodea-map-panel .p-list .pl-name {
  font-family: var(--wp--preset--font-family--display);
  font-size: 1.02rem;
  font-weight: 300;
}
.rhodea-map-panel .p-list .pl-area { font-size: .78rem; color: var(--wp--preset--color--ink-soft); white-space: nowrap; }
.rhodea-map-panel .p-back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  font-size: .76rem;
  letter-spacing: .04em;
  color: var(--wp--preset--color--primary);
  font-weight: 600;
  margin-bottom: 4px;
  background: none;
  border: none;
  font-family: inherit;
  padding: 0;
}
.rhodea-map-panel .p-back:hover { color: var(--wp--preset--color--primary-deep); }
.leaflet-popup-content-wrapper { display: none; }
.leaflet-control-attribution { font-size: 9px; background: rgba(250,246,238,.8); }

@media (max-width: 920px) {
  .rhodea-map-shell { grid-template-columns: 1fr; height: auto; }
  #rhodes-map { height: 380px; }
}

/* ============================================================
   CONTACT PAGE — /contact/
   ============================================================ */

/* Reusable button classes for plain <a>/<button> inside wp:html.
   (wp:button blocks elsewhere keep their own theme.json styling.) */
.btn-fill,
.btn-line,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--wp--preset--font-family--body);
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 14px 26px;
  border-radius: 2px;
  cursor: pointer;
  transition: transform .35s cubic-bezier(.22,.68,.16,1),
              background .35s cubic-bezier(.22,.68,.16,1),
              color .35s cubic-bezier(.22,.68,.16,1);
}
.btn-fill {
  background: var(--wp--preset--color--primary);
  color: #fff;
  border: 1px solid var(--wp--preset--color--primary);
}
.btn-fill:hover {
  background: var(--wp--preset--color--primary-deep);
  transform: translateY(-2px);
}
.btn-line {
  background: transparent;
  border: 1px solid var(--wp--preset--color--contrast);
  color: var(--wp--preset--color--contrast);
}
.btn-line:hover {
  background: var(--wp--preset--color--contrast);
  color: var(--wp--preset--color--base);
}
.btn-ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,.55);
  color: #fff;
}
.btn-ghost:hover { background: rgba(255,255,255,.12); }

/* Reach — intro text + form card */
.rhodea-contact-reach {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 74px;
  align-items: center;
}
.rhodea-contact-reach-text .rhodea-eyebrow { display: block; }
.rhodea-contact-reach-text h2 {
  font-family: var(--wp--preset--font-family--display);
  font-size: clamp(2rem, 3.4vw, 2.9rem);
  font-weight: 300;
  margin: 14px 0 0;
  line-height: 1.1;
}
.rhodea-contact-reach-text h2 em { font-style: italic; color: var(--wp--preset--color--primary); }
.rhodea-contact-reach-text p {
  margin-top: 18px;
  color: var(--wp--preset--color--ink-soft);
  max-width: 42ch;
}
.rhodea-contact-reach-text .sign {
  margin-top: 22px;
  font-family: var(--wp--preset--font-family--display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--wp--preset--color--contrast);
}
.rhodea-contact-reach-text .sign span {
  display: block;
  font-family: var(--wp--preset--font-family--body);
  font-style: normal;
  font-size: .74rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--wp--preset--color--ink-soft);
  margin-top: 6px;
}

/* Form card */
.rhodea-contact-form-card {
  background: var(--wp--preset--color--paper);
  border: 1px solid var(--wp--preset--color--line);
  border-radius: 3px;
  padding: 38px 38px 40px;
  scroll-margin-top: 100px;
}
.rhodea-contact-form-card .fc-eye {
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--wp--preset--color--primary);
  font-weight: 600;
}
.rhodea-contact-form-card h3 {
  font-family: var(--wp--preset--font-family--display);
  font-size: 1.5rem;
  font-weight: 300;
  margin: 8px 0 22px;
}
.rhodea-contact-form .frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.rhodea-contact-form .field { margin-bottom: 16px; }
.rhodea-contact-form .field label {
  display: block;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--wp--preset--color--ink-soft);
  font-weight: 600;
  margin-bottom: 7px;
}
.rhodea-contact-form .field label .opt {
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}
.rhodea-contact-form .field input,
.rhodea-contact-form .field textarea {
  width: 100%;
  font-family: var(--wp--preset--font-family--body);
  font-size: 1rem;
  color: var(--wp--preset--color--contrast);
  background: var(--wp--preset--color--base);
  border: 1px solid var(--wp--preset--color--line);
  border-radius: 2px;
  padding: 13px 15px;
  transition: border-color .3s cubic-bezier(.22,.68,.16,1);
}
.rhodea-contact-form .field input:focus,
.rhodea-contact-form .field textarea:focus {
  outline: none;
  border-color: var(--wp--preset--color--primary);
}
.rhodea-contact-form .field textarea {
  resize: vertical;
  min-height: 128px;
  line-height: 1.6;
}
.rhodea-contact-form .field input::placeholder,
.rhodea-contact-form .field textarea::placeholder { color: #A89C88; }
.rhodea-contact-form button[type="submit"] {
  width: 100%;
  margin-top: 6px;
  border: 1px solid var(--wp--preset--color--primary);
}
.rhodea-contact-form .form-note {
  font-size: .8rem;
  color: var(--wp--preset--color--ink-soft);
  margin-top: 14px;
  text-align: center;
}
/* Honeypot — visually removed, kept for bots */
.rhodea-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
/* Submit status banner */
.rhodea-form-status {
  border-radius: 3px;
  padding: 14px 16px;
  font-size: .92rem;
  margin-bottom: 22px;
}
.rhodea-form-status.ok {
  background: rgba(126,132,102,.14);
  border-left: 3px solid var(--wp--preset--color--sage);
  color: var(--wp--preset--color--contrast);
}
.rhodea-form-status.err {
  background: rgba(187,106,72,.12);
  border-left: 3px solid var(--wp--preset--color--primary);
  color: var(--wp--preset--color--contrast);
}
.rhodea-form-status a { color: var(--wp--preset--color--primary); text-decoration: underline; }

/* Booking strip */
.rhodea-contact-booking-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.rhodea-contact-booking-text .rhodea-eyebrow { display: block; margin-bottom: 8px; }
.rhodea-contact-booking-text h2 {
  font-family: var(--wp--preset--font-family--display);
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  font-weight: 300;
  line-height: 1.1;
}
.rhodea-contact-booking-text h2 em { font-style: italic; color: var(--wp--preset--color--primary); }
.rhodea-contact-booking-text p { margin-top: 8px; color: var(--wp--preset--color--ink-soft); max-width: 46ch; }
.rhodea-contact-booking-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Local host */
.rhodea-contact-host {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 64px;
  align-items: center;
}
.rhodea-contact-photo-slot {
  height: 420px;
  border-radius: 3px;
  overflow: hidden;
  background: var(--wp--preset--color--paper-deep);
}
.rhodea-contact-photo-slot img { width: 100%; height: 100%; object-fit: cover; }
.rhodea-contact-host-text .rhodea-eyebrow { display: block; }
.rhodea-contact-host-text h2 {
  font-family: var(--wp--preset--font-family--display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 300;
  margin: 14px 0 16px;
  line-height: 1.1;
}
.rhodea-contact-host-text h2 em { font-style: italic; color: var(--wp--preset--color--primary); }
.rhodea-contact-host-text p { color: var(--wp--preset--color--ink-soft); margin-bottom: 14px; max-width: 46ch; }
.rhodea-contact-host-text p:last-child { margin-bottom: 0; }

/* Location block — dark */
.rhodea-contact-loc { color: var(--wp--preset--color--base); }
.rhodea-contact-loc .rhodea-eyebrow { color: #E8B79A; }
.rhodea-contact-loc-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 54px;
  align-items: stretch;
}
.rhodea-contact-loc-map {
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid rgba(250,246,238,.16);
  min-height: 380px;
  background: #3a342c;
}
.rhodea-contact-loc-map iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
  display: block;
  filter: saturate(.9) contrast(.95);
}
.rhodea-contact-loc-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.rhodea-contact-loc-text h2 {
  font-family: var(--wp--preset--font-family--display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 300;
  margin: 14px 0;
  line-height: 1.1;
  color: var(--wp--preset--color--base);
}
.rhodea-contact-loc-text h2 em { font-style: italic; color: #E0A081; }
.rhodea-contact-loc-text p { color: rgba(250,246,238,.72); margin-bottom: 8px; }
.rhodea-contact-loc-rows {
  margin-top: 18px;
  border-top: 1px solid rgba(250,246,238,.16);
}
.rhodea-contact-loc-rows .row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(250,246,238,.16);
  font-size: .95rem;
}
.rhodea-contact-loc-rows .row span:first-child { color: rgba(250,246,238,.72); }
.rhodea-contact-loc-rows .row span:last-child { color: #E0A081; font-weight: 500; white-space: nowrap; }
.rhodea-contact-loc-btn { margin-top: 26px; align-self: flex-start; }

@media (max-width: 980px) {
  .rhodea-contact-reach,
  .rhodea-contact-host,
  .rhodea-contact-loc-grid { grid-template-columns: 1fr; gap: 42px; }
  .rhodea-contact-photo-slot { height: 340px; }
}
@media (max-width: 560px) {
  .rhodea-contact-form-card { padding: 28px 22px 30px; }
  .rhodea-contact-form .frow { grid-template-columns: 1fr; gap: 0; }
  .rhodea-contact-booking-actions .btn-fill,
  .rhodea-contact-booking-actions .btn-line { width: 100%; }
}

/* ---- Kill the cream block-gap between top-level sections.
   WP applies a default block-gap (~24px) between every top-level
   block in .wp-site-blocks. Between full-bleed coloured sections
   that gap exposes the body's cream background as a stray strip
   (under the hero, above the footer, etc). Every section owns its
   own vertical padding, so collapse the inter-block margins.
   IMPORTANT: only the sections — NOT the heroes (margin-top:-70px)
   or the booking-bar (negative overlap), whose negative margins
   are load-bearing. ---- */
.wp-site-blocks > .rhodea-section,
.wp-site-blocks > .rhodea-closing-cta,
.wp-site-blocks > footer,
.wp-site-blocks > footer.wp-block-template-part {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* ---- Nav: kill any orphan separator/list-marker before "Home" ---- */
header.rhodea-header .wp-block-navigation ul,
header.rhodea-header .wp-block-navigation__container {
  list-style: none !important;
  margin: 0;
  padding-left: 0;
}
header.rhodea-header .wp-block-navigation li::before,
header.rhodea-header .wp-block-navigation li::marker,
header.rhodea-header .wp-block-navigation-item::before {
  content: none !important;
  display: none !important;
}
header.rhodea-header .wp-block-navigation .wp-block-navigation__container > li:first-child {
  margin-inline-start: 0;
}

/* ---- Booking bar — restyle the Villa Rhodéa booking widget (vrb-bar) ---- */
.rhodea-booking-card {
  background: #fff !important;
  border: 0 !important;
  border-radius: 0 !important;
  padding: 14px 18px !important;
  box-shadow: 0 24px 60px -20px rgba(0,0,0,.25) !important;
}
.rhodea-booking-bar .vrb-bar,
.rhodea-booking-bar .vrb-bar * {
  border-radius: 0 !important;
  box-sizing: border-box;
}
.rhodea-booking-bar .vrb-bar-card {
  display: flex;
  align-items: stretch;
  gap: 0;
  padding: 0;
  border: 0;
  background: transparent;
}
.rhodea-booking-bar .vrb-bar-cell {
  flex: 1 1 0;
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: transparent;
}
.rhodea-booking-bar .vrb-bar-sep {
  width: 1px;
  background: rgba(44,38,32,.12);
  align-self: stretch;
  margin: 8px 0;
}
.rhodea-booking-bar .vrb-bar-lbl {
  font-family: var(--wp--preset--font-family--body);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(44,38,32,.55);
  font-weight: 500;
  margin-bottom: 6px;
  line-height: 1;
}
.rhodea-booking-bar .vrb-bar-range,
.rhodea-booking-bar .vrb-bar-guests-btn {
  font-family: var(--wp--preset--font-family--body);
  font-size: 0.95rem;
  color: var(--wp--preset--color--contrast);
  border: 0;
  background: transparent;
  padding: 4px 0;
  text-align: left;
  cursor: pointer;
  width: 100%;
}
.rhodea-booking-bar .vrb-bar-guests-summary { font-weight: 500; }
.rhodea-booking-bar .vrb-bar-guests-sub {
  color: rgba(44,38,32,.5);
  font-size: 0.85rem;
  margin-left: 6px;
}
.rhodea-booking-bar .vrb-bar-cta {
  display: flex;
  align-items: stretch;
  padding: 0;
}
.rhodea-booking-bar .vrb-bar-btn {
  background: var(--wp--preset--color--primary) !important;
  color: #fff !important;
  font-family: var(--wp--preset--font-family--body);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0 32px;
  border: 0 !important;
  cursor: pointer;
  transition: background .35s, transform .35s;
  white-space: nowrap;
  min-height: 56px;
}
.rhodea-booking-bar .vrb-bar-btn:hover {
  background: var(--wp--preset--color--primary-deep) !important;
  transform: translateY(-1px);
}

/* Tablet ≤ 900px: 2 columns x 2 rows */
@media (max-width: 900px) {
  .rhodea-booking-bar .vrb-bar-card {
    flex-wrap: wrap;
  }
  .rhodea-booking-bar .vrb-bar-cell {
    flex: 1 1 50%;
    padding: 16px 18px;
  }
  .rhodea-booking-bar .vrb-bar-sep { display: none; }
  .rhodea-booking-bar .vrb-bar-cta {
    flex: 1 1 100%;
  }
  .rhodea-booking-bar .vrb-bar-btn { width: 100%; min-height: 52px; }
}

/* Mobile ≤ 600px: full-stack */
@media (max-width: 600px) {
  .rhodea-booking-bar .vrb-bar-cell { flex: 1 1 100%; }
}

/* ---- Intro / "The Villa" — fix vanishing text on tablet & widen gap ---- */
.rhodea-section .rhodea-reveal.wp-block-columns,
.rhodea-section.rhodea-experience .rhodea-stagger.wp-block-columns,
.rhodea-section .wp-block-columns {
  gap: 96px;
}
@media (max-width: 1100px) {
  .rhodea-section .wp-block-columns { gap: 56px; }
}
/* Reinforce columns so flex-basis quirks don't drop a column at ~1024px.
   The bug: when text-col is 52% + image-col is 48% + a left blockGap of 80px,
   total demand can exceed 100% and one column collapses. Force min-width. */
.rhodea-section .wp-block-columns > .wp-block-column {
  min-width: 0;
  flex-grow: 1;
}
@media (max-width: 900px) {
  .rhodea-section .wp-block-columns {
    flex-wrap: wrap !important;
    gap: 40px;
  }
  .rhodea-section .wp-block-columns > .wp-block-column {
    flex-basis: 100% !important;
    width: 100% !important;
  }
}

/* ---- Intro stamp: overlap bottom-left (design spec) ---- */
.rhodea-intro-figure,
div.rhodea-intro-figure {
  position: relative !important;
  overflow: visible !important;
}
.rhodea-intro-stamp {
  position: absolute !important;
  bottom: -26px !important;
  left: -26px !important;
  right: auto !important;
  top: auto !important;
  z-index: 2;
}

/* ---- Facts / AT A GLANCE — widen headline + uniform tiles + mobile 2-col ---- */
.rhodea-facts-head {
  max-width: none !important;
  contain: layout;
}
.rhodea-facts-head .wp-block-heading {
  max-width: none;
}
.rhodea-fact,
.rhodea-facts-grid .rhodea-fact {
  background: #F1E7D6 !important;
  padding: 32px 24px;
}
@media (max-width: 980px) {
  .rhodea-facts-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .rhodea-facts-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .rhodea-fact { padding: 24px 18px; }
  .rhodea-fact-ico { width: 28px; height: 28px; margin-bottom: 12px; }
  .rhodea-fact b { font-size: 1.35rem; }
}

/* ---- Gallery: tighter mobile gap ---- */
@media (max-width: 480px) {
  .rhodea-gallery { gap: 8px; }
}

/* ---- Experience section: dark background + cream text (P0 #3) ---- */
.rhodea-experience.has-paper-background-color,
.rhodea-experience {
  background-color: #2C2620 !important;
  color: #FAF6EE;
}
.rhodea-experience .wp-block-heading,
.rhodea-experience h2,
.rhodea-experience h3 {
  color: #FAF6EE !important;
}
.rhodea-experience .wp-block-heading em,
.rhodea-experience h2 em {
  color: #E6B89C !important;
  font-style: italic;
}
.rhodea-experience p,
.rhodea-experience .wp-block-paragraph {
  color: rgba(250, 246, 238, 0.72) !important;
}
.rhodea-experience .rhodea-eyebrow {
  color: #E6B89C !important;
}

/* ---- Trust strip: gap 80px (P2) ---- */
.rhodea-trust .wp-block-columns {
  gap: 80px;
}
@media (max-width: 900px) {
  .rhodea-trust .wp-block-columns { gap: 40px; }
}

/* ---- FAQ padding tighten ---- */
.rhodea-faq-list { max-width: 880px; margin-inline: auto; }

/* ---- Closing CTA: no margin-top on lonely paragraph after buttons ---- */
.rhodea-closing-cta .wp-block-buttons + .wp-block-paragraph { margin-top: 0; }

/* ---- Booking-bar: 2-col on tablet, full-stack on mobile (visual hint
   for Lodgify shortcode rendering — overrides handled by widget CSS) ---- */
@media (max-width: 900px) {
  .rhodea-booking-card { padding: 24px 28px !important; }
}
@media (max-width: 600px) {
  .rhodea-booking-card { padding: 20px 22px !important; }
}

/* ---- Hero: scroll indicator (subtle, design spec) ---- */
.rhodea-hero::after {
  content: 'SCROLL';
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--wp--preset--font-family--body);
  font-size: 10px;
  letter-spacing: 0.32em;
  color: rgba(255, 255, 255, 0.7);
  padding-top: 92px;
  background:
    linear-gradient(rgba(255,255,255,.7), rgba(255,255,255,.7)) center top / 1px 80px no-repeat;
  pointer-events: none;
}
@media (max-width: 600px) {
  .rhodea-hero::after { display: none; }
}

/* ---- Tablet padding tweaks ---- */
@media (max-width: 1024px) {
  .rhodea-hero .rhodea-display {
    font-size: clamp(72px, 10vw, 136px) !important;
  }
}
