/* ═══════════════════════════════════════════════════════
   SOJOURN UK — Global Stylesheet
   Extracted from all page-level <style> blocks.
   ═══════════════════════════════════════════════════════ */

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

/* ── CSS VARIABLES ── */
:root {
  --warm-white: #F5F2EC;
  --linen: #E8E4D8;
  --sage: #9A9F8E;
  --fern: #6B7568;
  --slate-blue: #7A9099;
  --deep-slate: #4A5550;
  --text-dark: #2C2C2A;
  --text-mid: #5C5C58;
  --text-muted: #8A8A84;
  --white: #FFFFFF;
  --error: #C0392B;
  --success: #5a7a52;
  --info-bg: #EEF4F0;
  --info-border: #C2D6C4;
  --warn-bg: #FDF6EC;
  --warn-border: #E8D5B0;
}

/* ── BASE ── */
html {
  scroll-behavior: smooth
}

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

/* ── TYPOGRAPHY ── */
.eyebrow {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--sage);
  display: block;
  margin-bottom: 14px;
}

h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.12;
  color: var(--text-dark);
}

h2 em {
  font-style: italic;
  color: var(--fern)
}

h2.light {
  color: var(--white)
}

h2.light em {
  color: rgba(255, 255, 255, .5)
}


/* ── NAV (Standard — inner pages) ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  border-bottom: 0.5px solid var(--linen);
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 32px
}

.nav-link {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-mid);
  text-decoration: none;
  transition: color .2s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--deep-slate)
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--deep-slate);
  text-decoration: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.nav-logo span {
  display: block;
  font-size: 8px;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  letter-spacing: .28em;
  margin-top: 2px;
  color: var(--sage);
}

.nav-cta {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--deep-slate);
  padding: 9px 20px;
  border-radius: 2px;
  text-decoration: none;
  transition: background .2s;
}

.nav-cta:hover {
  background: #3a4440
}

/* ── NAV SCROLLED STATE (Homepage specific but reusable) ── */
nav.scrolled {
  background: var(--deep-slate);
  padding: 16px 56px;
  border-bottom-color: rgba(255, 255, 255, .08);
}

nav.scrolled .nav-link { color: rgba(255,255,255,0.75); }
nav.scrolled .nav-link:hover { color: var(--white); }
nav.scrolled .nav-logo { color: var(--white); }
nav.scrolled .nav-logo span { color: rgba(255,255,255,0.5); }


/* ── HERO ── */
.hero {
  position: relative; height: 100vh; min-height: 640px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-video {
  width: 100%; height: 100%; object-fit: cover;
  display: none;
}
.hero-img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 60%;
  transition: opacity .6s;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(20, 28, 24, .32) 0%,
    rgba(20, 28, 24, .22) 40%,
    rgba(20, 28, 24, .60) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 0 24px;
  display: flex; flex-direction: column;
  align-items: center;
}
.hero-eyebrow {
  font-size: 9px; font-weight: 400; letter-spacing: .35em; text-transform: uppercase;
  color: rgba(255, 255, 255, .65); margin-bottom: 22px;
  display: flex; align-items: center; gap: 16px;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; width: 32px; height: 0.5px; background: rgba(255, 255, 255, .4);
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 6vw, 82px); font-weight: 300; line-height: 1.05;
  color: var(--white); margin-bottom: 22px; max-width: 860px;
  letter-spacing: .01em;
}
.hero h1 em { font-style: italic; color: rgba(255, 255, 255, .7); }
.hero-sub {
  font-size: 15px; font-weight: 300; line-height: 1.8;
  color: rgba(255, 255, 255, .65); max-width: 500px; margin-bottom: 52px;
}

/* ── SEARCH BAR ── */
.search-bar {
  width: 100%; max-width: 820px;
  background: rgba(255, 255, 255, .96);
  border-radius: 3px;
  display: grid; grid-template-columns: 2fr 1.1fr 1.1fr 1fr auto;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .22);
}
.search-field {
  padding: 16px 22px;
  border-right: 0.5px solid var(--linen);
  display: flex; flex-direction: column; gap: 4px;
  cursor: pointer; transition: background .2s;
}
.search-field:hover { background: var(--warm-white); }
.search-field:last-of-type { border-right: none; }
.sf-label {
  font-size: 8.5px; font-weight: 500; letter-spacing: .2em;
  text-transform: uppercase; color: var(--sage);
}
.sf-value {
  font-size: 13.5px; font-weight: 300; color: var(--text-dark);
  background: none; border: none; outline: none;
  font-family: 'Jost', sans-serif; cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
}
.sf-value::placeholder { color: var(--text-muted); }
select.sf-value { color: var(--text-dark); }
input[type="date"].sf-value { color: var(--text-muted); }
.search-btn {
  background: var(--deep-slate);
  padding: 0 32px; border: none; cursor: pointer;
  font-family: 'Jost', sans-serif; font-size: 10px; font-weight: 400;
  letter-spacing: .2em; text-transform: uppercase; color: var(--white);
  transition: background .2s; white-space: nowrap;
}
.search-btn:hover { background: #3a4440; }

/* ── MOBILE MENU (hamburger — used on inner pages) ── */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-menu-btn svg {
  width: 22px;
  height: 22px;
  stroke: var(--deep-slate);
  stroke-width: 1.5
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--deep-slate);
  padding: 14px 36px;
  border-radius: 2px;
  text-decoration: none;
  transition: background .2s, transform .15s;
}

.btn-primary:hover {
  background: #3a4440;
  transform: translateY(-1px)
}

.btn-outline {
  display: inline-block;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--deep-slate);
  border: 0.5px solid var(--deep-slate);
  padding: 14px 36px;
  border-radius: 2px;
  text-decoration: none;
  transition: background .2s;
}

.btn-outline:hover {
  background: var(--linen)
}

.btn-outline-light {
  display: inline-block;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--white);
  border: 0.5px solid rgba(255, 255, 255, .4);
  padding: 14px 36px;
  border-radius: 2px;
  text-decoration: none;
  transition: border-color .2s, background .2s;
}

.btn-outline-light:hover {
  border-color: rgba(255, 255, 255, .9);
  background: rgba(255, 255, 255, .06)
}

.btn-secondary {
  display: inline-block;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--deep-slate);
  border: 0.5px solid var(--deep-slate);
  padding: 14px 32px;
  border-radius: 2px;
  text-decoration: none;
  transition: background .2s;
}

.btn-secondary:hover {
  background: var(--linen)
}

/* ── CTA STRIP ── */
.cta-strip {
  background: var(--warm-white);
  padding: 80px 72px;
  border-top: 0.5px solid var(--linen);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}

.cta-strip-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 300;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.cta-strip-text h3 em {
  font-style: italic;
  color: var(--fern)
}

.cta-strip-text p {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.7;
}

.cta-strip-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap
}

/* ── FOOTER ── */
footer {
  background: var(--deep-slate);
  padding: 40px 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--white);
}

.footer-logo span {
  display: block;
  font-size: 8px;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  letter-spacing: .3em;
  color: var(--sage);
  margin-top: 3px;
}

.footer-links {
  display: flex;
  gap: 32px
}

.footer-links a {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
  text-decoration: none;
  transition: color .2s;
}

.footer-links a:hover {
  color: var(--white)
}

.footer-copy {
  font-size: 10px;
  color: rgba(255, 255, 255, .3);
  font-weight: 300
}

/* ── GLOBAL RESPONSIVE ── */
@media(max-width:900px) {
  nav {
    padding: 18px 24px
  }

  .nav-left,
  .nav-right .nav-link {
    display: none
  }

  .mobile-menu-btn {
    display: block
  }

  .cta-strip {
    padding: 64px 32px;
    flex-direction: column;
    align-items: flex-start
  }

  footer {
    padding: 32px 24px;
    flex-direction: column;
    align-items: flex-start
  }
}

/* ── INTRO STRIP ── */
.intro-strip { background: var(--deep-slate); padding: 0 72px; }
.intro-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-left: 0.5px solid rgba(255, 255, 255, .08);
}
.intro-item { padding: 40px 44px; border-right: 0.5px solid rgba(255, 255, 255, .08); }
.intro-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px; font-weight: 300; color: var(--sage);
  letter-spacing: .12em; margin-bottom: 18px; display: block;
}
.intro-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 300; color: var(--white);
  margin-bottom: 10px; line-height: 1.3;
}
.intro-item p {
  font-size: 12.5px; font-weight: 300; color: rgba(255, 255, 255, .5);
  line-height: 1.8;
}

/* ── LOCATIONS ── */
.locations { background: var(--warm-white); padding: 96px 0; }
.locations-header {
  max-width: 1200px; margin: 0 auto; padding: 0 72px 56px;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 32px;
}
.locations-grid {
  max-width: 1200px; margin: 0 auto; padding: 0 72px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.loc-card { position: relative; overflow: hidden; border-radius: 3px; text-decoration: none; display: block; }
.loc-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; transition: transform .7s ease; }
.loc-card:hover .loc-img { transform: scale(1.05); }
.loc-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(30, 38, 34, .75) 0%, rgba(30, 38, 34, .1) 55%, transparent 100%);
  transition: opacity .3s;
}
.loc-card:hover .loc-overlay { opacity: .85; }
.loc-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px 22px; }
.loc-name { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 300; color: var(--white); display: block; margin-bottom: 4px; }
.loc-count { font-size: 9px; font-weight: 400; letter-spacing: .18em; text-transform: uppercase; color: rgba(255, 255, 255, .6); }

/* ── PROPERTIES ── */
.properties { background: var(--white); padding: 96px 0; }
.properties-header {
  max-width: 1200px; margin: 0 auto; padding: 0 72px 56px;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 32px;
}
.prop-grid {
  max-width: 1200px; margin: 0 auto; padding: 0 72px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.prop-card {
  text-decoration: none; color: inherit; display: flex; flex-direction: column;
  border: 0.5px solid var(--linen); border-radius: 3px; overflow: hidden;
  transition: box-shadow .3s, transform .3s;
}
.prop-card:hover { box-shadow: 0 8px 40px rgba(74, 85, 80, .1); transform: translateY(-4px); }
.prop-img-wrap { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.prop-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.prop-card:hover .prop-img-wrap img { transform: scale(1.06); }
.prop-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--deep-slate); color: var(--white);
  font-size: 8px; font-weight: 400; letter-spacing: .2em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 2px;
}
.prop-body { padding: 24px 24px 28px; background: var(--white); flex: 1; display: flex; flex-direction: column; }
.prop-location { font-size: 9px; font-weight: 400; letter-spacing: .2em; text-transform: uppercase; color: var(--sage); margin-bottom: 7px; }
.prop-name { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 300; color: var(--text-dark); margin-bottom: 16px; line-height: 1.2; }
.prop-specs {
  display: flex; gap: 16px; flex-wrap: wrap; padding-top: 14px; border-top: 0.5px solid var(--linen); margin-top: auto;
}
.prop-spec { font-size: 11.5px; font-weight: 300; color: var(--text-muted); display: flex; align-items: center; gap: 5px; }
.spec-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--sage); flex-shrink: 0; }

/* ── REVIEWS ── */
.reviews { background: var(--deep-slate); padding: 96px 72px; }
.reviews-inner { max-width: 1200px; margin: 0 auto; }
.reviews-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 56px; gap: 32px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card { padding: 36px 32px; background: rgba(255, 255, 255, .05); border: 0.5px solid rgba(255, 255, 255, .1); border-radius: 3px; }
.stars { color: var(--sage); font-size: 11px; letter-spacing: 3px; margin-bottom: 18px; }
.review-text {
  font-family: 'Cormorant Garamond', serif; font-size: 17px; font-weight: 300; font-style: italic;
  color: rgba(255, 255, 255, .8); line-height: 1.7; margin-bottom: 20px;
}
.reviewer { font-size: 9.5px; font-weight: 400; letter-spacing: .18em; text-transform: uppercase; color: var(--sage); }

/* ── COAST & COUNTRY ── */
.coast-country { display: grid; grid-template-columns: 1fr 1fr; min-height: 560px; }
.cc-img { position: relative; overflow: hidden; }
.cc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 8s ease; }
.cc-img:hover img { transform: scale(1.03); }
.cc-img::after { content: ''; position: absolute; inset: 0; background: rgba(30,38,34,.3); }
.cc-content { background: var(--deep-slate); padding: 80px 72px; display: flex; flex-direction: column; justify-content: center; }
.cc-content .eyebrow { margin-bottom: 20px; }
.cc-content h2 { margin-bottom: 20px; }
.cc-content p { font-size: 14px; font-weight: 300; line-height: 1.9; color: rgba(255, 255, 255, .6); max-width: 400px; margin-bottom: 36px; }

/* ── HOST WITH US ── */
.host { background: var(--warm-white); padding: 96px 72px; }
.host-inner {
  max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 96px; align-items: center;
}
.host-img { position: relative; }
.host-img img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 3px; }
.host-tag { position: absolute; bottom: -20px; right: -20px; background: var(--deep-slate); color: var(--white); padding: 20px 28px; border-radius: 3px; }
.host-tag-num { font-family: 'Cormorant Garamond', serif; font-size: 36px; font-weight: 300; display: block; line-height: 1; color: var(--white); }
.host-tag-label { font-size: 9px; font-weight: 400; letter-spacing: .2em; text-transform: uppercase; color: var(--sage); margin-top: 5px; display: block; }
.host-text .eyebrow { margin-bottom: 14px; }
.host-text h2 { margin-bottom: 20px; }
.host-text p { font-size: 14px; font-weight: 300; line-height: 1.9; color: var(--text-mid); margin-bottom: 16px; }
.host-bullets { margin: 24px 0 36px; display: flex; flex-direction: column; gap: 12px; }
.host-bullet { display: flex; align-items: center; gap: 14px; font-size: 13px; font-weight: 300; color: var(--text-mid); }
.host-bullet-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--sage); flex-shrink: 0; }
.host-actions { display: flex; gap: 16px; flex-wrap: wrap; }
/* -- MEDIA QUERIES (Responsive Polish) -- */
@media (max-width: 1024px) {
  .intro-inner { grid-template-columns: repeat(2, 1fr); }
  .prop-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .intro-inner { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: 1fr; }
  .prop-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .coast-country { grid-template-columns: 1fr; }
  .cc-content { padding: 64px 32px; }
  .host-inner { grid-template-columns: 1fr; gap: 48px; }
  .host-tag { position: relative; bottom: 0; right: 0; display: inline-block; margin-top: 16px; }
  .prop-specs { gap: 10px; }
}
