/* ============================================================
   ST BOTOLPHS — PAGE-SPECIFIC STYLES
   ============================================================ */

/* ---- HOMEPAGE HERO ---- */
.hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  margin-top: 0;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  animation: slowZoom 12s ease-out forwards;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(34,33,61,0.35) 0%,
    rgba(34,33,61,0.25) 40%,
    rgba(34,33,61,0.75) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 80px !important;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-eyebrow {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.95);
  margin-bottom: 18px;
  opacity: 0;
  animation: fadeUp 1s ease 0.4s forwards;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(52px, 7vw, 96px);
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  max-width: 700px;
  opacity: 0;
  animation: fadeUp 1s ease 0.65s forwards;
}
.hero-title em { font-style: italic; font-weight: 300; }
.hero-sub {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.95);
  margin-bottom: 44px;
  opacity: 0;
  animation: fadeUp 1s ease 0.85s forwards;
}
.hero-buttons {
  display: flex;
  gap: 18px;
  align-items: center;
  opacity: 0;
  animation: fadeUp 1s ease 1.05s forwards;
}
.btn-ghost {
  color: rgba(255,255,255,0.85);
  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 rgba(255,255,255,0.4);
  padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s;
}
.btn-ghost:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.8);
}
.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  right: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeIn 1s ease 1.5s forwards;
  z-index: 2;
}
.hero-scroll-hint span {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  writing-mode: vertical-lr;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.35);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.7);
  animation: scrollDrop 2s ease-in-out 2s infinite;
}

/* ---- HOMEPAGE WELCOME ---- */
.welcome { background: var(--off-white); padding: 120px 0; }
.welcome-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.welcome-text { max-width: 520px; }
.welcome-heading { font-family: 'Cormorant Garamond', serif; font-weight: 300; font-size: clamp(36px,4vw,56px); line-height: 1.15; color: var(--navy); margin-bottom: 32px; }
.welcome-heading em { font-style: italic; color: var(--warm-brown); }
.welcome-body-italic {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 19px;
  color: var(--warm-brown);
  line-height: 1.6;
  margin-bottom: 32px;
  border-left: 2px solid var(--border);
  padding-left: 24px;
}
.welcome-image-wrap { position: relative; }
.welcome-img-main { width: 100%; height: 560px; object-fit: cover; display: block; }
.welcome-img-inset {
  position: absolute;
  bottom: -40px; left: -40px;
  width: 320px; height: 260px;
  object-fit: cover;
  border: 6px solid var(--off-white);
}
.welcome-badge {
  position: absolute;
  top: 32px; right: -20px;
  background: var(--navy);
  color: var(--white);
  width: 100px; height: 100px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.welcome-badge .badge-num { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 300; line-height: 1; }
.welcome-badge .badge-text { font-family: 'Jost', sans-serif; font-size: 8px; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-top: 4px; }

/* ---- HOMEPAGE PROPERTIES SECTION ---- */
.properties { background: var(--cream); padding: 120px 0; }
.properties-inner { }
.properties-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 64px; }
.properties-heading { font-family: 'Cormorant Garamond', serif; font-weight: 300; font-size: clamp(32px,3.5vw,50px); color: var(--navy); line-height: 1.15; }
.properties-heading em { font-style: italic; color: var(--warm-brown); }
.view-all {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-mid);
  text-decoration: none;
  border-bottom: 1px solid rgba(74,68,88,0.3);
  padding-bottom: 2px;
  white-space: nowrap;
  transition: color 0.3s;
}
.view-all:hover { color: var(--navy); }
.property-view-link {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--warm-brown);
}
/* Featured first card on homepage */
.properties-grid--featured .property-card:nth-child(1) { grid-column: span 2; }
.properties-grid--featured .property-card:nth-child(1) .property-img-wrap { height: 360px; }

/* ---- HOMEPAGE SPLIT SECTION (Pembrokeshire) ---- */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.split-image img { width: 100%; height: 100%; object-fit: cover; min-height: 520px; display: block; }
.split-content {
  background: var(--off-white);
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ---- HOMEPAGE HISTORY STRIP ---- */
.history-strip { background: var(--cream); padding: 100px 0; }
.history-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.history-strip-image img { width: 100%; height: 440px; object-fit: cover; }

/* ---- LISTINGS PAGE ---- */
.listing-intro { background: var(--off-white); padding: 80px 0 0; }
.listing-intro-inner { padding-bottom: 60px; border-bottom: 1px solid var(--border); }
.listing-note {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--warm-brown);
  margin-top: 8px;
}
.listings { background: var(--off-white); padding: 60px 0 100px; }
.properties-grid--full { grid-template-columns: repeat(3, 1fr); }
.listing-group-note {
  margin-top: 48px;
  padding: 24px 32px;
  background: var(--cream);
  border-left: 3px solid var(--warm-brown);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
}
.listing-group-note a { color: var(--navy); }

/* ---- PROPERTY PAGE ---- */
.property-hero {
  position: relative;
  width: 100%;
  height: 65vh;
  min-height: 440px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-top: 102px;
}
.property-hero img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.property-hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 60px !important;
}
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  padding-top: 4px;
}
.gallery-strip-item img { width: 100%; height: 220px; object-fit: cover; display: block; }
.property-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  padding-top: 80px !important;
  padding-bottom: 100px !important;
  align-items: start;
}
.property-intro { margin-bottom: 48px; }
.property-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 20px;
  color: var(--warm-brown);
  margin-top: 48px;
  line-height: 1.5;
}
.property-quick-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 12px;
}
.property-quick-facts span {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: var(--text-mid);
  letter-spacing: 0.05em;
  background: var(--cream);
  padding: 8px 16px;
}
.property-description { margin-bottom: 48px; }
.amenities-heading {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 20px;
}
.amenities-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.amenities-list li {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.5;
}
.property-location-section { margin-top: 48px; }
.map-placeholder {
  background: var(--cream);
  height: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  color: var(--text-mid);
  text-align: center;
}
.map-placeholder--large { height: 320px; }

/* Booking sidebar */
.property-sidebar { position: sticky; top: 120px; }
.booking-widget {
  background: var(--cream);
  padding: 36px;
  margin-bottom: 32px;
}
.booking-widget-title {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 20px;
}
.booking-widget-placeholder {
  background: var(--white);
  padding: 24px;
  text-align: center;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: var(--text-mid);
  margin-bottom: 24px;
}
.booking-widget-info {
  list-style: none;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}
.booking-widget-info li {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: var(--text-mid);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}
.also-look { }
.also-look-card {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: opacity 0.3s;
}
.also-look-card:hover { opacity: 0.7; }
.also-look-card img { width: 72px; height: 60px; object-fit: cover; flex-shrink: 0; }
.also-look-name { font-family: 'Cormorant Garamond', serif; font-size: 17px; color: var(--navy); }
.also-look-meta { font-family: 'Jost', sans-serif; font-weight: 300; font-size: 11px; color: var(--text-mid); margin-top: 3px; }

/* ---- PEMBROKESHIRE PAGE ---- */
.pembs-intro { background: var(--off-white); padding: 100px 0; }
.pembs-intro-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.pembs-intro-image img { width: 100%; height: 460px; object-fit: cover; }
.destinations { background: var(--cream); padding: 80px 0 100px; }
.destinations-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.destination-card { background: var(--off-white); overflow: hidden; }
.destination-img-wrap img { width: 100%; height: 220px; object-fit: cover; }
.destination-body { padding: 24px 26px 28px; }
.destination-name { font-family: 'Cormorant Garamond', serif; font-size: 24px; color: var(--navy); margin-bottom: 4px; }
.destination-dist { font-family: 'Jost', sans-serif; font-weight: 300; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--warm-brown); margin-bottom: 12px; }
.destination-desc { font-family: 'Jost', sans-serif; font-weight: 300; font-size: 13px; line-height: 1.75; color: var(--text-mid); }

/* ---- EXPERIENCES PAGE ---- */
.exp-intro { }
.exp-category {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 4px;
}
.exp-category--reverse .exp-category-image { order: 2; }
.exp-category--reverse .exp-category-content { order: 1; }
.exp-category-image img { width: 100%; height: 100%; min-height: 440px; object-fit: cover; display: block; }
.exp-category-content {
  background: var(--off-white);
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.exp-category--reverse .exp-category-content { background: var(--cream); }

/* ---- ABOUT PAGE ---- */
.about-intro { background: var(--off-white); padding: 100px 0; }
.about-intro-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-intro-image img { width: 100%; height: 460px; object-fit: cover; }
.history { background: var(--cream); padding: 100px 0; }
.timeline { max-width: 900px; }
.timeline-item {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 48px;
  padding-bottom: 60px;
  margin-bottom: 60px;
  border-bottom: 1px solid var(--border);
}
.timeline-item:last-child { border-bottom: none; margin-bottom: 0; }
.timeline-date { padding-top: 6px; }
.timeline-year {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 300;
  color: var(--warm-brown);
  line-height: 1;
  margin-bottom: 6px;
}
.timeline-label {
  display: block;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-mid);
}
.timeline-heading {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.3;
}

/* ---- CONTACT PAGE ---- */
.contact-section { background: var(--off-white); padding: 80px 0 100px; }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: start;
}
.form-success {
  background: #e8f5e9;
  border-left: 3px solid #4caf50;
  padding: 16px 20px;
  margin-bottom: 28px;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  color: #2e7d32;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 8px;
}
.form-optional { color: rgba(74,68,88,0.5); font-size: 10px; text-transform: none; letter-spacing: 0; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--white);
  border: 1px solid rgba(139,111,78,0.3);
  padding: 14px 16px;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: var(--text-dark);
  appearance: none;
  outline: none;
  transition: border-color 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--warm-brown); }
.form-group textarea { resize: vertical; }
.form-submit { cursor: pointer; border: none; margin-top: 8px; width: 100%; font-size: 11px; padding: 18px 36px; }
.contact-info { padding-top: 8px; }
.contact-info-block { margin-bottom: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--border); }
.contact-info-block:last-child { border-bottom: none; }
.contact-address {
  font-style: normal;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-mid);
}
.contact-address a { color: var(--text-mid); text-decoration: none; transition: color 0.3s; }
.contact-address a:hover { color: var(--navy); }
.contact-subhead {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 16px;
}
.contact-checkin-list {
  list-style: none;
}
.contact-checkin-list li {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: var(--text-mid);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

/* ============================================================
   RESPONSIVE - PAGE SPECIFIC
   ============================================================ */
@media (max-width: 1100px) {
  .property-layout { grid-template-columns: 1fr; }
  .property-sidebar { position: static; }
  .gallery-strip { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1024px) {
  .split-section { grid-template-columns: 1fr; }
  .split-image img { min-height: 320px; }
  .welcome-inner { grid-template-columns: 1fr; gap: 60px; }
  .welcome-text { max-width: 100%; }
  .history-strip-inner { grid-template-columns: 1fr; }
  .pembs-intro-inner { grid-template-columns: 1fr; }
  .about-intro-inner { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .destinations-grid { grid-template-columns: repeat(2, 1fr); }
  .exp-category { grid-template-columns: 1fr; }
  .exp-category--reverse .exp-category-image { order: 0; }
  .exp-category--reverse .exp-category-content { order: 0; }
  .exp-category-content { padding: 48px 40px; }
  .timeline-item { grid-template-columns: 120px 1fr; gap: 24px; }
  .properties-grid--featured .property-card:nth-child(1) { grid-column: auto; }
  .properties-grid--featured .property-card:nth-child(1) .property-img-wrap { height: 260px; }
}
@media (max-width: 768px) {
  .hero-content { padding: 0 24px 60px; }
  .hero-scroll-hint { right: 24px; }
  .welcome { padding: 80px 0; }
  .welcome-img-inset { display: none; }
  .welcome-badge { right: 16px; }
  .properties-inner { padding: 0 24px; }
  .properties-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .timeline-item { grid-template-columns: 1fr; gap: 8px; }
  .form-row { grid-template-columns: 1fr; }
  .amenities-list { grid-template-columns: 1fr; }
  .gallery-strip { grid-template-columns: repeat(2, 1fr); }
  .split-content { padding: 48px 24px; }
  .exp-intro { padding: 60px 24px; }
  .destinations-grid { grid-template-columns: repeat(1, 1fr); }
}
