/* ============================================================
   ST BOTOLPHS — GLOBAL STYLESHEET
   ============================================================ */

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

:root {
  --navy:        #22213d;
  --cream:       #f5f0e8;
  --warm-brown:  #8b6f4e;
  --light-brown: #a8845e;
  --white:       #ffffff;
  --off-white:   #faf8f5;
  --text-dark:   #1a1a2e;
  --text-mid:    #4a4458;
  --border:      rgba(139, 111, 78, 0.2);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--off-white);
  color: var(--text-dark);
  overflow-x: hidden;
}

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

/* ---- TYPOGRAPHY UTILITIES ---- */
.section-label {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--warm-brown);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.section-label::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--warm-brown);
  flex-shrink: 0;
}

.serif-heading {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  line-height: 1.15;
  color: var(--navy);
}
.serif-heading em {
  font-style: italic;
  color: var(--warm-brown);
}

.body-copy {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-mid);
  margin-bottom: 20px;
}

/* ---- BUTTONS ---- */
.btn-primary {
  background: var(--white);
  color: var(--navy);
  padding: 16px 36px;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
  display: inline-block;
}
.btn-primary:hover { background: var(--cream); }

.btn-primary--dark {
  background: var(--navy);
  color: var(--white);
}
.btn-primary--dark:hover { background: #2e2c52; }

.btn-ghost-dark {
  color: var(--navy);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid var(--navy);
  padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s;
  display: inline-block;
}
.btn-ghost-dark:hover {
  color: var(--warm-brown);
  border-color: var(--warm-brown);
}

/* ---- INNER CONTAINER ---- */
.inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ---- ANIMATIONS ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slowZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.0); }
}
@keyframes scrollDrop {
  from { top: -100%; }
  to   { top: 100%; }
}

/* ============================================================
   HEADER
   ============================================================ */
header {
  background: var(--navy);
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 100;
  height: 102px;
  display: flex;
  align-items: center;
}
.header-inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.logo img {
  height: 70px;
  width: auto;
  filter: brightness(0) invert(1);
}
.logo-text {
  color: var(--white);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  line-height: 1.3;
}
.logo-divider {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,0.2);
}
nav {
  display: flex;
  align-items: center;
  gap: 40px;
}
nav a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}
nav a:hover,
nav a.active { color: var(--white); }
.header-cta {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.35);
  color: var(--white) !important;
  padding: 9px 22px;
  font-size: 11px !important;
  letter-spacing: 0.2em !important;
  transition: background 0.3s ease, border-color 0.3s ease !important;
}
.header-cta:hover {
  background: rgba(255,255,255,0.1) !important;
  border-color: rgba(255,255,255,0.6) !important;
}

/* Hamburger (mobile) */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}

/* ============================================================
   PAGE HERO (inner pages — shorter than homepage)
   ============================================================ */
.page-hero {
  position: relative;
  width: 100%;
  height: 55vh;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-top: 102px;
}
.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(34,33,61,0) 30%, rgba(34,33,61,0.65) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px 60px;
}
.page-hero-eyebrow {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 12px;
}
.page-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(40px, 5vw, 72px);
  color: var(--white);
  line-height: 1.1;
}
.page-hero-title em { font-style: italic; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 80px 48px 40px;
}
.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 40px;
}
.footer-brand img {
  height: 56px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 20px;
}
.footer-brand p {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
  max-width: 280px;
}
.footer-col h4 {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-col address {
  font-style: normal;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 13px;
  line-height: 1.9;
  color: rgba(255,255,255,0.55);
}
.footer-col address a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-col address a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}
.footer-social {
  display: flex;
  gap: 20px;
}
.footer-social a {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-social a:hover { color: var(--white); }

/* ============================================================
   STRIP CTA (shared partial)
   ============================================================ */
.strip {
  background: var(--navy);
  padding: 64px 48px;
}
.strip-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.strip-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(22px, 2.5vw, 32px);
  color: rgba(255,255,255,0.9);
  font-weight: 300;
  max-width: 700px;
  line-height: 1.5;
}
.strip-cta {
  flex-shrink: 0;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.4);
  color: var(--white);
  padding: 16px 36px;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s, border-color 0.3s;
  white-space: nowrap;
}
.strip-cta:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.7);
}

/* ============================================================
   TESTIMONIALS (shared partial)
   ============================================================ */
.testimonials {
  background: var(--navy);
  padding: 100px 48px;
}
.testimonials-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.testimonials-inner .section-label { color: rgba(255,255,255,0.5); }
.testimonials-inner .section-label::before { background: rgba(255,255,255,0.3); }
.testimonials-heading {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(32px, 3.5vw, 48px);
  color: var(--white);
  margin-bottom: 64px;
  line-height: 1.15;
}
.testimonials-heading em { font-style: italic; color: rgba(255,255,255,0.6); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.testimonial-card {
  border: 1px solid rgba(255,255,255,0.1);
  padding: 40px;
}
.testimonial-stars {
  color: var(--warm-brown);
  font-size: 14px;
  letter-spacing: 3px;
  margin-bottom: 24px;
}
.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 19px;
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
  margin-bottom: 28px;
}
.testimonial-author {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.testimonial-property {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 11px;
  color: var(--warm-brown);
  margin-top: 4px;
}

/* ============================================================
   PROPERTY CARDS (shared)
   ============================================================ */
.properties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.property-card {
  background: var(--off-white);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}
.property-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(34,33,61,0.12);
}
.property-img-wrap {
  overflow: hidden;
  position: relative;
  height: 260px;
}
.property-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.property-card:hover .property-img { transform: scale(1.04); }
.property-tag {
  position: absolute;
  top: 18px; left: 18px;
  background: var(--navy);
  color: var(--white);
  font-family: 'Jost', sans-serif;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 12px;
}
.property-body { padding: 28px 30px 32px; }
.property-location {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--warm-brown);
  margin-bottom: 10px;
}
.property-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 26px;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 10px;
}
.property-desc {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 13px;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 22px;
}
.property-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.property-sleeps {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--text-mid);
}
.property-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--navy);
}
.property-price span {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 300;
  color: var(--text-mid);
  letter-spacing: 0.1em;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .properties-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .header-inner { padding: 0 24px; }
  nav { display: none; }
  nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 102px 0 0 0;
    background: var(--navy);
    padding: 48px 32px;
    gap: 28px;
    z-index: 99;
  }
  nav.open a { font-size: 18px; }
  .nav-toggle { display: flex; }
  .inner, .footer-inner { padding: 0 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .properties-grid { grid-template-columns: 1fr; }
  .strip-inner { flex-direction: column; text-align: center; align-items: center; }
  .page-hero { height: 45vh; }
  .page-hero-content { padding: 0 24px 40px; }
}

.split-image {
  height: 100%;
  object-fit: cover;
}

@media(max-width:991px){
    .property-rules {
        margin-top: 20px;
    }
}

/* ============================================================
   COOKIE CONSENT BANNER
   ============================================================ */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--navy);
  border-top: 2px solid var(--warm-brown);
  padding: 20px 48px;
}
.cookie-consent-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cookie-consent p {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  margin: 0;
}
.cookie-consent p a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cookie-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
}
.cookie-buttons .btn-ghost-dark {
  color: rgba(255,255,255,0.6);
  border-bottom-color: rgba(255,255,255,0.3);
}
.cookie-buttons .btn-ghost-dark:hover {
  color: var(--white);
  border-bottom-color: rgba(255,255,255,0.7);
}
@media (max-width: 768px) {
  .cookie-consent { padding: 20px 24px; }
  .cookie-consent-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .cookie-buttons { width: 100%; }
}

/* ============================================================
   TEXT PAGE
   ============================================================ */
.text-page-content {
  background: var(--off-white);
  padding: 80px 0 120px;
}
.text-page-inner {
  max-width: 780px;
}
.richtext h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(26px, 2.5vw, 36px);
  color: var(--navy);
  margin: 48px 0 16px;
  line-height: 1.2;
}
.richtext h3 {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm-brown);
  margin: 36px 0 12px;
}
.richtext p {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-mid);
  margin-bottom: 20px;
}
.richtext a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.richtext a:hover { color: var(--warm-brown); }
.richtext ul, .richtext ol {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-mid);
  padding-left: 24px;
  margin-bottom: 20px;
}
.richtext li { margin-bottom: 6px; }
.richtext strong { font-weight: 500; color: var(--text-dark); }
