@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --cream:      #F0EAE0;
  --cream-dark: #E6DDD3;
  --white:      #ffffff;
  --charcoal:   #1C1C1C;
  --orange:     #E8913A;
  --orange-h:   #D4813A;
  --text:       #2D2D2D;
  --text-mid:   #6B7280;
  --text-light: #9CA3AF;
  --border:     #E2D9D0;
  --shadow:     0 4px 28px rgba(0,0,0,0.09);
  --ff-display: 'Bebas Neue', sans-serif;
  --ff-serif:   'Playfair Display', serif;
  --ff-body:    'Inter', sans-serif;
  --max-w:      1200px;
  --nav-h:      72px;
  --r:          8px;
  --r-lg:       16px;
  --r-pill:     100px;
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--ff-body); color: var(--text); background: var(--white); line-height: 1.6; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   UTILITY
   ============================================================ */
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

.section-head { text-align: center; margin-bottom: 48px; }
.section-head h2 {
  font-family: var(--ff-serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--charcoal);
  margin-top: 6px;
}
.section-head p {
  max-width: 500px;
  margin: 12px auto 0;
  color: var(--text-mid);
  font-size: 15px;
  line-height: 1.75;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}
.btn-sm { padding: 9px 22px; font-size: 13px; }

.btn-primary { background: var(--orange); color: var(--white); border-color: var(--orange); }
.btn-primary:hover { background: var(--orange-h); border-color: var(--orange-h); transform: translateY(-1px); }

.btn-dark { background: var(--charcoal); color: var(--white); border-color: var(--charcoal); }
.btn-dark:hover { background: #333; border-color: #333; }

.btn-outline-dark { background: transparent; color: var(--charcoal); border-color: var(--charcoal); }
.btn-outline-dark:hover { background: var(--charcoal); color: var(--white); }
.btn-outline-light { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline-light:hover { background: var(--white); color: var(--charcoal); }

.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.65); }
.btn-outline-light:hover { background: var(--white); color: var(--charcoal); border-color: var(--white); }

/* ============================================================
   NAV
   ============================================================ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
}

.nav-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--ff-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--charcoal);
  flex-shrink: 0;
}
.nav-logo img { width: 30px; height: 30px; object-fit: contain; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
}

.nav-menu > a,
.nav-drop > button {
  padding: 8px 13px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  border-radius: 6px;
  transition: background 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.nav-menu > a:hover,
.nav-drop > button:hover { background: var(--cream-dark); }

.nav-drop { position: relative; }

.nav-drop-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  box-shadow: var(--shadow);
  min-width: 190px;
  padding: 8px 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: all 0.2s ease;
}
.nav-drop:hover .nav-drop-menu,
.nav-drop.open .nav-drop-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.nav-drop-menu a {
  display: block;
  padding: 9px 18px;
  font-size: 14px;
  color: var(--text);
  transition: background 0.12s;
}
.nav-drop-menu a:hover { background: var(--cream); }

.nav-cta { margin-left: auto; flex-shrink: 0; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-nav {
  display: none;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px 24px;
}
.mobile-nav a {
  display: block;
  padding: 11px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.mobile-nav .btn { margin-top: 18px; width: 100%; justify-content: center; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--cream);
  text-align: center;
  padding: 76px 24px 60px;
}
.page-hero h1 {
  font-family: var(--ff-serif);
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 16px;
  line-height: 1.1;
}
.page-hero p {
  max-width: 460px;
  margin: 0 auto;
  color: var(--text-mid);
  font-size: 15px;
  line-height: 1.75;
}
.page-hero .btn { margin-top: 24px; }

/* ============================================================
   HOMEPAGE HERO
   ============================================================ */
.home-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: #111;
}

.home-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.20);
  z-index: 1;
  pointer-events: none;
}

.home-hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.home-hero-text { max-width: 560px; }

.home-hero-text h1 {
  font-family: var(--ff-display);
  font-size: clamp(88px, 13.5vw, 164px);
  line-height: 0.87;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
}

.home-hero-text p {
  color: rgba(255, 255, 255, 0.80);
  font-size: 15px;
  max-width: 380px;
  margin-bottom: 36px;
  line-height: 1.75;
}

.home-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Photo fills the entire section as background */
.home-hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  -webkit-mask-image: linear-gradient(to bottom, #000 80%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 80%, transparent 100%);
}

.home-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: 78% bottom;
  border-radius: 0;
  max-width: none;
  display: block;
}

/* ============================================================
   ELEVATE SECTION
   ============================================================ */
.elevate {
  background: var(--cream);
  padding: 96px 0;
}

.elevate-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.elevate-img-wrap { position: relative; }

.elevate-img-wrap > img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--r-lg);
}

.elevate-badge {
  position: absolute;
  bottom: 32px;
  right: -20px;
  width: 130px;
  height: 130px;
}
.elevate-badge img { width: 100%; height: 100%; object-fit: contain; }

.elevate-text h2 {
  font-family: var(--ff-serif);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 16px;
  line-height: 1.2;
}

.elevate-text > p {
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 36px;
}

.stats-row {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}

.stat strong {
  display: block;
  font-family: var(--ff-serif);
  font-size: 36px;
  color: var(--charcoal);
  line-height: 1;
}
.stat span { font-size: 13px; color: var(--text-mid); margin-top: 4px; display: block; }

/* ============================================================
   SERVICES (homepage dark cards)
   ============================================================ */
.services-section {
  background: var(--white);
  padding: 96px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--charcoal);
  color: var(--white);
  cursor: pointer;
}

.service-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  opacity: 0.55;
  transition: opacity 0.35s, transform 0.45s;
  display: block;
}
.service-card:hover img { opacity: 0.35; transform: scale(1.04); }

.service-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
  background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, transparent 100%);
}

.service-card-body h3 {
  font-family: var(--ff-serif);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 6px;
}

.service-card-body p {
  font-size: 13px;
  color: rgba(255,255,255,0.68);
  margin-bottom: 14px;
  line-height: 1.6;
}

.service-card-body a {
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.2s;
}
.service-card-body a:hover { gap: 10px; }

/* ============================================================
   CTA BANNER (dark)
   ============================================================ */
.cta-banner {
  position: relative;
  background: var(--charcoal);
  overflow: hidden;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.cta-banner-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  padding: 96px 0;
}

.cta-banner-text h2 {
  font-family: var(--ff-serif);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.15;
}

.cta-banner-text p {
  color: rgba(255,255,255,0.65);
  margin-bottom: 36px;
  line-height: 1.75;
  font-size: 15px;
}

.cta-banner-image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--r-lg);
}

/* ============================================================
   PRODUCTS
   ============================================================ */
.products-section {
  background: var(--cream);
  padding: 96px 0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.product-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }

.product-card img { width: 100%; height: 210px; object-fit: cover; }

.product-card-body { padding: 16px 18px 18px; }

.product-tag {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--orange);
  margin-bottom: 5px;
}

.product-card-body h4 {
  font-family: var(--ff-serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 4px;
  line-height: 1.3;
}

.product-price { font-size: 17px; font-weight: 700; color: var(--charcoal); }

/* ============================================================
   VISIT SALON
   ============================================================ */
.visit-section {
  background: var(--white);
  padding: 96px 0;
}

.visit-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.visit-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.visit-photos img { width: 100%; height: 185px; object-fit: cover; border-radius: var(--r); }
.visit-photos img:first-child { grid-column: 1 / -1; height: 250px; }

.visit-text h2 {
  font-family: var(--ff-serif);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 14px;
  line-height: 1.2;
}

.visit-text > p { color: var(--text-mid); line-height: 1.8; margin-bottom: 28px; }

.visit-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.visit-info-icon {
  width: 40px;
  height: 40px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--orange);
  font-size: 17px;
}

.visit-info-item strong { display: block; font-size: 14px; font-weight: 600; color: var(--charcoal); }
.visit-info-item span { font-size: 13px; color: var(--text-mid); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
  background: var(--cream);
  padding: 96px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.testimonial-stars { color: var(--orange); font-size: 15px; letter-spacing: 3px; }

.testimonial-quote {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.75;
  flex: 1;
  font-style: italic;
}

.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-author img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.testimonial-author strong { font-size: 14px; font-weight: 600; color: var(--charcoal); display: block; }
.testimonial-author span { font-size: 12px; color: var(--text-light); }

/* ============================================================
   BLOG CARDS
   ============================================================ */
.blog-section { background: var(--white); padding: 96px 0; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card { border-radius: var(--r-lg); overflow: hidden; transition: box-shadow 0.2s; }
.blog-card:hover { box-shadow: var(--shadow); }

.blog-card-img { overflow: hidden; border-radius: var(--r-lg); }
.blog-card-img img { width: 100%; height: 225px; object-fit: cover; transition: transform 0.4s; }
.blog-card:hover .blog-card-img img { transform: scale(1.04); }

.blog-card-body { padding: 18px 0; }

.blog-meta { font-size: 11px; color: var(--text-light); text-transform: uppercase; letter-spacing: 2.5px; margin-bottom: 8px; }

.blog-card-body h3 {
  font-family: var(--ff-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-read-more {
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.2s;
}
.blog-read-more:hover { gap: 10px; }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-section { padding: 96px 0; }
.faq-list { max-width: 740px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--charcoal);
  text-align: left;
  gap: 16px;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  color: var(--text-mid);
  transition: all 0.25s;
  line-height: 1;
}
.faq-item.open .faq-icon { background: var(--orange); border-color: var(--orange); color: var(--white); transform: rotate(45deg); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer-inner { padding: 0 0 20px; font-size: 14px; color: var(--text-mid); line-height: 1.8; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--charcoal); color: var(--white); }

.footer-top {
  padding: 64px 0 48px;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .nav-logo { color: var(--white); margin-bottom: 16px; display: inline-flex; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.75; margin-bottom: 24px; max-width: 270px; }

.footer-newsletter { display: flex; gap: 8px; }
.footer-newsletter input {
  flex: 1;
  padding: 11px 16px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  color: var(--white);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}
.footer-newsletter input::placeholder { color: rgba(255,255,255,0.33); }
.footer-newsletter input:focus { border-color: var(--orange); }

.footer-col h4 { font-size: 14px; font-weight: 600; margin-bottom: 20px; }
.footer-col a { display: block; font-size: 13px; color: rgba(255,255,255,0.52); margin-bottom: 11px; transition: color 0.15s; }
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.38);
}

.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.65);
  transition: background 0.15s, color 0.15s;
}
.footer-socials a:hover { background: var(--orange); color: var(--white); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-intro { background: var(--cream); padding: 80px 0; text-align: center; }
.about-intro h2 { font-family: var(--ff-serif); font-size: clamp(28px, 4vw, 44px); font-weight: 700; color: var(--charcoal); margin-bottom: 20px; }
.about-intro p { max-width: 680px; margin: 0 auto 12px; color: var(--text-mid); line-height: 1.8; }

.about-video-section {
  position: relative;
  height: 100vh;
  min-height: 540px;
  background: var(--charcoal);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-video-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.40;
  display: block;
}

.video-play-btn {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
  text-align: center;
  transition: transform 0.2s;
}
.video-play-btn:hover { transform: scale(1.05); }

.video-play-btn .play-circle {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 0 0 16px rgba(232,145,58,0.18), 0 0 0 32px rgba(232,145,58,0.08);
  transition: background 0.2s, box-shadow 0.2s;
}
.video-play-btn:hover .play-circle {
  background: var(--orange-h);
  box-shadow: 0 0 0 20px rgba(232,145,58,0.22), 0 0 0 40px rgba(232,145,58,0.10);
}
.video-play-btn .play-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

.about-services-section { background: var(--cream); padding: 96px 0; }

.about-services-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-services-img img { width: 100%; height: 500px; object-fit: cover; border-radius: var(--r-lg); }

.about-services-text h2 {
  font-family: var(--ff-serif);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 28px;
  line-height: 1.2;
}

.about-photos { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.about-photos img { width: 100%; height: 220px; object-fit: cover; border-radius: var(--r); }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-page-section { background: var(--white); padding: 64px 0 96px; }

.service-cards-light {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.service-card-light {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow 0.2s;
}
.service-card-light:hover { box-shadow: var(--shadow); }

.service-card-light img { width: 100%; height: 240px; object-fit: cover; }

.service-card-light-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-card-light-body h3 { font-family: var(--ff-serif); font-size: 20px; font-weight: 600; color: var(--charcoal); margin-bottom: 10px; }
.service-card-light-body p { font-size: 13px; color: var(--text-mid); line-height: 1.7; margin-bottom: 16px; flex: 1; }

/* ============================================================
   SERVICE DETAILS PAGE
   ============================================================ */
.service-detail-hero-img { width: 100%; height: 460px; object-fit: cover; display: block; }

.service-detail-content { padding: 64px 0 96px; }

.service-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
}

.service-detail-grid h2 { font-family: var(--ff-serif); font-size: 24px; font-weight: 700; color: var(--charcoal); margin: 36px 0 12px; }
.service-detail-grid h2:first-child { margin-top: 0; }
.service-detail-grid p { color: var(--text-mid); line-height: 1.8; margin-bottom: 14px; font-size: 15px; }

.what-included ul { margin-top: 14px; }
.what-included li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-mid);
  margin-bottom: 10px;
  line-height: 1.5;
}
.what-included li::before { content: '✓'; color: var(--orange); font-weight: 700; flex-shrink: 0; }

.sidebar-schedule {
  background: var(--orange);
  border-radius: var(--r-lg);
  padding: 32px;
  color: var(--white);
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}
.sidebar-schedule h3 { font-family: var(--ff-serif); font-size: 22px; font-weight: 700; margin-bottom: 12px; line-height: 1.3; }
.sidebar-schedule p { font-size: 14px; color: rgba(255,255,255,0.82); margin-bottom: 24px; line-height: 1.7; }
.sidebar-schedule .btn { background: var(--white); color: var(--orange); width: 100%; justify-content: center; font-weight: 700; border-color: var(--white); }
.sidebar-schedule .btn:hover { background: var(--cream); border-color: var(--cream); }

.explore-section { background: var(--cream); padding: 80px 0; }
.explore-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

/* ============================================================
   BLOG PAGE
   ============================================================ */
.blog-page-section { background: var(--white); padding: 64px 0 96px; }
.blog-page-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }

/* ============================================================
   BLOG DETAILS PAGE
   ============================================================ */
.blog-detail-hero-img { width: 100%; height: 440px; object-fit: cover; display: block; }

.blog-detail-content { padding: 64px 0 96px; }

.blog-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
}

.blog-detail-body h2 { font-family: var(--ff-serif); font-size: 24px; font-weight: 700; color: var(--charcoal); margin: 32px 0 12px; }
.blog-detail-body h2:first-child { margin-top: 0; }
.blog-detail-body p { color: var(--text-mid); line-height: 1.8; margin-bottom: 16px; font-size: 15px; }
.blog-detail-body ul { list-style: disc; padding-left: 20px; margin-bottom: 16px; }
.blog-detail-body li { color: var(--text-mid); margin-bottom: 8px; font-size: 15px; line-height: 1.7; }

.more-articles { background: var(--cream); padding: 80px 0; }
.more-articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-info-strip { background: var(--cream); padding: 48px 0; border-bottom: 1px solid var(--border); }

.contact-info-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}

.contact-info-col h4 { font-size: 11px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--orange); margin-bottom: 10px; }
.contact-info-col p { font-family: var(--ff-serif); font-size: 16px; font-weight: 600; color: var(--charcoal); line-height: 1.6; }

.contact-form-section { background: var(--cream); padding: 80px 0 96px; }

.contact-form-wrap {
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 48px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--charcoal); margin-bottom: 7px; }

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--orange); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* ============================================================
   TESTIMONIALS PAGE
   ============================================================ */
.testimonials-page-section { background: var(--white); padding: 64px 0 96px; }
.testimonials-page-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* ============================================================
   404 PAGE
   ============================================================ */
.page-404 {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  text-align: center;
  padding: 80px 24px;
}

.error-num {
  font-family: var(--ff-display);
  font-size: clamp(120px, 22vw, 220px);
  line-height: 1;
  color: var(--charcoal);
  opacity: 0.07;
  margin-bottom: -40px;
}

.error-content h2 { font-family: var(--ff-serif); font-size: clamp(28px, 4vw, 40px); font-weight: 700; color: var(--charcoal); margin-bottom: 12px; }
.error-content p { color: var(--text-mid); margin-bottom: 36px; font-size: 15px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .nav-menu, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .home-hero { min-height: 100svh; }
  .home-hero-inner { padding: 64px 24px; }
  .home-hero-text h1 { font-size: clamp(72px, 20vw, 120px); }

  .elevate-inner { grid-template-columns: 1fr; gap: 48px; }
  .elevate-badge { right: 16px; }
  .services-grid { grid-template-columns: 1fr; }
  .cta-banner-inner { grid-template-columns: 1fr; }
  .cta-banner-image { display: none; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .visit-inner { grid-template-columns: 1fr; gap: 48px; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .contact-info-cols { grid-template-columns: 1fr; gap: 24px; }
  .service-cards-light { grid-template-columns: 1fr; }
  .service-card-light { grid-template-columns: 1fr; }
  .service-card-light img { height: 200px; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .blog-detail-grid { grid-template-columns: 1fr; }
  .blog-page-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-page-grid { grid-template-columns: 1fr 1fr; }
  .more-articles-grid { grid-template-columns: 1fr 1fr; }
  .about-services-inner { grid-template-columns: 1fr; gap: 48px; }
  .explore-grid { grid-template-columns: 1fr; }
  .about-photos { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .products-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-page-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-page-grid { grid-template-columns: 1fr; }
  .more-articles-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stats-row { flex-direction: column; gap: 20px; }
  .contact-form-wrap { padding: 28px 20px; }
  .services-split-item,
  .services-split-item--reverse { grid-template-columns: 1fr; }
  .services-split-item--reverse .services-split-img { order: 0; }
  .contact-layout { grid-template-columns: 1fr; }
  .testimonials-stats-grid { grid-template-columns: 1fr 1fr; }
  .page-404-inner { flex-direction: column; }
  .page-404-ghost { font-size: clamp(100px, 35vw, 160px); }
  .contact-info-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   ADDITIONAL PAGE STYLES
   ============================================================ */

/* Buttons: missing variants */
.btn-outline { background: transparent; color: var(--charcoal); border-color: var(--charcoal); }
.btn-outline:hover { background: var(--charcoal); color: var(--white); }
.btn-lg { padding: 16px 36px; font-size: 15px; }

/* ---- About page ---- */
.about-intro { padding: 80px 0; background: var(--white); }
.about-intro .container { max-width: 760px; }
.about-intro .section-tag { margin-bottom: 10px; }
.about-intro h2 {
  font-family: var(--ff-serif); font-size: clamp(28px, 4vw, 44px);
  font-weight: 700; color: var(--charcoal); margin-bottom: 20px; line-height: 1.2;
}
.about-intro p { color: var(--text-mid); font-size: 15px; line-height: 1.8; margin-bottom: 16px; }


.about-services-section { padding: 80px 0; background: var(--white); }
.about-services-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.about-services-img img { width: 100%; height: 480px; object-fit: cover; border-radius: var(--r-lg); }
.about-services-text h2 {
  font-family: var(--ff-serif); font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700; color: var(--charcoal); margin: 10px 0 24px; line-height: 1.2;
}

/* ---- Services page: split layout ---- */
.services-split-list { display: flex; flex-direction: column; gap: 64px; }

.services-split-item {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.services-split-item--reverse { grid-template-columns: 1fr 1fr; }
.services-split-item--reverse .services-split-img { order: 2; }
.services-split-item--reverse .services-split-text { order: 1; }

.services-split-img img {
  width: 100%; height: 420px; object-fit: cover;
  border-radius: var(--r-lg); display: block;
}
.services-split-text { display: flex; flex-direction: column; gap: 0; }
.services-split-text h3 {
  font-family: var(--ff-serif); font-size: clamp(22px, 3vw, 32px);
  font-weight: 700; color: var(--charcoal); margin: 10px 0 14px; line-height: 1.2;
}
.services-split-text p { color: var(--text-mid); font-size: 15px; line-height: 1.8; margin-bottom: 18px; }

.services-checklist { margin-bottom: 28px; }
.services-checklist li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--text-mid); padding: 7px 0;
  border-bottom: 1px solid var(--border);
}
.services-checklist li::before { content: '✓'; color: var(--orange); font-weight: 700; flex-shrink: 0; }

/* ---- Service detail page ---- */
.service-detail-section { padding: 64px 0 96px; background: var(--white); }
.service-detail-main { min-width: 0; }
.service-detail-main h2 {
  font-family: var(--ff-serif); font-size: clamp(22px, 3vw, 30px);
  font-weight: 700; color: var(--charcoal); margin: 32px 0 12px;
}
.service-detail-main h2:first-of-type { margin-top: 24px; }
.service-detail-main h3 {
  font-family: var(--ff-serif); font-size: 20px;
  font-weight: 600; color: var(--charcoal); margin: 28px 0 12px;
}
.service-detail-main p { color: var(--text-mid); font-size: 15px; line-height: 1.8; margin-bottom: 14px; }

.service-detail-hero-img img { width: 100%; height: 460px; object-fit: cover; border-radius: var(--r-lg); display: block; margin-bottom: 32px; }

.service-detail-checklist { margin-bottom: 32px; }
.service-detail-checklist li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--text-mid); padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.service-detail-checklist li::before { content: '✓'; color: var(--orange); font-weight: 700; }

.service-detail-pricing { background: var(--cream); border-radius: var(--r-lg); padding: 28px; margin-bottom: 32px; }
.service-detail-pricing h3 { margin: 0 0 16px; font-family: var(--ff-serif); font-size: 20px; color: var(--charcoal); }
.pricing-table { display: flex; flex-direction: column; gap: 0; }
.pricing-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0; border-bottom: 1px solid var(--border);
  font-size: 14px; color: var(--text-mid);
}
.pricing-row:last-child { border-bottom: none; }
.pricing-row span:last-child { font-weight: 700; color: var(--charcoal); }

.service-detail-testimonials { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 16px; }

.service-detail-sidebar { display: flex; flex-direction: column; gap: 24px; }

.sidebar-schedule h4 {
  font-family: var(--ff-serif); font-size: 20px; font-weight: 700;
  margin-bottom: 10px; line-height: 1.3; color: var(--white);
}

.sidebar-contact-list { display: flex; flex-direction: column; gap: 16px; margin-top: 20px; }
.sidebar-contact-item { display: flex; gap: 12px; align-items: flex-start; }
.sidebar-contact-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.sidebar-contact-item strong { display: block; color: var(--white); font-size: 13px; font-weight: 600; margin-bottom: 3px; }
.sidebar-contact-item span,
.sidebar-contact-item a { display: block; color: rgba(255,255,255,0.8); font-size: 13px; }

.sidebar-hours {
  background: var(--white); border-radius: var(--r-lg);
  border: 1px solid var(--border); padding: 24px;
}
.sidebar-hours h4 { font-family: var(--ff-serif); font-size: 16px; font-weight: 700; color: var(--charcoal); margin-bottom: 14px; }
.hours-list { display: flex; flex-direction: column; gap: 0; }
.hours-row {
  display: flex; justify-content: space-between;
  padding: 9px 0; border-bottom: 1px solid var(--border);
  font-size: 13px; color: var(--text-mid);
}
.hours-row:last-child { border-bottom: none; }
.hours-row span:first-child { font-weight: 500; color: var(--text); }

.sidebar-more-services {
  background: var(--white); border-radius: var(--r-lg);
  border: 1px solid var(--border); padding: 24px;
}
.sidebar-more-services h4 { font-family: var(--ff-serif); font-size: 16px; font-weight: 700; color: var(--charcoal); margin-bottom: 14px; }
.sidebar-service-link {
  display: block; padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px; color: var(--text-mid);
  transition: color 0.15s;
}
.sidebar-service-link:last-child { border-bottom: none; }
.sidebar-service-link:hover { color: var(--orange); }

/* ---- Blog page ---- */
.blog-filter-bar { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px; }
.blog-filter-btn {
  padding: 9px 20px; border-radius: var(--r-pill); font-size: 13px; font-weight: 500;
  border: 1px solid var(--border); color: var(--text-mid); background: var(--white);
  transition: all 0.15s;
}
.blog-filter-btn:hover,
.blog-filter-btn.active { background: var(--orange); color: var(--white); border-color: var(--orange); }

.blog-pagination { display: flex; justify-content: center; gap: 8px; margin-top: 56px; }
.pagination-btn {
  width: 40px; height: 40px; border-radius: 50%; font-size: 14px; font-weight: 600;
  border: 1px solid var(--border); color: var(--text-mid); background: var(--white);
  display: flex; align-items: center; justify-content: center; transition: all 0.15s;
}
.pagination-btn:hover,
.pagination-btn.active { background: var(--orange); color: var(--white); border-color: var(--orange); }

/* ---- Blog detail page ---- */
.blog-detail-section { padding: 64px 0 96px; background: var(--white); }
.blog-detail-main { min-width: 0; }
.blog-detail-meta {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  margin-bottom: 20px; font-size: 13px; color: var(--text-mid);
}
.blog-detail-author { display: flex; align-items: center; gap: 6px; }
.blog-detail-hero-img img {
  width: 100%; height: 440px; object-fit: cover;
  border-radius: var(--r-lg); display: block; margin-bottom: 32px;
}
.blog-detail-main h1 {
  font-family: var(--ff-serif); font-size: clamp(26px, 4vw, 40px);
  font-weight: 700; color: var(--charcoal); line-height: 1.2; margin-bottom: 20px;
}
.blog-detail-main h2 {
  font-family: var(--ff-serif); font-size: 22px; font-weight: 700;
  color: var(--charcoal); margin: 36px 0 12px;
}
.blog-detail-main p { color: var(--text-mid); font-size: 15px; line-height: 1.85; margin-bottom: 16px; }
.blog-detail-lead { font-size: 17px !important; color: var(--text) !important; font-weight: 400; border-left: 3px solid var(--orange); padding-left: 18px; }

.blog-detail-cta {
  background: var(--cream); border-radius: var(--r-lg); padding: 32px;
  margin: 40px 0;
}
.blog-detail-cta h3 { font-family: var(--ff-serif); font-size: 20px; font-weight: 700; color: var(--charcoal); margin-bottom: 8px; }
.blog-detail-cta p { color: var(--text-mid); font-size: 14px; margin-bottom: 16px; }

.blog-detail-author-card {
  display: flex; gap: 16px; align-items: center; margin-top: 40px;
  padding: 24px; background: var(--cream); border-radius: var(--r-lg);
}
.blog-detail-author-card img { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.blog-detail-author-card strong { display: block; font-size: 15px; font-weight: 700; color: var(--charcoal); margin-bottom: 4px; }
.blog-detail-author-card span { font-size: 13px; color: var(--text-mid); line-height: 1.6; }

.blog-detail-sidebar { display: flex; flex-direction: column; gap: 24px; }

/* ---- Contact page ---- */
.contact-info-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.contact-info-item {
  display: flex; gap: 16px; align-items: flex-start;
}
.contact-info-icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.contact-info-item strong { display: block; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; color: var(--orange); margin-bottom: 6px; }
.contact-info-item span,
.contact-info-item a { display: block; font-size: 14px; color: var(--text-mid); line-height: 1.7; }
.contact-info-item a:hover { color: var(--orange); }

.contact-main-section { padding: 64px 0 96px; background: var(--white); }
.contact-layout { display: grid; grid-template-columns: 3fr 2fr; gap: 64px; align-items: start; }

.contact-form-wrap h2,
.contact-map-wrap h2 {
  font-family: var(--ff-serif); font-size: 26px; font-weight: 700;
  color: var(--charcoal); margin-bottom: 8px;
}
.contact-form-wrap > p { color: var(--text-mid); font-size: 14px; margin-bottom: 28px; line-height: 1.7; }

.contact-map-wrap { display: flex; flex-direction: column; gap: 0; }
.contact-hours-table { margin-bottom: 28px; }

/* ---- Testimonials page ---- */
.testimonials-stats-bar { background: var(--charcoal); padding: 40px 0; }
.testimonials-stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center;
}
.testimonials-stat strong {
  display: block; font-family: var(--ff-serif); font-size: 32px; font-weight: 700;
  color: var(--orange); margin-bottom: 4px;
}
.testimonials-stat span { font-size: 12px; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 1.5px; font-weight: 500; }

.testimonials-page-section { padding: 64px 0 96px; }
.testimonial-card--lg { grid-column: span 3; }

.testimonials-cta-section { background: var(--cream); }

/* ---- 404 page ---- */
.page-404 {
  background: var(--cream); padding: 60px 24px 80px;
}
.page-404-inner {
  max-width: 1100px; margin: 0 auto; display: flex; align-items: center;
  gap: 0; position: relative;
}
.page-404-ghost {
  font-family: var(--ff-display); font-size: clamp(160px, 25vw, 280px); line-height: 1;
  color: var(--charcoal); opacity: 0.06; flex-shrink: 0; pointer-events: none;
  position: absolute; left: 0; top: 50%; transform: translateY(-50%);
}
.page-404-content {
  position: relative; z-index: 1; padding-left: clamp(80px, 14vw, 180px);
}
.page-404-content h1 {
  font-family: var(--ff-serif); font-size: clamp(24px, 4vw, 38px); font-weight: 700;
  color: var(--charcoal); margin-bottom: 14px; line-height: 1.2;
}
.page-404-content > p { color: var(--text-mid); font-size: 15px; line-height: 1.75; max-width: 440px; margin-bottom: 32px; }
.page-404-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.page-404-links > p { font-size: 13px; color: var(--text-light); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600; }
.page-404-nav { display: flex; gap: 8px; flex-wrap: wrap; }
.page-404-nav a {
  padding: 8px 18px; border-radius: var(--r-pill); border: 1px solid var(--border);
  font-size: 13px; color: var(--text-mid); transition: all 0.15s;
}
.page-404-nav a:hover { background: var(--orange); color: var(--white); border-color: var(--orange); }

@media (max-width: 960px) {
  .services-split-item,
  .services-split-item--reverse { grid-template-columns: 1fr; }
  .services-split-item--reverse .services-split-img { order: 0; }
  .services-split-item--reverse .services-split-text { order: 1; }
  .contact-layout { grid-template-columns: 1fr; }
  .testimonials-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .service-detail-testimonials { grid-template-columns: 1fr; }
  .contact-info-grid { grid-template-columns: 1fr; gap: 20px; }
  .testimonial-card--lg { grid-column: span 2; }
}
