/* ═══════════════════════════════════════════════════════
   GRACE & PEACE FUNERAL SERVICES — STYLESHEET
   Design: Modern Minimal | Calm | Dignified
═══════════════════════════════════════════════════════ */

/* ── GOOGLE FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Lato:wght@300;400;700&family=Lora:ital,wght@1,400;1,500&display=swap');

/* ── DESIGN TOKENS ── */
:root {
  --blue:      #4F90F6;
  --navy:      #162661;
  --sky:       #D0E6FD;
  --cream:     #F1E4D1;
  --white:     #FFFFFF;
  --off-white: #FAFBFD;
  --navy-dark: #0d1a4a;
  --text:      #1e2340;
  --muted:     #6b7290;
  --light-muted: #9aa3c2;
  --border:    #e4ecf8;
  --gold:      #c9a96e;
  --shadow-sm: 0 2px 12px rgba(22,38,97,.07);
  --shadow:    0 4px 24px rgba(22,38,97,.10);
  --shadow-lg: 0 12px 48px rgba(22,38,97,.14);
  --r:         8px;
  --r-lg:      16px;
  --transition: all .25s cubic-bezier(.4,0,.2,1);
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Lato', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── PAGE ENTRY ANIMATION ── */
@keyframes pageIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}
body { animation: pageIn .35s cubic-bezier(.4,0,.2,1); }

/* ── LAYOUT HELPERS ── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 32px; }
.section    { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.text-center { text-align: center; }

/* ── TYPOGRAPHY ── */
.eyebrow {
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
h1, h2, h3, .display {
  font-family: 'Playfair Display', serif;
  line-height: 1.15;
}
.section-title {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 16px;
}
.section-title em { font-style: italic; color: var(--blue); font-weight: 400; }
.section-body {
  font-size: 16px;
  color: var(--muted);
  max-width: 580px;
  line-height: 1.8;
}
.divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--sky));
  border-radius: 2px;
  margin: 18px 0 32px;
}
.divider.center { margin-left: auto; margin-right: auto; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
  transition: var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
  font-family: 'Lato', sans-serif;
  text-transform: uppercase;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-primary:hover {
  background: var(--navy);
  border-color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(79,144,246,.35);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.15);
  border-color: white;
}
.btn-hotline {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
  font-size: 15px;
  padding: 16px 32px;
  border-radius: 4px;
  box-shadow: var(--shadow);
}
.btn-hotline:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-sm { padding: 6px 16px; font-size: 12px; }

/* ══════════════════════════════════════════════════════
   UTILITY BAR
══════════════════════════════════════════════════════ */
.utility-bar {
  background: var(--navy-dark);
  color: rgba(255,255,255,.65);
  font-size: 12.5px;
  padding: 9px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  letter-spacing: .03em;
}
.util-hotline {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-weight: 700;
}
.util-hotline a { color: var(--sky); }
.util-tagline { font-size: 12px; color: rgba(255,255,255,.45); }

/* ══════════════════════════════════════════════════════
   HEADER / NAVBAR
══════════════════════════════════════════════════════ */
header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: var(--shadow-sm);
}
nav {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
  height: 76px;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  margin-right: 24px;
  flex-shrink: 0;
}
/*.logo-img { height: 52px; width: auto; }*/
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: .04em;
}
.logo-sub {
  font-size: 10px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-top: 3px;
}

/* Nav links */
.nav-links { display: flex; align-items: center; gap: 0; }
.nav-item { position: relative; padding-bottom: 0; }
.nav-item > .nav-btn { position: relative; z-index: 1; }
.nav-btn {
  padding: 8px 16px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--text);
  border-radius: 4px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  text-transform: uppercase;
}
.nav-btn:hover, .nav-btn.active { color: var(--blue); }
.nav-chevron { font-size: 9px; transition: transform .2s; opacity: .6; }
.nav-item:hover .nav-chevron { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  box-shadow: var(--shadow-lg);
  min-width: 180px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, visibility .2s ease;
  visibility: hidden;
  will-change: opacity, visibility;
  z-index: 1000;
  overflow: hidden;
  padding-top: 8px;
}
.dropdown::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
  background: transparent;
}
.nav-item:hover .dropdown {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}
.drop-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  font-size: 13.5px;
  color: var(--text);
  cursor: pointer;
  transition: background .15s;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
}
.drop-item:last-child { border-bottom: none; }
.drop-item:hover { background: var(--sky); color: var(--navy); }
.drop-icon { font-size: 16px; width: 24px; text-align: center; }

/* Nav CTA */
.nav-right { margin-left: auto; display: flex; align-items: center; gap: 12px; }
.nav-hotline-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: white;
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-hotline-btn:hover { background: var(--navy); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(79,144,246,.4); }
.nav-hotline-btn .pulse {
  width: 8px; height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(1.3); }
}

/* Hamburger */
.hamburger { display: none; padding: 8px; margin-left: auto; flex-shrink: 0; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); margin: 5px 0; transition: .3s; border-radius: 2px; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ══════════════════════════════════════════════════════
   MOBILE MENU OVERLAY
══════════════════════════════════════════════════════ */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 850;
}
.mobile-overlay.open { display: block; }
.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: 320px;
  height: 100%;
  background: var(--white);
  z-index: 950;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  box-shadow: -8px 0 32px rgba(22,38,97,.15);
}
.mobile-menu.open { transform: none; }
.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}
.mobile-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--off-white);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--navy);
  transition: var(--transition);
}
.mobile-close:hover { background: var(--sky); }
.mobile-nav { padding: 12px 0; }
.mobile-nav-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: .05em;
  border-bottom: 1px solid var(--border);
  transition: background .15s;
  text-decoration: none;
}
.mobile-nav-btn:hover { background: var(--off-white); color: var(--blue); }
.mobile-sub {
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
  display: none;
}
.mobile-sub.open { display: block; }
.mobile-sub-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 12px 36px;
  font-size: 14px;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  transition: background .15s;
  text-decoration: none;
}
.mobile-sub-btn:last-child { border-bottom: none; }
.mobile-sub-btn:hover { background: var(--sky); color: var(--navy); }
.mobile-footer {
  padding: 24px;
  border-top: 1px solid var(--border);
}

/* ══════════════════════════════════════════════════════
   HOME — HERO
══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1547556397-bcd7e76ef108?w=1600&q=80&auto=format&fit=crop');
  background-size: cover;
  background-position: center 30%;
  opacity: .22;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg,
    rgba(13,26,74,.95) 0%,
    rgba(22,38,97,.85) 50%,
    rgba(79,144,246,.25) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 80px 32px;
  width: 100%;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(208,230,253,.12);
  border: 1px solid rgba(208,230,253,.2);
  border-radius: 40px;
  padding: 6px 16px;
  font-size: 12px;
  color: var(--sky);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 28px;
  font-weight: 700;
}
.hero-badge-dot { width: 6px; height: 6px; background: #4ade80; border-radius: 50%; animation: pulse 2s infinite; }
.hero h1 {
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 24px;
  letter-spacing: -.01em;
}
.hero h1 em { font-style: italic; color: var(--sky); }
.hero-tagline {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 18px;
  color: rgba(208,230,253,.8);
  margin-bottom: 16px;
  line-height: 1.5;
}
.hero-sub {
  font-size: 16px;
  color: rgba(208,230,253,.65);
  max-width: 500px;
  line-height: 1.8;
  margin-bottom: 40px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero card */
.hero-card {
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-lg);
  padding: 36px;
}
.hero-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 500;
  color: white;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.hero-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.hero-feature:last-child { border-bottom: none; }
.hf-icon {
  width: 44px; height: 44px;
  background: rgba(208,230,253,.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.hf-text strong { display: block; color: white; font-size: 15px; margin-bottom: 3px; }
.hf-text span { font-size: 13px; color: rgba(208,230,253,.7); line-height: 1.5; }

/* Scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.3);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  z-index: 1;
}
.scroll-hint-bar {
  width: 1px;
  height: 40px;
  background: linear-gradient(rgba(255,255,255,.4), transparent);
  animation: scrollAnim 1.8s infinite;
}
@keyframes scrollAnim {
  0% { transform: scaleY(1); transform-origin: top; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ══════════════════════════════════════════════════════
   HOME — STATS STRIP
══════════════════════════════════════════════════════ */
.stats-strip { background: var(--navy); }
.stats-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: repeat(4,1fr);
}
.stat-item {
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.08);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 400;
  color: var(--sky);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: 13px; color: rgba(255,255,255,.5); letter-spacing: .04em; }

/* ══════════════════════════════════════════════════════
   HOME — ABOUT PREVIEW
══════════════════════════════════════════════════════ */
.about-preview { background: var(--off-white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image-wrap { position: relative; }
.about-image {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--r-lg);
  display: block;
}
.about-image-placeholder {
  width: 100%;
  height: 460px;
  background: linear-gradient(135deg, var(--sky) 0%, var(--cream) 100%);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  color: rgba(79,144,246,.3);
  position: relative;
  overflow: hidden;
}
.about-image-placeholder img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--r-lg);
}
.about-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  min-width: 140px;
}
.about-badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: var(--navy);
  font-weight: 400;
}
.about-badge-label { font-size: 12px; color: var(--muted); margin-top: 4px; }

/* ══════════════════════════════════════════════════════
   HOME — SERVICES GRID
══════════════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--blue); }
.service-card-img {
  height: 180px;
  overflow: hidden;
  position: relative;
}
.service-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.07); }
.service-card-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 40px;
  transition: transform .5s ease;
}
.service-card:hover .service-card-img-placeholder { transform: scale(1.07); }
.service-card-body { padding: 24px; }
.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 10px;
}
.service-card p { font-size: 13.5px; color: var(--muted); line-height: 1.65; margin-bottom: 16px; }
.service-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: .04em;
  text-transform: uppercase;
  display: flex; align-items: center; gap: 6px;
  transition: gap .2s;
}
.service-card:hover .service-link { gap: 10px; }

/* ══════════════════════════════════════════════════════
   HOME — PARLOURS PREVIEW
══════════════════════════════════════════════════════ */
.parlours-preview { background: var(--sky); }
.parlours-scroll {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.parlour-preview-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
}
.parlour-preview-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.parlour-card-img {
  height: 200px;
  overflow: hidden;
}
.parlour-card-img img { width:100%; height:100%; object-fit:cover; transition: transform .5s; }
.parlour-preview-card:hover .parlour-card-img img { transform: scale(1.06); }
.parlour-card-body { padding: 24px; }
.parlour-tag {
  display: inline-block;
  background: var(--sky);
  color: var(--navy);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.parlour-card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 8px;
}
.parlour-card-body p { font-size: 13.5px; color: var(--muted); line-height: 1.65; }

/* ══════════════════════════════════════════════════════
   HOME — TESTIMONIALS
══════════════════════════════════════════════════════ */
.testimonials { background: var(--cream); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.testi-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.testi-card::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 80px;
  color: var(--sky);
  line-height: .7;
  position: absolute;
  top: 20px; left: 24px;
}
.testi-text {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 24px;
  margin-top: 32px;
}
.testi-stars { color: #f59e0b; font-size: 14px; letter-spacing: 2px; margin-bottom: 12px; }
.testi-name { font-weight: 700; font-size: 14px; color: var(--navy); }
.testi-relation { font-size: 12.5px; color: var(--muted); margin-top: 3px; }

/* ══════════════════════════════════════════════════════
   HOME — CTA BAND
══════════════════════════════════════════════════════ */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, #1e4daa 100%);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  right: -100px; top: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79,144,246,.2), transparent 70%);
}
.cta-inner {
  max-width: 760px; margin: 0 auto;
  padding: 80px 32px;
  text-align: center;
  position: relative; z-index: 1;
}
.cta-inner h2 {
  font-size: clamp(28px,4vw,46px);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 14px;
}
.cta-inner h2 em { font-style: italic; color: var(--sky); }
.cta-inner p { font-size: 16px; color: rgba(208,230,253,.8); margin-bottom: 40px; line-height: 1.7; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ══════════════════════════════════════════════════════
   PAGE HERO (INNER PAGES)
══════════════════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1416879595882-3373a0480b5b?w=1400&q=60&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  opacity: .08;
}
.page-hero .container { position: relative; z-index: 1; }
.breadcrumb { font-size: 12.5px; color: rgba(255,255,255,.4); margin-bottom: 20px; letter-spacing: .05em; }
.breadcrumb span { color: rgba(255,255,255,.7); }
.breadcrumb a { color: rgba(255,255,255,.55); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(255,255,255,.2); transition: color .2s; }
.breadcrumb a:hover { color: rgba(255,255,255,.95); }
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(36px,5vw,62px); font-weight: 400; color: white; margin-bottom: 14px; }
.page-hero h1 em { font-style: italic; color: var(--sky); }
.page-hero p { font-size: 17px; color: rgba(208,230,253,.8); max-width: 540px; line-height: 1.7; }
.page-hero-deco {
  position: absolute;
  right: 10%; top: 50%; transform: translateY(-50%);
  font-size: 160px;
  color: rgba(255,255,255,.03);
  font-family: 'Playfair Display', serif;
  pointer-events: none;
}

/* ══════════════════════════════════════════════════════
   SUBTABS
══════════════════════════════════════════════════════ */
.subtabs-wrap { border-bottom: 2px solid var(--border); margin-bottom: 56px; }
.subtabs { display: flex; gap: 0; }
.subtab {
  padding: 16px 24px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: var(--transition);
  display: flex; align-items: center; gap: 8px;
  background: none; border-top: none; border-left: none; border-right: none;
  white-space: nowrap;
}
.subtab:hover { color: var(--blue); }
.subtab.active { color: var(--navy); border-bottom-color: var(--navy); }

/* ══════════════════════════════════════════════════════
   SUBPAGE CONTENT
══════════════════════════════════════════════════════ */
.subpage-content { display: none; }
.subpage-content.active { display: block; animation: pageIn .3s ease; }

/* ══════════════════════════════════════════════════════
   PACKAGE CARDS
══════════════════════════════════════════════════════ */
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pkg-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex; flex-direction: column;
}
.pkg-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.pkg-card.featured {
  border: 2px solid var(--blue);
  position: relative;
}
.pkg-badge {
  position: absolute;
  top: -1px; right: 20px;
  background: var(--blue);
  color: white;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 0 0 8px 8px;
}
.pkg-head {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  padding: 28px 28px 24px;
}
.pkg-head.alt { background: linear-gradient(135deg, var(--navy-dark), var(--navy)); }
.pkg-head h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 400;
  color: white;
  margin-bottom: 8px;
}
.pkg-price-note { font-size: 13px; color: rgba(208,230,253,.8); }
.pkg-body { padding: 24px 28px; flex: 1; }
.pkg-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 0;
  font-size: 14px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  line-height: 1.4;
}
.pkg-item:last-child { border-bottom: none; }
.pkg-check { color: var(--blue); font-size: 15px; flex-shrink: 0; margin-top: 1px; }
.pkg-footer { padding: 20px 28px; border-top: 1px solid var(--border); }

/* ══════════════════════════════════════════════════════
   PARLOUR CARDS (full page)
══════════════════════════════════════════════════════ */
.parlour-full-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.parlour-full-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.parlour-full-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.parlour-full-img {
  height: 240px;
  overflow: hidden;
}
.parlour-full-img img { width:100%; height:100%; object-fit:cover; transition: transform .5s; }
.parlour-full-card:hover .parlour-full-img img { transform: scale(1.06); }
.parlour-full-body { padding: 28px; }
.parlour-full-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 500; color: var(--navy); margin-bottom: 10px;
}
.parlour-full-body p { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 16px; }
.parlour-amenities { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.amenity-pill {
  background: var(--sky);
  color: var(--navy);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
}

/* ══════════════════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════════════════ */
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--blue); }
.value-icon { font-size: 44px; margin-bottom: 20px; }
.value-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 500; color: var(--navy);
  margin-bottom: 12px;
}
.value-card p { font-size: 14px; color: var(--muted); line-height: 1.75; }

/* ══════════════════════════════════════════════════════
   PLAN & PROCESS PAGE
══════════════════════════════════════════════════════ */
.process-timeline { display: flex; flex-direction: column; gap: 0; }
.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.process-step:last-child { border-bottom: none; }
.step-left { display: flex; flex-direction: column; align-items: center; gap: 0; }
.step-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 400;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.step-line {
  width: 2px;
  flex: 1;
  min-height: 40px;
  background: linear-gradient(var(--blue), var(--sky));
  margin-top: 8px;
}
.process-step:last-child .step-line { display: none; }
.step-right h4 {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 500;
  color: var(--navy); margin-bottom: 10px;
}
.step-right p { font-size: 15px; color: var(--muted); line-height: 1.75; }
.step-tag {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  background: var(--sky); color: var(--navy);
  padding: 4px 12px; border-radius: 20px;
  margin-bottom: 12px;
}

/* ══════════════════════════════════════════════════════
   MORE / CONTACT PAGE
══════════════════════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 420px; gap: 64px; align-items: start; }
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}
.form-group { margin-bottom: 24px; }
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-input, .form-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  color: var(--text);
  background: var(--off-white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-input:focus, .form-textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(79,144,246,.12);
  background: var(--white);
}
.form-textarea { min-height: 160px; resize: vertical; }
.form-success {
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: var(--r);
  padding: 16px 20px;
  color: #166534;
  font-size: 14px;
  margin-top: 16px;
  display: none;
}
.contact-info-card {
  background: var(--navy);
  border-radius: var(--r-lg);
  padding: 36px;
  color: white;
  margin-bottom: 24px;
}
.contact-info-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px; font-weight: 400;
  color: white; margin-bottom: 24px;
}
.contact-detail {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.08);
}
.contact-detail:last-child { border-bottom: none; }
.cd-icon {
  width: 40px; height: 40px;
  background: rgba(208,230,253,.12);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.cd-text strong { display: block; color: white; font-size: 14px; margin-bottom: 3px; }
.cd-text span { font-size: 13px; color: rgba(208,230,253,.7); }
.cd-text a { color: var(--sky); }

/* FAQ */
.faq-list { max-width: 820px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--r);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 24px;
  cursor: pointer;
  background: var(--white);
  transition: background .15s;
  font-weight: 600; font-size: 15px; color: var(--text);
}
.faq-head:hover { background: var(--off-white); }
.faq-icon { font-size: 22px; color: var(--blue); transition: transform .25s; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-body {
  max-height: 0; overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  padding: 0 24px;
  font-size: 14.5px; color: var(--muted); line-height: 1.75;
  background: var(--off-white);
  border-top: 0 solid var(--border);
}
.faq-item.open .faq-body {
  max-height: 400px;
  padding: 20px 24px;
  border-top-width: 1px;
}

/* ══════════════════════════════════════════════════════
   HIGHLIGHT BOX
══════════════════════════════════════════════════════ */
.highlight-box {
  background: linear-gradient(135deg, rgba(208,230,253,.5), rgba(208,230,253,.2));
  border: 1px solid rgba(79,144,246,.2);
  border-left: 4px solid var(--blue);
  border-radius: var(--r);
  padding: 20px 24px;
  margin: 28px 0;
}
.highlight-box p { font-size: 15px; color: var(--navy); line-height: 1.65; }

/* Sidebar sticky card */
.sidebar-sticky { position: sticky; top: 104px; }
.info-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  margin-bottom: 20px;
}
.info-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 500;
  color: var(--navy); margin-bottom: 16px;
}
.info-list-item {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 8px 0; font-size: 14px; color: var(--text);
  border-bottom: 1px solid var(--border);
}
.info-list-item:last-child { border-bottom: none; }

/* ══════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════ */
footer { background: var(--navy-dark); }
.footer-main {
  max-width: 1180px; margin: 0 auto;
  padding: 72px 32px 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand p { font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.8; margin: 20px 0 24px; max-width: 280px; }
.footer-hotline-pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(79,144,246,.2);
  border: 1px solid rgba(79,144,246,.35);
  border-radius: 40px; padding: 10px 20px;
  color: var(--sky); font-size: 14px; font-weight: 700;
}
.footer-col-h {
  font-size: 11px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.4); margin-bottom: 20px;
}
.footer-link {
  display: block; font-size: 14px;
  color: rgba(255,255,255,.55);
  margin-bottom: 12px; cursor: pointer;
  transition: color .2s;
  text-decoration: none;
}
.footer-link:hover { color: var(--sky); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 20px 32px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12.5px; color: rgba(255,255,255,.3);
  max-width: 1180px; margin: 0 auto;
}

/* ══════════════════════════════════════════════════════
   STICKY MOBILE CALL BUTTON
══════════════════════════════════════════════════════ */
.sticky-call {
  display: none;
  position: fixed;
  bottom: 20px; right: 20px;
  z-index: 800;
  background: var(--blue);
  color: white;
  padding: 14px 22px;
  border-radius: 50px;
  font-size: 14px; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase;
  box-shadow: 0 8px 28px rgba(79,144,246,.5);
  align-items: center; gap: 8px;
  text-decoration: none;
  animation: floatUp 3s ease-in-out infinite;
}
@keyframes floatUp {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* ══════════════════════════════════════════════════════
   TWO-COLUMN LAYOUT HELPER
══════════════════════════════════════════════════════ */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.two-col.center { align-items: center; }
@media(max-width:768px){ .two-col { grid-template-columns: 1fr; gap: 40px; } }

/* ══════════════════════════════════════════════════════
   LOCATION POPUP MODAL ANIMATION
══════════════════════════════════════════════════════ */
@keyframes locPopIn {
  from { opacity:0; transform:scale(.93) translateY(12px); }
  to   { opacity:1; transform:none; }
}

/* ══════════════════════════════════════════════════════
   PACKAGES PAGE — ADD-ONS & INCLUDES GRIDS
══════════════════════════════════════════════════════ */
.addons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}
.includes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 860px;
  margin: 0 auto;
}


.pkg-grid--2col {
  grid-template-columns: repeat(2, 1fr);
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
══════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 960px) {
  .nav-links, .nav-hotline-btn { display: none; }
  .hamburger { display: flex; flex-direction: column; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .stat-item:nth-child(2n) { border-right: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-badge { right: 0; bottom: -16px; }
  .parlours-scroll { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .pkg-grid { grid-template-columns: 1fr; }
  .addons-grid { grid-template-columns: repeat(2, 1fr); }
  .parlour-full-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .sticky-call { display: flex; }
  .util-tagline { display: none; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .pkg-grid--2col { grid-template-columns: repeat(2, 1fr); }
  .pkg-grid--2col { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .section { padding: 64px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-content { padding: 60px 20px 80px; }
  .subtabs { overflow-x: auto; }
  .subtab { font-size: 11px; padding: 12px 16px; }
  .stats-inner { grid-template-columns: repeat(2,1fr); padding: 0 20px; }
  .pkg-grid { grid-template-columns: 1fr; }
  .addons-grid { grid-template-columns: 1fr; }
  .includes-grid { grid-template-columns: 1fr; }
}
