/* === LOCATION LANDING PAGE STYLES === */

body { overflow-x: hidden; }

/* HERO */
.hero { min-height: 60vh; display: flex; align-items: center; padding: 140px 6% 80px; background: linear-gradient(135deg, var(--warm-white) 0%, var(--cream) 100%); }
.hero-inner { max-width: 700px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(122,158,126,0.15); border: 1px solid rgba(122,158,126,0.35); color: var(--sage-dark); padding: 7px 16px; border-radius: 50px; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 24px; }
.hero-badge .dot { width: 7px; height: 7px; background: var(--sage); border-radius: 50%; }
h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 4.5vw, 3.5rem); font-weight: 700; line-height: 1.15; color: var(--text); margin-bottom: 20px; }
h1 em { font-style: italic; color: var(--terracotta); }
.hero-sub { font-size: 1.05rem; line-height: 1.75; color: var(--text-light); max-width: 580px; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* TRUST BAR */
.trust-bar { background: var(--sage-dark); color: #fff; padding: 28px 6%; display: flex; gap: 40px; justify-content: center; flex-wrap: wrap; }
.trust-stat { text-align: center; }
.trust-stat .num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; line-height: 1; }
.trust-stat .lbl { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.8; margin-top: 4px; }

/* SECTIONS */
section { padding: 80px 6%; }
.section-title { font-size: clamp(1.8rem, 3vw, 2.5rem); }
.section-sub { font-size: 1rem; }

/* SERVICES */
#services { background: var(--warm-white); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-top: 44px; }
.service-item { background: #fff; border-radius: 18px; padding: 28px; border: 1px solid rgba(122,158,126,0.12); box-shadow: 0 2px 12px rgba(0,0,0,0.04); }
.service-item .icon { font-size: 2rem; margin-bottom: 12px; display: block; }
.service-item h3 { font-weight: 700; font-size: 1rem; margin-bottom: 8px; color: var(--text); }
.service-item p { font-size: 0.88rem; color: var(--text-light); line-height: 1.65; }
.service-list { list-style: none; margin-top: 10px; display: flex; flex-direction: column; gap: 6px; }
.service-list li { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--text-light); }
.service-list li::before { content: '✓'; width: 20px; height: 20px; border-radius: 50%; background: rgba(122,158,126,0.18); color: var(--sage-dark); display: flex; align-items: center; justify-content: center; font-size: 0.72rem; font-weight: 800; flex-shrink: 0; }

/* BOOKING */
#booking { background: var(--cream); }
.booking-wrap { gap: 64px; }

/* AREA */
#area { background: var(--warm-white); text-align: center; }
#area .section-sub { margin: 0 auto 12px; }
.area-towns { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 32px; }
.area-town { background: #fff; border: 1px solid rgba(122,158,126,0.2); border-radius: 50px; padding: 9px 22px; font-size: 0.9rem; font-weight: 600; color: var(--text-light); text-decoration: none; transition: all 0.2s; }
.area-town:hover { background: var(--sage-dark); color: #fff; border-color: var(--sage-dark); }

/* FOOTER */
footer { padding: 40px 6%; }
.footer-logo { font-size: 1.3rem; margin-bottom: 6px; }
.footer-links { gap: 24px; margin-bottom: 20px; }

/* RESPONSIVE */
@media (max-width: 720px) {
  .hero { padding: 110px 5% 60px; }
  section { padding: 56px 5%; }
  .trust-bar { gap: 24px; padding: 24px 5%; }
}
