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

/* === Brand Palette (from brochure) === */
:root {
  --coral-red: #D63031;
  --warm-red: #E74C3C;
  --salmon: #F0867A;
  --peach: #F8C4B4;
  --light-peach: #FDE8E0;
  --cream: #FFF5EE;
  --white-pink: #FFF9F7;
  --gold: #D4A853;
  --gold-soft: #E8CF8A;
  --text-dark: #222222;
  --text-body: #3a3a3a;
  --text-mid: #666666;
  --text-light: #888888;
  --white: #ffffff;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --max-width: 1140px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.08);
  --radius: 10px;
}

/* === Base === */
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--coral-red); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--warm-red); }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; }

/* === Header === */
.site-header {
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.95);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.logo {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.01em;
}
.main-nav { display: flex; align-items: center; gap: 2rem; }
.main-nav a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-mid);
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.main-nav a:hover { color: var(--text-dark); }
.btn-book {
  background: var(--coral-red);
  color: var(--white);
  padding: 0.5rem 1.4rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.01em;
  transition: background 0.2s, transform 0.2s;
}
.btn-book:hover { background: var(--warm-red); color: var(--white); transform: translateY(-1px); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 6px; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--text-dark); transition: transform 0.3s, opacity 0.3s; transform-origin: center; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* === Hero === */
.hero {
  background: linear-gradient(180deg, var(--white-pink) 0%, var(--light-peach) 100%);
  color: var(--text-dark);
  text-align: center;
  padding: 6rem 2rem 5rem;
}
.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  margin-bottom: 1.2rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.hero p {
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 2.5rem;
  color: var(--text-mid);
  line-height: 1.7;
}
.hero-img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
}
.hero-actions { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }
.hero-actions a {
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  transition: all 0.2s;
}
.btn-primary {
  background: var(--coral-red);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--warm-red);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(214,48,49,0.25);
}
.btn-outline {
  background: var(--white);
  border: 1.5px solid var(--salmon);
  color: var(--text-dark);
}
.btn-outline:hover {
  background: var(--light-peach);
  border-color: var(--salmon);
  color: var(--coral-red);
}

/* === Section === */
.section { padding: 5rem 0; }
.section-alt { background: var(--white); }
.section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header p { color: var(--text-mid); max-width: 500px; margin: 0 auto; }
.section-divider {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin: 0.75rem auto 0;
}

/* === Service Cards === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-peach);
  transition: box-shadow 0.3s, transform 0.3s;
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}
.service-card p { font-size: 0.88rem; color: var(--text-mid); margin-bottom: 1rem; line-height: 1.6; }
.price-list { list-style: none; }
.price-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  font-size: 0.88rem;
}
.price-list li:last-child { border: none; }
.price-list li span:last-child { font-weight: 600; color: var(--text-dark); }

/* === Gallery Grid === */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}
.gallery-grid img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform 0.4s, box-shadow 0.4s;
  cursor: pointer;
}
.gallery-grid img:hover {
  transform: scale(1.015);
  box-shadow: var(--shadow-lg);
}

/* === About === */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-grid p { margin-bottom: 1rem; line-height: 1.7; }
.about-grid img { border-radius: var(--radius); box-shadow: var(--shadow-md); }
.stats { display: flex; gap: 2.5rem; margin-top: 2rem; }
.stat { text-align: center; }
.stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--coral-red);
}
.stat-label { font-size: 0.8rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 0.25rem; }

/* === Testimonials === */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
}
.testimonial {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-peach);
  position: relative;
}
.testimonial::before {
  content: "\201C";
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--peach);
  position: absolute;
  top: 0.75rem;
  left: 1.25rem;
  line-height: 1;
}
.testimonial blockquote {
  font-size: 0.92rem;
  font-style: italic;
  margin-bottom: 1.25rem;
  line-height: 1.7;
  padding-top: 1rem;
  color: var(--text-mid);
}
.testimonial-author { font-weight: 600; font-size: 0.85rem; color: var(--text-dark); }

/* === FAQ === */
.faq-list { max-width: 700px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(0,0,0,0.06); padding: 1.5rem 0; }
.faq-item h3 { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.5rem; color: var(--text-dark); }
.faq-item p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.7; }

/* === Areas Served === */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.5rem;
}
.areas-grid a {
  padding: 0.6rem 1rem;
  background: var(--white);
  border-radius: 6px;
  border: 1px solid rgba(0,0,0,0.06);
  font-size: 0.82rem;
  color: var(--text-body);
  transition: all 0.2s;
}
.areas-grid a:hover {
  border-color: var(--coral-red);
  color: var(--coral-red);
  box-shadow: var(--shadow-sm);
}

/* === Area Hero Image === */
.area-hero { position: relative; overflow: hidden; padding-top: 0; }
.area-hero-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0;
}
.area-hero h1 { margin-top: 1.5rem; }

/* === Area Single Page === */
.area-content { max-width: 680px; }
.area-content p { margin-bottom: 1rem; line-height: 1.7; }
.area-content ul { list-style: none; padding: 0; margin: 1rem 0; }
.area-content li { padding: 0.3rem 0; color: var(--text-mid); }
.area-map { margin-top: 2.5rem; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.area-map iframe { width: 100%; height: 400px; border: 0; }
.area-cta {
  margin-top: 2.5rem;
  padding: 2.5rem;
  background: var(--white-pink);
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid var(--light-peach);
}
.area-cta h2 { font-family: var(--font-heading); color: var(--text-dark); margin-bottom: 0.5rem; font-size: 1.4rem; }
.area-cta p { color: var(--text-mid); font-size: 0.9rem; }
.area-cta a.btn-primary {
  display: inline-block;
  margin-top: 1.25rem;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
}

/* === Footer === */
.site-footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.6);
  padding: 4rem 0 2rem;
  margin-top: 0;
  border-top: 3px solid var(--peach);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer-col h3 {
  font-family: var(--font-heading);
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.01em;
}
.footer-col p { font-size: 0.82rem; line-height: 1.8; }
.footer-col a { color: var(--gold-soft); }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
}

/* === Trust Badge === */
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-mid);
  margin-bottom: 1.25rem;
  padding: 0.4rem 1rem;
  background: var(--white);
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
}
.trust-stars { color: var(--gold); font-size: 1rem; letter-spacing: 1px; }

/* === Section Compact === */
.section--compact { padding: 3rem 2rem; }

/* === CTA Banner === */
.cta-banner {
  text-align: center;
  background: var(--light-peach);
}
.cta-banner h2 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}
.cta-banner p { color: var(--text-mid); font-size: 0.9rem; margin-bottom: 0.25rem; }
.cta-banner .btn-primary {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
}

/* === Breadcrumb === */
.breadcrumb {
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.04);
  padding: 0.6rem 0;
  font-size: 0.8rem;
}
.breadcrumb a { color: var(--text-mid); }
.breadcrumb a:hover { color: var(--coral-red); }
.breadcrumb span { color: var(--text-light); }
.breadcrumb-sep { margin: 0 0.4rem; color: var(--text-light); }

/* === FAQ Details/Summary === */
.faq-item summary {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  padding: 0.25rem 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--salmon);
  transition: transform 0.2s;
}
.faq-item[open] summary::after {
  content: "\2212";
}
.faq-item p { padding-top: 0.5rem; }

/* === Mobile === */
@media (max-width: 768px) {
  .container { padding: 0 1.25rem; }
  .nav-toggle { display: flex; }
  .main-nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    box-shadow: var(--shadow-lg);
  }
  .main-nav.open { display: flex; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero { padding: 4rem 1.25rem 3.5rem; }
  .section--compact { padding: 2rem 1.25rem; }
  .section { padding: 3.5rem 0; }
  .stats { flex-wrap: wrap; gap: 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
}
