*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --yellow: #006CFF;
  --yellow-dark: #0052D4;
  --green: #2e7d5e;
  --green-light: #3a9970;
  --text: #1a1a1a;
  --text-muted: #555;
  --grey-bg: #f4f4f4;
  --white: #fff;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }

/* ── BUTTONS ── */
.btn-yellow {
  display: inline-block;
  background: var(--yellow);
  color: var(--white);
  font-weight: 700;
  padding: 14px 28px;
  border: 2px solid var(--yellow);
  cursor: pointer;
  transition: background 0.2s;
}
.btn-yellow:hover { background: var(--yellow-dark); border-color: var(--yellow-dark); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--text);
  font-weight: 600;
  padding: 14px 28px;
  border: 2px solid var(--text);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: var(--text); color: var(--white); }

/* ── NAV ── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid #e5e5e5;
}

nav {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0 24px;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: 40px;
  flex-shrink: 0;
}

.logo img {
  max-height: 65px;
  width: auto;
  display: block;
}

.logo-icon {
  width: 48px;
  height: 48px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
}

.logo-text { line-height: 1.1; }
.logo-text .brand { font-size: 22px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--text); }
.logo-text .sub { font-size: 10px; letter-spacing: 4px; color: var(--text-muted); text-transform: uppercase; }

.nav-links {
  display: flex;
  list-style: none;
  gap: 4px;
  flex: 1;
}

.nav-links a {
  padding: 8px 14px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  display: block;
  position: relative;
  text-decoration: none !important;
}

.nav-links a.active::after,
.nav-links a:hover::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--green);
}

.nav-links .has-dropdown { position: relative; }
.nav-links .has-dropdown > a::before {
  content: ' ▾';
  font-size: 11px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.phone { font-size: 14px; color: var(--text-muted); }

/* ── HERO ── */
.hero {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/balblair-cottages.jpg') center/cover no-repeat;
  filter: brightness(0.55);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
  color: var(--white);
  text-align: center;
}

.hero-content h1 {
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 700;
  max-width: 560px;
  line-height: 1.15;
  margin: 0 auto 20px;
}

.hero-content p {
  max-width: 480px;
  font-size: 17px;
  margin: 0 auto 32px;
  opacity: 0.92;
  text-align: left;
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  font-size: 15px;
  color: var(--white);
}

.stars { color: #FFD700; font-size: 20px; letter-spacing: 2px; }

/* ── COTTAGES SECTION ── */
.cottages {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: center;
}

.cottages-intro h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.cottages-intro p {
  color: var(--text-muted);
  margin-bottom: 32px;
}

/* ── COTTAGE ROWS ── */
.cottages-section {
  display: flex;
  flex-direction: column;
}

.cottage-strip {
  width: 100%;
}

.cottage-strip:nth-child(odd)  { background: #f4f4f4; }
.cottage-strip:nth-child(even) { background: #ffffff; }

.cottage-header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 48px 0;
  box-sizing: border-box;
}

.cottage-header h2 {
  font-size: clamp(26px, 3.2vw, 42px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 12px;
}

.cottage-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: center;
  padding: 24px 48px 56px;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.cottage-row-text h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text);
  margin: 0;
}

.cottage-row-text h2 a {
  color: inherit;
  text-decoration: none;
}

.cottage-row-text h2 a:hover { color: var(--green); }

.cottage-row-desc {
  font-size: 12pt;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cottage-row-desc p {
  margin: 0;
}

/* ── AMENITIES ICONS ── */
.cottage-bento-wrapper {
  position: relative;
}

.cottage-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 10px;
  margin-bottom: 16px;
  font-size: 12px;
}

.amenity-icon {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--text);
  position: relative;
}

#amenity-tip {
  position: fixed;
  background: #1a1a1a;
  color: #fff;
  font-size: 12px;
  padding: 4px 9px;
  border-radius: 4px;
  pointer-events: none;
  white-space: nowrap;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.08s;
}

.amenity-icon i {
  font-size: 22px;
  color: #b7b7b7;
  flex-shrink: 0;
  margin: 3px;
  transition: color 0.1s, transform 0.1s;
}

.amenity-icon:hover i {
  color: var(--green);
  transform: scale(1.2);
}

.amenity-icon span {
  font-size: 11pt;
  font-weight: 500;
}

/* ── DISTANCE BADGE ── */
.distance-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
  color: var(--white);
  padding: 10px 16px;
  border-radius: 0 16px 0 0;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(46, 125, 94, 0.35);
  z-index: 10;
}

.distance-badge i {
  font-size: 16px;
  color: var(--white);
}

@keyframes car-wobble {
  0%   { transform: translateY(0) rotate(0deg); }
  10%  { transform: translateY(-2px) rotate(-4deg); }
  20%  { transform: translateY(1px) rotate(3deg); }
  30%  { transform: translateY(-3px) rotate(-5deg); }
  40%  { transform: translateY(1px) rotate(4deg); }
  50%  { transform: translateY(-2px) rotate(-3deg); }
  60%  { transform: translateY(1px) rotate(3deg); }
  70%  { transform: translateY(-1px) rotate(-2deg); }
  80%  { transform: translateY(1px) rotate(1deg); }
  90%  { transform: translateY(-1px) rotate(-1deg); }
  100% { transform: translateY(0) rotate(0deg); }
}

.distance-badge.wobble i {
  animation: car-wobble 1s ease-in-out;
  transform-origin: bottom center;
}

/* ── BENTO PHOTO GRID ── */
.cottage-bento {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: 1fr;
  gap: 4px;
  height: 320px;
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  align-items: stretch;
}

.bento-main {
  grid-row: 1;
  overflow: hidden;
  position: relative;
  height: 100%;
}

.bento-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
  height: 100%;
}

.bento-small {
  overflow: hidden;
  height: 100%;
}

.bento-wide {
  grid-column: 1 / span 2;
  overflow: hidden;
  height: 100%;
}

.cottage-bento img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.bento-main:hover img,
.bento-small:hover img { transform: scale(1.04); }

/* ── REVIEWS ── */
.reviews {
  background: var(--grey-bg);
  padding: 80px 24px;
}

.reviews-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
}


.reviews-carousel-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.reviews-carousel-inner {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.reviews-carousel {
  display: flex;
  transition: transform 0.4s ease;
  will-change: transform;
}

.reviews-carousel .review-card {
  flex: 0 0 100%;
  min-width: 100%;
}

.review-stars {
  color: var(--green);
  font-size: 18px;
  margin-bottom: 10px;
}

.carousel-arrow {
  background: none;
  border: none;
  color: var(--dark);
  font-size: 28px;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
  line-height: 1;
  transition: color 0.2s;
}

.carousel-arrow:hover { color: var(--green); }

.carousel-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}

.carousel-dots {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ccc;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}

.carousel-dot.active { background: var(--green); }

.review-cottage-tag-inline {
  color: var(--green);
  font-weight: 600;
  text-decoration: none;
}

.review-cottage-tag-inline:hover { text-decoration: underline; }

.review-cottage-link { margin-top: 16px; }

.review-cottage-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  text-decoration: none;
  border: 1px solid var(--green);
  padding: 4px 10px;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}

.review-cottage-tag:hover {
  background: var(--green);
  color: #fff;
}

.reviews-summary h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.tripadvisor-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.ta-logo {
  background: #34e0a1;
  color: var(--white);
  font-weight: 800;
  font-size: 13px;
  padding: 4px 8px;
  border-radius: 4px;
  letter-spacing: 1px;
}

.stars-green { color: var(--green); font-size: 22px; }

.reviews-subhead { font-size: 15px; color: var(--text-muted); margin: -8px 0 16px; }
.review-count { font-size: 13px; color: var(--text-muted); margin-bottom: 24px; }

.review-card {
  background: var(--white);
  padding: 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.review-card h3 {
  color: var(--green);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 14px;
  line-height: 1.3;
}

.review-card p { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; line-height: 1.7; }

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: #ccc;
  flex-shrink: 0;
}

.reviewer-avatar-placeholder {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

.reviewer span { font-weight: 600; font-size: 14px; }

/* ── ACTIVITIES ── */
.activities {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.activities-content h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.activities-content > p {
  color: var(--text-muted);
  margin-bottom: 40px;
}

.accordion-item { border-bottom: 1px solid #ddd; }

.accordion-trigger {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 17px;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  color: var(--text);
}

.accordion-icon {
  font-size: 22px;
  color: var(--green);
  font-weight: 300;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.25s;
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.accordion-body p {
  padding-bottom: 20px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
}

.accordion-item.open .accordion-body { max-height: 400px; }
.accordion-item.open .accordion-icon { transform: rotate(45deg); }

.activities-image {
  position: sticky;
  top: 90px;
}

.activities-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

.activities-figure {
  margin: 0;
  position: relative;
}

.activities-figure img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

.activities-figure figcaption {
  position: absolute;
  bottom: 16px;
  right: 0;
  padding: 8px 18px 8px 16px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-right: none;
  border-radius: 999px 0 0 999px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

/* ── CONTACT / MAP ── */
.contact-section {
  position: relative;
}

.contact-map {
  width: 100%;
  height: 560px;
  border: 0;
  display: block;
}

.contact-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--white);
  padding: 40px 36px;
  width: 340px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.18);
}

.contact-card h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 28px;
  line-height: 1.2;
}

.contact-detail { margin-bottom: 18px; }
.contact-detail .label { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.contact-detail .value { font-weight: 600; font-size: 15px; }

.contact-buttons {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.contact-buttons .btn-yellow,
.contact-buttons .btn-outline {
  padding: 12px 20px;
  font-size: 14px;
}

/* ── LEAFLET WRAPPER + PANEL ── */
.leaflet-wrapper {
  display: flex;
  height: 560px;
}

#leaflet-map {
  flex: 1;
  min-height: 380px;
}

.map-panel {
  width: 240px;
  flex-shrink: 0;
  background: #fff;
  overflow-y: auto;
  padding: 16px;
  border-right: 1px solid #e5e5e5;
  font-size: 13px;
}

.map-panel h3 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin: 0 0 8px;
}

.map-panel h3 + h3,
.map-panel ul + h3 {
  margin-top: 18px;
}

.map-panel ul {
  list-style: none;
  margin: 0 0 8px;
  padding: 0;
}

.panel-cottage,
.panel-attraction {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 6px;
  border-radius: 5px;
  cursor: pointer;
  line-height: 1.3;
  transition: background 0.15s;
}

.panel-cottage:hover,
.panel-attraction:hover {
  background: #f4f4f4;
}

.panel-cottage i { color: #e03e3e; flex-shrink: 0; width: 14px; text-align: center; }
.panel-attraction i { flex-shrink: 0; width: 14px; text-align: center; }

.panel-cottage .panel-name { font-weight: 600; color: var(--dark); flex: 1; }
.panel-cottage span { color: var(--text-muted); font-size: 11px; white-space: nowrap; }

@media (max-width: 640px) {
  .leaflet-wrapper { flex-direction: column; height: auto; }
  #leaflet-map { height: 380px; width: 100%; }

  /* panel goes below map as a compact horizontal-scroll strip */
  .map-panel {
    width: 100%;
    height: auto;
    border-right: none;
    border-top: 1px solid #e5e5e5;
    padding: 12px;
  }

  .map-panel h3 { display: inline; margin-right: 6px; }

  /* hide attractions on mobile to keep it tight */
  #attraction-list,
  #attraction-list + h3,
  .map-panel h3:last-of-type { display: none; }

  #cottage-list {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 8px;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
  }

  .panel-cottage {
    flex-direction: column;
    align-items: flex-start;
    background: #f8f8f8;
    border-radius: 6px;
    padding: 8px 10px;
    min-width: 130px;
    flex-shrink: 0;
    gap: 4px;
  }

  .panel-cottage span { font-size: 11px; }
}

/* ── MAP POPUP ── */
.map-popup { display: flex; flex-direction: column; width: 220px; }
.mp-thumb { width: 100%; height: 130px; object-fit: cover; border-radius: 4px 4px 0 0; display: block; }
.mp-body { padding: 10px 4px 4px; }
.mp-body strong { display: block; font-size: 14px; font-weight: 700; margin-bottom: 8px; line-height: 1.3; }
.mp-amenities { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 10px; }
.mp-icon { font-size: 12px; color: #555; display: flex; align-items: center; gap: 4px; }
.mp-icon i { color: var(--yellow); }
.leaflet-popup-content .mp-btn,
.leaflet-popup-content .mp-btn:link,
.leaflet-popup-content .mp-btn:visited { display: block; background: var(--yellow); color: #fff !important; font-weight: 700; font-size: 13px; padding: 9px 12px; border-radius: 4px; text-decoration: none; text-align: center; }
.leaflet-popup-content .mp-btn:hover { opacity: 0.85; }

/* ── ATTRACTION POPUP ── */
.leaflet-popup-content:has(.attr-popup) { margin: 0 !important; padding: 0; }
.attr-popup { width: 220px; font-family: inherit; overflow: hidden; border-radius: 4px; }
.attr-popup-header { display: flex; align-items: center; gap: 8px; padding: 10px 12px; border-radius: 4px 4px 0 0; color: #fff; }
.attr-popup-header i { font-size: 16px; flex-shrink: 0; }
.attr-popup-type { font-size: 10px; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 700; opacity: 0.9; }
.attr-popup-body { padding: 10px 12px 12px; }
.attr-popup-name { display: block; font-size: 14px; font-weight: 700; color: #1a1a1a; margin-bottom: 6px; line-height: 1.3; }
.attr-popup-desc { margin: 0 0 8px; font-size: 12px; color: #555; line-height: 1.5; }
.attr-popup-meta { font-size: 11px; color: #777; display: flex; align-items: center; gap: 5px; margin-top: 4px; }
.attr-popup-meta i { width: 12px; text-align: center; flex-shrink: 0; }

/* ── ATTRACTION PANEL ITEMS ── */
.panel-attraction { gap: 7px; }
.panel-attr-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; display: inline-block; }
.panel-attr-name { flex: 1; color: var(--dark); font-size: 13px; }

/* ── LEAFLET LABEL ── */
.balblair-label {
  background: #e03e3e;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-weight: 700;
  font-size: 13px;
  padding: 3px 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,.3);
}
.balblair-label::before { display: none; }

/* ── CONTACT PAGE ── */
.contact-hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: #fff;
  padding: 80px 24px 60px;
  text-align: center;
}
.contact-hero h1 { font-size: clamp(32px, 5vw, 52px); font-weight: 800; margin-bottom: 16px; }
.contact-hero p  { font-size: 18px; color: rgba(255,255,255,0.75); max-width: 520px; margin: 0 auto; }

.contact-body { padding: 60px 24px; max-width: 1100px; margin: 0 auto; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}

.contact-form-wrap h2 { font-size: 22px; font-weight: 700; margin-bottom: 28px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group { display: flex; flex-direction: column; margin-bottom: 20px; }
.form-group label { font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--dark); }
.form-group label span { color: #e03e3e; }
.form-group label em { font-weight: 400; color: var(--text-muted); font-style: normal; }
.form-group input,
.form-group textarea {
  border: 1.5px solid #ddd;
  border-radius: 6px;
  padding: 11px 14px;
  font-size: 14px;
  font-family: inherit;
  color: var(--dark);
  transition: border-color 0.15s;
  background: #fff;
}
.form-group input:focus,
.form-group textarea:focus { outline: none; border-color: var(--yellow); }
.form-group textarea { resize: vertical; }

.contact-submit { width: 100%; justify-content: center; display: flex; align-items: center; gap: 10px; font-size: 15px; padding: 14px; }

.form-success {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #f0fff4;
  border: 1.5px solid #27ae60;
  border-radius: 8px;
  padding: 20px 24px;
}
.form-success i { color: #27ae60; font-size: 24px; margin-top: 2px; }
.form-success strong { display: block; font-size: 16px; margin-bottom: 4px; }
.form-success p { margin: 0; color: #555; font-size: 14px; }

.form-errors {
  background: #fff5f5;
  border: 1.5px solid #e03e3e;
  border-radius: 6px;
  padding: 14px 20px;
  margin-bottom: 24px;
  list-style: none;
  font-size: 14px;
  color: #c0392b;
}
.form-errors li::before { content: '• '; }

.contact-details { display: flex; flex-direction: column; gap: 16px; }

.contact-detail-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #f8f9fa;
  border-radius: 10px;
  padding: 18px 20px;
}
.cd-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cd-icon i { color: #fff; font-size: 16px; }
.cd-label { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 4px; }
.contact-detail-card a,
.contact-detail-card span { font-size: 14px; font-weight: 600; color: var(--dark); text-decoration: none; line-height: 1.5; }
.contact-detail-card a:hover { text-decoration: underline; }

.contact-map-small { border-radius: 10px; overflow: hidden; height: 200px; margin-top: 8px; }
.contact-map-small iframe { width: 100%; height: 100%; border: 0; display: block; }

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-details { order: -1; }
}

/* ── FOOTER ── */
footer {
  background: #1a1a1a;
  color: #ccc;
  text-align: center;
  padding: 28px 24px;
  font-size: 13px;
}

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: transform 0.2s, opacity 0.2s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid #e5e5e5;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  z-index: 99;
  padding: 16px 0 24px;
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; }
.mobile-menu ul li a {
  display: block;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid #f0f0f0;
  color: var(--text);
}
.mobile-menu .mobile-cta {
  padding: 20px 24px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mobile-menu .mobile-cta a { display: block; text-align: center; }
.mobile-menu .mobile-phone {
  text-align: center;
  font-size: 15px;
  color: var(--text-muted);
  padding: 8px 24px 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .cottages { grid-template-columns: 1fr; padding: 48px 20px; gap: 32px; }
  .reviews-inner { grid-template-columns: 1fr; gap: 24px; }
  .activities { grid-template-columns: 1fr; padding: 48px 20px; }
  .activities-image { display: none; }
  .nav-links { display: none; }
  .phone { display: none; }
  .nav-right .btn-yellow { display: none; }
  .hamburger { display: flex; }
  .contact-card { width: 90%; max-width: 340px; }
  .reviews { padding: 48px 20px; }
  .logo img { max-height: 52px; }
}

/* ── MOBILE STICKY BOOK BAR ── */
.mobile-book-bar {
  display: none;
}
@media (max-width: 600px) {
  .cottage-btn-desktop { display: none; }
  .mobile-book-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: #fff;
    padding: 4px;
    align-items: center;
    justify-content: stretch;
    border-top: 1px solid #e5e5e5;
    transform: translateY(100%);
    transition: transform 0.25s ease;
    pointer-events: none;
  }
  .mobile-book-bar.visible {
    transform: translateY(0);
    pointer-events: auto;
  }
  .mobile-book-bar a {
    display: block;
    width: 100%;
    background: var(--yellow);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 20px;
    text-align: center;
    text-decoration: none;
  }
}

@media (max-width: 600px) {
  .cottage-header { padding: 20px 16px 0; }
  .cottage-header h2 { font-size: 22px; margin-bottom: 10px; }
  .cottage-amenities { justify-content: flex-start; }
  .cottage-row { display: flex; flex-direction: column; gap: 0; padding: 0 0 32px; }
  .cottage-row-text { display: contents; }
  .cottage-bento-wrapper { order: 1; }
  .cottage-bento-wrapper .distance-badge {
    position: static;
    border-radius: 0;
    width: 100%;
    box-sizing: border-box;
    box-shadow: none;
    justify-content: center;
  }
  .cottage-row-desc { order: 2; padding: 16px 16px 0; }
  .cottage-btn-desktop { order: 3; }
  .cottage-bento { height: 260px; border-radius: 0; }
  .hero { height: 440px; }
  .hero-content { padding: 0 20px; }
  .contact-section { height: auto; display: flex; flex-direction: column; }
  .contact-map { height: 300px; position: static; }
  .contact-card {
    position: static;
    transform: none;
    width: 100%;
    max-width: 100%;
    box-shadow: none;
    border-top: 1px solid #e5e5e5;
    padding: 32px 20px;
  }
}

/* ── FILTER BAR ── */
.filter-bar-section {
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
  position: sticky;
  top: 64px;
  z-index: 90;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  scroll-margin-top: 64px;
}

.filter-bar {
  max-width: 1000px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.filter-divider {
  display: block;
  width: 1px;
  height: 28px;
  background: #ddd;
  flex-shrink: 0;
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 24px;
}

.filter-btn.filter-reset {
  padding: 6px 20px;
}

.filter-group label {
  font-size: 11pt;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}

.filter-group select {
  font-family: inherit;
  font-size: 11pt;
  font-weight: 600;
  color: var(--text);
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  appearance: auto;
}

.filter-group select:focus {
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
  border-radius: 3px;
}

.filter-btn {
  font-family: inherit;
  font-size: 11pt;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 6px;
  border: 2px solid #ddd;
  background: var(--grey-bg);
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.filter-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 24px;
  cursor: pointer;
  user-select: none;
}

.filter-toggle input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.filter-toggle-track {
  position: relative;
  width: 44px;
  height: 24px;
  border-radius: 12px;
  background: #ccc;
  transition: background 0.2s;
  flex-shrink: 0;
}

.filter-toggle-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.25);
  transition: transform 0.2s;
}

.filter-toggle input:checked ~ .filter-toggle-track {
  background: var(--green);
}

.filter-toggle input:checked ~ .filter-toggle-track .filter-toggle-thumb {
  transform: translateX(20px);
}

.filter-toggle input:focus-visible ~ .filter-toggle-track {
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
}

.filter-toggle-label {
  font-size: 11pt;
  font-weight: 600;
  color: var(--text);
}

.filter-btn.filter-reset {
  margin-left: auto;
  color: var(--text-muted);
  border-color: transparent;
  background: transparent;
}

.filter-btn.filter-reset:hover {
  color: var(--text);
  text-decoration: underline;
}

.filter-no-results {
  text-align: center;
  padding: 48px 24px;
  color: var(--text-muted);
  font-size: 16px;
}

@media (max-width: 600px) {
  .filter-bar { padding: 8px 4px; }
  .filter-group { padding: 4px 12px; }
  .filter-toggle { padding: 4px 12px; }
  .filter-divider { height: 22px; }
  .filter-btn.filter-reset { padding: 4px 12px; }
}

/* ── AMENITIES ── */
.amenities-section {
  background: var(--grey-bg);
  padding: 72px 24px;
}

.amenities-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.amenities-inner h2 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  margin-bottom: 10px;
  text-align: center;
}

.amenities-intro {
  text-align: center;
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 40px;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.amenity-block {
  background: #fff;
  border-radius: 10px;
  padding: 28px 24px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.amenity-block i {
  font-size: 24px;
  color: var(--green);
  margin-bottom: 14px;
  display: block;
}

.amenity-block h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}

.amenity-block p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}


@media (max-width: 900px) {
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .amenities-grid { grid-template-columns: 1fr; }
  .amenities-section { padding: 48px 16px; }
}
