/* Blairmore House Skye — Shared Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

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

:root {
  --taupe:   #B7AEA2;
  --charcoal:#3F4047;
  --sage:    #A5B18A;
  --cream:   #F5F2EE;
  --white:   #ffffff;
  --amber:   #C5894A;
  --text:    #2D2D2D;
  --muted:   #6B6560;
}

body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); }

/* ── TOP BAR ── */
.top-bar {
  background: var(--white);
  border-bottom: 1px solid #E8E3DC;
  padding: 14px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.top-bar .logo img { height: 60px; width: auto; object-fit: contain; }
.top-bar .contact-strip {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.top-bar .contact-strip .item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
}
.top-bar .contact-strip .item a { color: var(--charcoal); text-decoration: none; }
.top-bar .contact-strip .item a:hover { color: var(--amber); }
.top-bar .contact-strip .item a[href^="tel:"] { color: var(--amber); font-weight: 600; }

/* ── NAV ── */
.site-nav {
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
  position: sticky;
  top: 0;
  z-index: 100;
  gap: 4px;
}
.site-nav a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 18px 22px;
  display: block;
  transition: color 0.2s, background 0.2s;
}
.site-nav a:hover, .site-nav a.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}
.site-nav a.nav-book {
  margin-left: auto;
  background: var(--amber);
  color: var(--white);
  font-weight: 600;
}
.site-nav a.nav-book:hover { background: #b07840; color: var(--white); }

/* ── HERO CAROUSEL ── */
.hero {
  position: relative;
  height: 92vh;
  min-height: 560px;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
.hero-slide.active { opacity: 1; }
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(40,38,44,0.35) 0%, rgba(40,38,44,0.5) 100%);
  pointer-events: none;
}
.hero-content {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--white);
  z-index: 10;
  width: 100%;
  padding: 0 20px;
}
.hero-content .eyebrow {
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 16px;
  font-family: 'Inter', sans-serif;
}
.hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.hero-content p {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 36px;
  letter-spacing: 0.5px;
}
.hero-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.hero-dots .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  transition: background 0.3s;
  border: none;
  padding: 0;
}
.hero-dots .dot.active { background: var(--white); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--amber);
  color: var(--white);
  padding: 15px 40px;
  border-radius: 2px;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: background 0.2s, transform 0.2s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: #b07840; transform: translateY(-2px); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--charcoal);
  padding: 13px 36px;
  border: 2px solid var(--charcoal);
  border-radius: 2px;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.2s;
}
.btn-outline:hover { background: var(--charcoal); color: var(--white); }

.btn-outline-white {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 15px 40px;
  border: 2px solid rgba(255,255,255,0.7);
  border-radius: 2px;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.2s;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }

/* ── STATS BAND ── */
.stats-band {
  background: var(--charcoal);
  color: var(--white);
  padding: 28px 40px;
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 40px;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.stat-item:last-child { border-right: none; }
.stat-icon { color: var(--taupe); opacity: 0.85; flex-shrink: 0; }
.stat-text .num { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 600; line-height: 1; display: block; }
.stat-text .label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; opacity: 0.65; margin-top: 3px; display: block; }

/* ── SECTION HEADINGS ── */
.section-eyebrow {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 600;
  margin-bottom: 14px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 18px;
}
.section-body {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 640px;
}

/* ── ABOUT / INTRO ── */
.intro-section {
  padding: 90px 40px;
  background: var(--white);
}
.intro-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.intro-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 2px;
}
.intro-text .section-body + .section-body { margin-top: 18px; }
.intro-text .cta-row { margin-top: 36px; display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

/* ── PHOTO GALLERY ── */
.gallery-section {
  padding: 80px 40px;
  background: var(--cream);
}
.gallery-header {
  max-width: 1100px;
  margin: 0 auto 48px;
  text-align: center;
}
.gallery-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-grid .tall { grid-row: span 2; }
.gallery-item {
  overflow: hidden;
  border-radius: 2px;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.04); }

/* ── OUTDOOR SECTION ── */
.outdoor-section {
  padding: 80px 40px;
  background: var(--white);
}
.outdoor-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.outdoor-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.outdoor-images img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 2px;
}
.outdoor-images img:first-child {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

/* ── REVIEWS ── */
.reviews-section {
  padding: 80px 40px;
  background: var(--charcoal);
  color: var(--white);
  overflow: hidden;
}
.reviews-header {
  max-width: 1100px;
  margin: 0 auto 50px;
  text-align: center;
}
.reviews-header .section-title { color: var(--white); }
.reviews-track-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.reviews-track {
  display: flex;
  gap: 28px;
  transition: transform 0.5s ease;
}
.review-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 36px 32px;
  min-width: 340px;
  flex-shrink: 0;
}
.review-stars { color: var(--amber); font-size: 18px; margin-bottom: 16px; letter-spacing: 2px; }
.review-text {
  font-size: 15px;
  line-height: 1.75;
  opacity: 0.88;
  font-style: italic;
  margin-bottom: 24px;
}
.review-author { font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--taupe); }
.review-nav {
  max-width: 1100px;
  margin: 36px auto 0;
  display: flex;
  justify-content: center;
  gap: 12px;
}
.review-btn {
  width: 44px; height: 44px;
  border: 1px solid rgba(255,255,255,0.3);
  background: transparent;
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.review-btn:hover { background: rgba(255,255,255,0.1); }

/* ── BOOK CTA ── */
.book-section {
  position: relative;
  padding: 110px 40px;
  text-align: center;
  background: url('/images/hero-4.jpg') center/cover no-repeat;
  color: var(--white);
}
.book-section::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(40,38,44,0.65);
}
.book-content {
  position: relative;
  z-index: 2;
}
.book-content .section-eyebrow { color: var(--taupe); }
.book-content .section-title { color: var(--white); margin: 0 auto 20px; max-width: 700px; }
.book-content p { opacity: 0.85; font-size: 15px; margin-bottom: 36px; }
.book-content .btn-row { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--charcoal);
  padding: 70px 40px;
  text-align: center;
  color: var(--white);
}
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  margin-bottom: 12px;
}
.page-hero p { font-size: 15px; opacity: 0.8; }

/* ── FOOTER ── */
.site-footer {
  background: #2A2830;
  color: rgba(255,255,255,0.75);
  padding: 60px 40px 28px;
}
.footer-grid {
  max-width: 1100px;
  margin: 0 auto 50px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 50px;
}
.footer-col h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 20px;
}
.footer-col p, .footer-col a {
  font-size: 14px;
  line-height: 2;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  display: block;
}
.footer-col a:hover { color: var(--white); }
.footer-logo { height: 56px; width: auto; margin-bottom: 18px; filter: brightness(1.1); }
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 22px;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .top-bar { padding: 12px 20px; }
  .top-bar .contact-strip .hide-mobile { display: none; }
  .site-nav { gap: 0; padding: 0; justify-content: flex-start; overflow-x: auto; }
  .intro-inner, .outdoor-inner { grid-template-columns: 1fr; gap: 40px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid .tall { grid-row: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-band { gap: 0; }
  .stat-item { padding: 10px 24px; }
}
@media (max-width: 640px) {
  .hero { height: 80vh; }
  .hero-content h1 { font-size: 2.2rem; }
  .intro-section, .gallery-section, .outdoor-section, .reviews-section, .book-section { padding-left: 20px; padding-right: 20px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-band { flex-direction: column; align-items: center; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 14px 20px; width: 100%; justify-content: center; }
  .stat-item:last-child { border-bottom: none; }
  .reviews-track .review-card { min-width: 280px; }
}
