/*
Theme Name:  The Blog by ResortPass
Theme URI:   https://resortpass.com/blog
Author:      ResortPass
Author URI:  https://resortpass.com
Description: The Blog by ResortPass — an editorial blog covering spa days, staycations, group escapes, and travel inspiration.
Version:     1.0.0
License:     All Rights Reserved
Text Domain: the-blog-by-resortpass
*/

/* ── FONT DECLARATIONS ── */

/* Moulin */
@font-face {
  font-family: 'Moulin';
  font-weight: 200;
  font-style: normal;
  font-display: swap;
  src: url('fonts/Moulin-Thin.woff2') format('woff2'),
       url('fonts/Moulin-Thin.woff') format('woff');
}
@font-face {
  font-family: 'Moulin';
  font-weight: 300;
  font-style: normal;
  font-display: swap;
  src: url('fonts/Moulin-Light.woff2') format('woff2'),
       url('fonts/Moulin-Light.woff') format('woff');
}
@font-face {
  font-family: 'Moulin';
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url('fonts/Moulin-Regular.woff2') format('woff2'),
       url('fonts/Moulin-Regular.woff') format('woff');
}
@font-face {
  font-family: 'Moulin';
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: url('fonts/Moulin-Medium.woff2') format('woff2'),
       url('fonts/Moulin-Medium.woff') format('woff');
}
@font-face {
  font-family: 'Moulin';
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url('fonts/Moulin-Bold.woff2') format('woff2'),
       url('fonts/Moulin-Bold.woff') format('woff');
}

/* Basetica */
@font-face {
  font-family: 'Basetica';
  font-weight: 100;
  font-style: normal;
  font-display: swap;
  src: url('fonts/Basetica-Light.woff2') format('woff2'),
       url('fonts/Basetica-Light.woff') format('woff');
}
@font-face {
  font-family: 'Basetica';
  font-weight: 300;
  font-style: normal;
  font-display: swap;
  src: url('fonts/Basetica-Light.woff2') format('woff2'),
       url('fonts/Basetica-Light.woff') format('woff');
}
@font-face {
  font-family: 'Basetica';
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url('fonts/basetica-regular.woff2') format('woff2'),
       url('fonts/basetica-regular.woff') format('woff');
}
@font-face {
  font-family: 'Basetica';
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: url('fonts/Basetica-Medium.woff2') format('woff2'),
       url('fonts/Basetica-Medium.woff') format('woff');
}
@font-face {
  font-family: 'Basetica';
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url('fonts/Basetica-Bold.woff2') format('woff2'),
       url('fonts/Basetica-Bold.woff') format('woff');
}
@font-face {
  font-family: 'Basetica';
  font-weight: 900;
  font-style: normal;
  font-display: swap;
  src: url('fonts/Basetica-Black.woff2') format('woff2'),
       url('fonts/Basetica-Black.woff') format('woff');
}

/* ── BRAND COLOR SYSTEM ── */
:root {
  --deep-earth:       #211E17;
  --alabaster:        #F2ECDA;
  --slate:            #C2E1F2;
  --serpentine:       #636E48;
  --terracotta:       #9E653C;
  --citrine:          #F5EEB5;
  --alabaster-bg:     #FAF7F0;
  --alabaster-mid:    #EBD6C7;
  --deep-earth-mid:   #66635C;
  --deep-earth-light: #A69774;
  --deep-earth-xlt:   #BFBBAC;
  --terracotta-lt:    #CC9670;
  --terracotta-dark:  #4D3422;
  --serpentine-lt:    #A6B286;
  --serpentine-dark:  #2C331A;
  --slate-mid:        #86ABBF;
  --slate-dark:       #537080;
  --citrine-mid:      #D9D298;
  --bg:               #FAF7F0;
  --bg-alt:           #F0EBD9;
  --text:             #211E17;
  --muted:            #66635C;
  --light:            #A69774;
  --rule:             rgba(33,30,23,0.12);
  --card-bg:          #FFFFFF;
}

/* ── RESET + BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Basetica', 'Helvetica Neue', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ── NAV ── */
.site-nav {
  background: var(--deep-earth);
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 40px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.nav-brand-rp {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(242,236,218,0.5);
}
.nav-logo {
  height: 14px;
  width: auto;
  display: block;
}
.nav-brand-sep { width: 1px; height: 14px; background: rgba(242,236,218,0.2); }
.nav-brand-name {
  font-family: 'Moulin', Georgia, serif;
  font-weight: 200;
  font-size: 16px;
  color: var(--alabaster);
  letter-spacing: 0.02em;
}
.nav-menu-wrap {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}
/* WordPress outputs nav as ul — style it here */
.nav-menu-wrap ul {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu-wrap ul li a {
  font-family: 'Basetica', 'Helvetica Neue', Arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: none;
  color: rgba(242,236,218,0.65);
  padding: 7px 12px;
  border-radius: 2px;
  transition: color 0.2s;
  display: block;
}
.nav-menu-wrap ul li a:hover,
.nav-menu-wrap ul li.current-menu-item a { color: var(--alabaster); }
.nav-cta {
  background: var(--alabaster);
  color: var(--deep-earth);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: none;
  padding: 8px 18px;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--citrine); }

/* ── HERO ── */
.hero {
  background: var(--deep-earth);
  display: grid;
  grid-template-columns: 38% 62%;
  min-height: 440px;
}
.hero-left {
  padding: 60px 48px 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero-issue {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(242,236,218,0.45);
  margin-bottom: 24px;
}
.hero-title {
  font-family: 'Moulin', Georgia, serif;
  font-weight: 200;
  font-size: clamp(48px, 5.5vw, 80px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--alabaster);
  margin-bottom: 28px;
}
.hero-sub {
  font-family: 'Basetica', 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(242,236,218,0.55);
  max-width: 400px;
  margin-bottom: 36px;
}
.hero-cta {
  display: inline-block;
  background: var(--terracotta);
  color: var(--alabaster);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: none;
  padding: 13px 24px;
  border-radius: 2px;
  align-self: flex-start;
  transition: background 0.2s;
}
.hero-cta:hover { background: var(--terracotta-dark); }
.hero-right { position: relative; overflow: hidden; }
.hero-feature-img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  background: linear-gradient(160deg, #537080 0%, #86ABBF 40%, #C2E1F2 70%, #A69774 100%);
}
.hero-feature-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-feature-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(33,30,23,0.55) 0%, rgba(33,30,23,0.15) 15%, transparent 40%);
}
.hero-feature-label {
  position: relative;
  z-index: 1;
  padding: 28px 28px;
  width: 100%;
}
.hero-feature-date {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(242,236,218,0.55);
  margin-bottom: 8px;
}
.hero-feature-title {
  font-family: 'Basetica', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 300;
  font-size: 26px;
  line-height: 1.2;
  color: var(--alabaster);
}

/* ── SECTION SHELL ── */
.section { padding: 52px 40px; }
.section.alt { background: var(--bg-alt); }
.section.earth { background: var(--alabaster-mid); }
.section-hd {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rule);
}
.section-title {
  font-family: 'Basetica', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 400;
  font-size: 26px;
  color: var(--deep-earth);
}
.t-link-sm {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
  text-decoration: none;
}

/* ── CARD GRIDS ── */
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.grid-feature { display: grid; grid-template-columns: 1.75fr 1fr; gap: 18px; align-items: start; }
.side-cards { display: flex; flex-direction: column; gap: 16px; }
.side-cards .card { flex: none; }

/* ── CARD ── */
.card {
  background: var(--card-bg);
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid rgba(33,30,23,0.07);
  transition: transform 0.25s, box-shadow 0.25s;
  display: block;
  text-decoration: none;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(33,30,23,0.1); }
.card-img {
  width: 100%;
  position: relative;
  overflow: hidden;
  background: var(--deep-earth-light);
}
.card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(33,30,23,0.38) 0%, transparent 55%);
}
.card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.h100 { height: 100px; }
.h140 { height: 145px; }
.h170 { height: 175px; }
.h220 { height: 225px; }
.h280 { height: 285px; }
.h340 { height: 345px; }
.hfull { height: 100%; min-height: 260px; }

.card-body { padding: 16px 18px 20px; }
.card-tag {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 8px;
}
.card-title {
  font-family: 'Basetica', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.25;
  color: var(--deep-earth);
  margin-bottom: 8px;
}
.card-title.lg {
  font-family: 'Basetica', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 300;
  font-size: 24px;
}
.card-title.sm { font-size: 15px; }
.card-excerpt {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 12px;
}
.card-meta { font-size: 11px; color: var(--light); letter-spacing: 0.04em; }

/* ── EDITORIAL FEATURE STRIP ── */
.editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid rgba(33,30,23,0.07);
}
.editorial-img {
  min-height: 300px;
  background: var(--deep-earth-light);
  position: relative;
  overflow: hidden;
}
.editorial-img img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.editorial-body {
  background: var(--deep-earth);
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.editorial-eyebrow {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta-lt);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.editorial-eyebrow::before { content: ''; display: block; width: 20px; height: 1px; background: var(--terracotta-lt); }
.editorial-title {
  font-family: 'Basetica', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 300;
  font-size: clamp(22px, 2.5vw, 32px);
  line-height: 1.2;
  color: var(--alabaster);
  margin-bottom: 18px;
}
.editorial-text {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(242,236,218,0.48);
  margin-bottom: 26px;
}
.editorial-link {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta-lt);
  text-decoration: none;
}

/* ── HORIZONTAL CARD (wellness list) ── */
.hcard {
  display: flex;
  background: var(--card-bg);
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid rgba(33,30,23,0.07);
  text-decoration: none;
  transition: transform 0.22s, box-shadow 0.22s;
}
.hcard:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(33,30,23,0.08); }
.hcard-img { width: 110px; flex-shrink: 0; background: var(--deep-earth-light); position: relative; overflow: hidden; }
.hcard-img img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.hcard-body { padding: 14px 16px; display: flex; flex-direction: column; justify-content: center; }
.wellness-list { display: flex; flex-direction: column; gap: 14px; }

/* ── CITY STRIP ── */
.city-strip { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; }
.city-card {
  position: relative;
  height: 160px;
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s;
  display: block;
  text-decoration: none;
  background: var(--deep-earth-light);
}
.city-card:hover { transform: scale(1.025); }
.city-card img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.city-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(33,30,23,0.82) 0%, rgba(33,30,23,0.08) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px 16px 13px;
}
.city-name {
  font-family: 'Basetica', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 300;
  font-size: 18px;
  color: var(--alabaster);
}

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--deep-earth);
  border-radius: 2px;
  padding: 36px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cta-banner-title {
  font-family: 'Basetica', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 300;
  font-size: 28px;
  color: var(--alabaster);
  margin-bottom: 6px;
}
.cta-banner-sub {
  font-size: 13px;
  font-weight: 300;
  color: rgba(242,236,218,0.45);
}
.cta-banner-btn {
  flex-shrink: 0;
  background: var(--terracotta);
  color: var(--alabaster);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: none;
  padding: 14px 28px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
  display: inline-block;
}
.cta-banner-btn:hover { background: var(--terracotta-dark); }

/* ── NEWSLETTER ── */
.newsletter {
  background: var(--deep-earth);
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 2px;
  overflow: hidden;
}
.nl-left { padding: 48px 44px; }
.nl-title {
  font-family: 'Basetica', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 300;
  font-size: 32px;
  color: var(--alabaster);
  line-height: 1.15;
  margin-bottom: 12px;
}
.nl-title em { color: var(--terracotta-lt); }
.nl-sub { font-size: 14px; font-weight: 300; color: rgba(242,236,218,0.42); line-height: 1.65; margin-bottom: 28px; }
.nl-form { display: flex; max-width: 360px; }
.nl-input {
  flex: 1;
  background: rgba(242,236,218,0.07);
  border: 1px solid rgba(242,236,218,0.15);
  border-right: none;
  color: var(--alabaster);
  font-family: 'Basetica', 'Helvetica Neue', Arial, sans-serif;
  font-size: 13px;
  padding: 11px 16px;
  border-radius: 2px 0 0 2px;
  outline: none;
}
.nl-input::placeholder { color: rgba(242,236,218,0.28); }
.nl-btn {
  background: var(--terracotta);
  color: var(--alabaster);
  font-family: 'Basetica', 'Helvetica Neue', Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: none;
  padding: 11px 20px;
  border: none;
  border-radius: 0 2px 2px 0;
  cursor: pointer;
  white-space: nowrap;
}
.nl-right {
  position: relative;
  min-height: 220px;
  background: linear-gradient(145deg, #2C331A 0%, #636E48 50%, #CC9670 100%);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 32px;
}
.nl-stat { text-align: right; }
.nl-stat-num {
  font-family: 'Moulin', Georgia, serif;
  font-weight: 200;
  font-size: 56px;
  color: rgba(242,236,218,0.88);
  line-height: 1;
}
.nl-stat-label { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(242,236,218,0.48); margin-top: 4px; }

/* ── WORDPRESS EDITOR STYLE RESETS ── */
/* Prevent Gutenberg/block editor default styles from overriding theme */
.wp-block-paragraph,
.wp-block-list,
.wp-block-heading,
.entry-content p,
.entry-content ul,
.entry-content ol,
.entry-content h2,
.entry-content h3,
.entry-content h4 {
  font-family: inherit;
  color: inherit;
}
.post-body .wp-block-image img {
  width: 100%;
  height: auto;
  border-radius: 2px;
  margin: 8px 0 4px;
}
.post-body figure.wp-block-image {
  margin: 32px 0;
}
.post-body figure.wp-block-image figcaption {
  font-size: 12px;
  color: var(--muted);
  margin-top: 8px;
  border-top: 1px solid var(--rule);
  padding-top: 8px;
}
.post-body .wp-block-separator {
  border: none;
  border-top: 1px solid var(--rule);
  margin: 40px 0;
}

/* ── SINGLE POST ── */
.post-breadcrumb {
  width: 100%;
  padding: 20px 40px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Basetica', 'Helvetica Neue', Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
}
.post-breadcrumb a { color: var(--muted); flex-shrink: 0; }
.post-breadcrumb-sep { color: var(--light); flex-shrink: 0; }
.post-breadcrumb-current {
  color: var(--terracotta);
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.post-header {
  max-width: 700px;
  margin: 0 auto;
  padding: 32px 40px 36px;
}
.post-tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.post-tag::before { content: ''; display: block; width: 20px; height: 1px; background: var(--terracotta); }
.post-title {
  font-family: 'Moulin', Georgia, serif;
  font-weight: 200;
  font-size: 52px;
  line-height: 1.08;
  color: var(--deep-earth);
  margin-bottom: 22px;
}
.post-deck {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 28px;
  border-left: 2px solid var(--terracotta);
  padding-left: 20px;
}
.post-meta-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
}
.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--deep-earth-light);
  flex-shrink: 0;
  overflow: hidden;
}
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-name { font-size: 13px; font-weight: 500; color: var(--deep-earth); margin-bottom: 2px; }
.author-date { font-size: 11px; color: var(--muted); }
.read-time {
  font-size: 11px;
  color: var(--light);
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid var(--alabaster-mid);
  border-radius: 20px;
  margin-left: auto;
}

.post-hero-img {
  width: 100%;
  max-height: 560px;
  overflow: hidden;
  position: relative;
}
.post-hero-img img { width: 100%; height: 560px; object-fit: cover; display: block; }
.hero-img-overlay {
  position: absolute;
  bottom: 14px;
  left: 20px;
  font-family: 'Basetica', 'Helvetica Neue', Arial, sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.7);
  background: rgba(33,30,23,0.35);
  padding: 4px 10px;
  border-radius: 2px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  max-width: 480px;
  line-height: 1.4;
}
.post-img-caption {
  max-width: 700px;
  margin: 0 auto;
  padding: 10px 40px 0;
  font-size: 12px;
  color: var(--muted);
  border-top: 1px solid var(--rule);
}

.post-body {
  max-width: 700px;
  margin: 40px auto;
  padding: 0 40px;
}
.post-body p {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.82;
  color: var(--text);
  margin-bottom: 28px;
}
.post-body p.intro { font-size: 19px; font-weight: 400; color: var(--deep-earth); }
.post-body h2 {
  font-family: 'Basetica', 'Helvetica Neue', Arial, sans-serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--deep-earth);
  margin: 48px 0 20px;
}
.post-body h3 {
  font-family: 'Basetica', 'Helvetica Neue', Arial, sans-serif;
  font-size: 22px;
  font-weight: 300;
  color: var(--deep-earth);
  margin: 36px 0 14px;
}
.post-body a { color: var(--terracotta); border-bottom: 1px solid rgba(158,101,60,0.3); }
.post-body ul, .post-body ol { padding-left: 24px; margin-bottom: 28px; }
.post-body li { font-size: 17px; font-weight: 300; line-height: 1.82; color: var(--text); margin-bottom: 8px; }

.pullquote {
  margin: 44px 0;
  padding: 32px 36px;
  background: var(--bg-alt);
  border-left: 3px solid var(--terracotta);
  border-radius: 0 2px 2px 0;
}
.pullquote p {
  font-family: 'Basetica', 'Helvetica Neue', Arial, sans-serif;
  font-size: 24px !important;
  font-weight: 300;
  line-height: 1.5 !important;
  color: var(--deep-earth) !important;
  margin-bottom: 12px !important;
}
.pullquote cite { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--light); font-style: normal; }

/* author bio */
.author-bio {
  max-width: 700px;
  margin: 60px auto 0;
  padding: 32px 40px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.author-bio-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--deep-earth-light);
  flex-shrink: 0;
  overflow: hidden;
}
.author-bio-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-bio-label { font-size: 9px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: var(--terracotta); margin-bottom: 6px; }
.author-bio-name { font-family: 'Moulin', Georgia, serif; font-size: 20px; font-weight: 200; color: var(--deep-earth); margin-bottom: 10px; }
.author-bio-text { font-size: 14px; font-weight: 300; line-height: 1.7; color: var(--muted); }

/* inline newsletter (single post) */
.newsletter-inline {
  max-width: 700px;
  margin: 52px auto;
  padding: 0 40px;
}
.newsletter-inline .newsletter {
  border-radius: 2px;
  overflow: hidden;
}

/* ── INLINE RESORT PROPERTY CARDS ── */
/* Used via Custom HTML block in the post editor */
.resort-cta-wrap {
  margin: 48px 0;
  padding: 0;
}
.resort-cta-label {
  font-family: 'Basetica', 'Helvetica Neue', Arial, sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.resort-cta-label::before {
  content: '';
  display: block;
  width: 16px;
  height: 1px;
  background: var(--terracotta);
}
.resort-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.resort-card {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(33,30,23,0.08);
  transition: transform 0.22s, box-shadow 0.22s;
}
.resort-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(33,30,23,0.1);
}
.resort-card-img {
  height: 160px;
  position: relative;
  background: var(--deep-earth-light);
  overflow: hidden;
}
.resort-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.resort-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(33,30,23,0.35) 0%, transparent 55%);
}
/* Placeholder color variants for cards without images */
.resort-card-img.rc1 { background: linear-gradient(145deg, var(--terracotta-dark) 0%, var(--terracotta) 55%, var(--terracotta-lt) 100%); }
.resort-card-img.rc2 { background: linear-gradient(145deg, var(--slate-dark) 0%, var(--slate-mid) 55%, var(--slate) 100%); }
.resort-card-img.rc3 { background: linear-gradient(145deg, var(--serpentine-dark) 0%, var(--serpentine) 55%, var(--serpentine-lt) 100%); }
.resort-card-img.rc4 { background: linear-gradient(145deg, var(--deep-earth) 0%, var(--deep-earth-mid) 55%, var(--deep-earth-light) 100%); }

.resort-card-body { padding: 14px 16px 18px; }
.resort-card-name {
  font-family: 'Moulin', Georgia, serif;
  font-weight: 200;
  font-size: 15px;
  line-height: 1.3;
  color: var(--deep-earth);
  margin-bottom: 3px;
}
.resort-card-loc {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 10px;
  font-family: 'Basetica', 'Helvetica Neue', Arial, sans-serif;
}
.resort-card-price {
  font-size: 13px;
  font-weight: 500;
  color: var(--deep-earth);
  margin-bottom: 12px;
  font-family: 'Basetica', 'Helvetica Neue', Arial, sans-serif;
}
.resort-card-price span {
  font-weight: 300;
  color: var(--muted);
  font-size: 12px;
}
.resort-card-btn {
  display: block;
  width: 100%;
  background: var(--terracotta);
  color: var(--alabaster);
  font-family: 'Basetica', 'Helvetica Neue', Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: none;
  padding: 10px 0;
  border: none;
  border-radius: 3px;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}
.resort-card-btn:hover { background: var(--terracotta-dark); }

/* Mobile: stack cards */
@media (max-width: 768px) {
  .resort-cards { grid-template-columns: 1fr; gap: 14px; }
}

/* ── SEARCH ── */
.nav-search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: none;
  border: none;
  color: rgba(242,236,218,0.65);
  cursor: pointer;
  border-radius: 2px;
  transition: color 0.2s;
  flex-shrink: 0;
}
.nav-search-btn:hover { color: var(--alabaster); }

/* Desktop search overlay */
.search-overlay {
  position: fixed;
  top: 54px;
  left: 0;
  right: 0;
  background: var(--deep-earth);
  border-bottom: 1px solid rgba(242,236,218,0.1);
  z-index: 99;
  transform: translateY(-110%);
  transition: transform 0.25s ease;
  padding: 0 40px;
}
.search-overlay.is-open { transform: translateY(0); }
.search-overlay-inner {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  height: 60px;
}
.search-overlay-form {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
}
.search-overlay-input {
  flex: 1;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(242,236,218,0.25);
  color: var(--alabaster);
  font-family: 'Basetica', 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
  padding: 8px 0;
  outline: none;
  transition: border-color 0.2s;
}
.search-overlay-input::placeholder { color: rgba(242,236,218,0.3); }
.search-overlay-input:focus { border-bottom-color: rgba(242,236,218,0.6); }
.search-overlay-submit {
  background: none;
  border: none;
  color: rgba(242,236,218,0.5);
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 4px;
  transition: color 0.2s;
}
.search-overlay-submit:hover { color: var(--alabaster); }
.search-overlay-close {
  background: none;
  border: none;
  color: rgba(242,236,218,0.5);
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 8px;
  border-radius: 2px;
  transition: color 0.2s;
  flex-shrink: 0;
}
.search-overlay-close:hover { color: var(--alabaster); }

/* Drawer search (mobile) */
.drawer-search-form { margin-bottom: 4px; }
.drawer-search-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(242,236,218,0.07);
  border: 1px solid rgba(242,236,218,0.12);
  border-radius: 2px;
  padding: 10px 14px;
}
.drawer-search-wrap svg { color: rgba(242,236,218,0.4); flex-shrink: 0; }
.drawer-search-input {
  flex: 1;
  background: none;
  border: none;
  color: var(--alabaster);
  font-family: 'Basetica', 'Helvetica Neue', Arial, sans-serif;
  font-size: 14px;
  font-weight: 300;
  outline: none;
}
.drawer-search-input::placeholder { color: rgba(242,236,218,0.35); }

/* ── SEARCH RESULTS PAGE ── */
.search-header {
  padding: 48px 40px 32px;
  border-bottom: 1px solid var(--rule);
}
.search-header-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 10px;
}
.search-header-title {
  font-family: 'Moulin', Georgia, serif;
  font-weight: 200;
  font-size: clamp(28px, 3vw, 44px);
  color: var(--deep-earth);
  line-height: 1.1;
}
.search-header-title span { color: var(--terracotta); }
.search-header-count {
  font-size: 13px;
  color: var(--muted);
  margin-top: 8px;
  font-weight: 300;
}
.search-results-grid {
  padding: 40px 40px 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.search-none {
  padding: 80px 40px;
  text-align: center;
}
.search-none-title {
  font-family: 'Basetica', 'Helvetica Neue', Arial, sans-serif;
  font-size: 22px;
  font-weight: 300;
  color: var(--deep-earth);
  margin-bottom: 12px;
}
.search-none-text {
  font-size: 15px;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 28px;
}
.search-none-back {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  color: var(--terracotta);
  text-decoration: none;
  letter-spacing: 0.04em;
}

/* ── HAMBURGER + MOBILE DRAWER ── */
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-right: 8px;
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 2px;
}
.nav-hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: rgba(242,236,218,0.8);
  transition: transform 0.25s, opacity 0.25s;
  transform-origin: center;
}
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-drawer {
  position: fixed;
  top: 54px;
  left: 0;
  right: 0;
  background: var(--deep-earth);
  z-index: 99;
  transform: translateY(-110%);
  transition: transform 0.3s ease;
  border-bottom: 1px solid rgba(242,236,218,0.08);
}
.nav-drawer.is-open { transform: translateY(0); }
.nav-drawer-inner {
  padding: 20px 20px 28px;
  display: flex;
  flex-direction: column;
}
.nav-drawer-menu {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nav-drawer-menu li a {
  display: block;
  font-family: 'Basetica', 'Helvetica Neue', Arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(242,236,218,0.7);
  padding: 12px 0;
  border-bottom: 1px solid rgba(242,236,218,0.07);
  text-decoration: none;
  transition: color 0.15s;
}
.nav-drawer-menu li:last-child a { border-bottom: none; }
.nav-drawer-menu li a:hover,
.nav-drawer-menu li.current-menu-item a { color: var(--alabaster); }
.nav-drawer-cta {
  display: block;
  background: var(--terracotta);
  color: var(--alabaster);
  font-family: 'Basetica', 'Helvetica Neue', Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: none;
  padding: 13px;
  border-radius: 2px;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s;
}
.nav-drawer-cta:hover { background: var(--terracotta-dark); }

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  top: 54px;
  background: rgba(33,30,23,0.5);
  z-index: 98;
}
.nav-overlay.is-open { display: block; }

/* related posts */
/* related posts — carousel */
.related { background: var(--bg-alt); padding: 64px 40px; margin-top: 64px; }
.related-hd {
  max-width: 1200px;
  margin: 0 auto 28px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--rule);
}
.related-title { font-family: 'Basetica', 'Helvetica Neue', Arial, sans-serif; font-size: 26px; font-weight: 400; color: var(--deep-earth); }

.carousel-wrap {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}
.carousel-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  flex: 1;
  /* Snap to cards */
  scroll-snap-type: x mandatory;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-track .card {
  flex: 0 0 calc(33.333% - 12px);
  scroll-snap-align: start;
  margin-bottom: 0;
}
.carousel-btn {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--rule);
  background: #fff;
  color: var(--deep-earth);
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  z-index: 1;
}
.carousel-btn:hover {
  background: var(--deep-earth);
  color: var(--alabaster);
  border-color: var(--deep-earth);
}
.carousel-btn:disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}

/* ── FOOTER ── */
.site-footer { background: var(--deep-earth); padding: 40px 40px 28px; border-top: 1px solid rgba(242,236,218,0.06); }
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(242,236,218,0.08);
  margin-bottom: 20px;
}
.footer-brand { font-family: 'Moulin', Georgia, serif; font-weight: 200; font-size: 22px; color: var(--alabaster); margin-bottom: 10px; }
.footer-sub { font-size: 12px; color: rgba(242,236,218,0.32); max-width: 220px; line-height: 1.65; }
.footer-cols { display: flex; gap: 52px; }
.footer-col-head { font-size: 9px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--terracotta-lt); margin-bottom: 14px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 12px; color: rgba(242,236,218,0.4); text-decoration: none; transition: color 0.15s; }
.footer-links a:hover { color: rgba(242,236,218,0.75); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 11px; color: rgba(242,236,218,0.18); }
.footer-back { font-size: 11px; color: rgba(242,236,218,0.32); }
.footer-back span { color: var(--terracotta-lt); margin-right: 4px; }

/* ── MOBILE ── */
@media (max-width: 768px) {
  .site-nav { padding: 0 16px; }
  .nav-menu-wrap { display: none; }
  .nav-right { margin-left: auto; padding-right: 0; }
  .nav-logo { height: 10px; }
  .nav-brand-name { font-size: 12px; }
  .nav-brand-sep { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  /* Hide desktop search icon on mobile — search lives in the drawer */
  .nav-search-btn { display: none; }
  /* Search overlay padding on mobile */
  .search-overlay { padding: 0 20px; }
  /* Search results grid: single column on mobile */
  .search-results-grid { grid-template-columns: 1fr; padding: 24px 20px 48px; }
  .search-header { padding: 32px 20px 24px; }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 36px 20px 28px; }
  .hero-title { font-size: 44px; }
  .hero-right { min-height: 260px; }
  .hero-feature-img { min-height: 260px; }
  .hero-feature-title { font-size: 20px; }

  .section { padding: 36px 20px; }
  .section-title { font-size: 22px; }

  .grid-3, .grid-2, .grid-feature { grid-template-columns: 1fr; gap: 14px; }

  .editorial { grid-template-columns: 1fr; }
  .editorial-body { padding: 28px 24px; }
  .editorial-title { font-size: 24px; }
  .editorial-img { min-height: 200px; }

  /* Change 4: City guide cards full width stack on mobile */
  .city-strip { grid-template-columns: 1fr; gap: 10px; }
  .city-card { height: 200px; }

  .cta-banner { flex-direction: column; padding: 28px 20px; text-align: center; }
  .cta-banner-btn { width: 100%; text-align: center; }

  .newsletter { grid-template-columns: 1fr; }
  .nl-left { padding: 32px 20px; }
  .nl-title { font-size: 26px; }
  .nl-form { max-width: 100%; }
  .nl-right { display: none; }

  .site-footer { padding: 32px 20px 24px; }
  .footer-top { flex-direction: column; gap: 28px; }
  .footer-cols { gap: 32px; }

  .side-cards { gap: 14px; }
  .h340 { height: 220px; }
  .h280 { height: 200px; }
  .hfull { min-height: 180px; }
  .wellness-list { gap: 12px; }
  .hcard-img { width: 90px; }

  .post-header, .post-body, .post-breadcrumb, .post-img-caption,
  .author-bio, .newsletter-inline { padding-left: 20px; padding-right: 20px; }
  .post-title { font-size: 36px; }
  .post-deck { font-size: 16px; }
  .post-body p { font-size: 15px; }
  .post-body h2 { font-size: 26px; }
  .related-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .related { padding: 40px 20px; }
  .carousel-track .card { flex: 0 0 80%; }
  .carousel-btn { display: none; }

  /* Change 3: Normalize all card titles to same size on mobile */
  .card-title,
  .card-title.lg,
  .card-title.sm {
    font-size: 16px;
  }
}

/* ── DESKTOP ONLY ── */
@media (min-width: 769px) {

  /* Change 1: Article card images at 16:9 aspect ratio on desktop */
  .card .card-img {
    height: auto;
    aspect-ratio: 16 / 9;
  }
}
