/* ============================================================
   MY BEST FRIEND HAWAII — Luxury Boutique Pet Grooming
   Brand: cyan #00B7FF + deep steel blue #006EA5
   Aesthetic: modern, clean, warm, high-end
   ============================================================ */

/* ---------- Fonts ---------- */
/* Display: Cormorant Garamond (modern elegant serif) · Body: Plus Jakarta Sans */

/* ---------- Tokens ---------- */
:root {
  /* Type scale (fluid) */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.85rem);
  --text-sm: clamp(0.85rem, 0.8rem + 0.3vw, 0.95rem);
  --text-base: clamp(1rem, 0.96rem + 0.25vw, 1.1rem);
  --text-lg: clamp(1.15rem, 1rem + 0.6vw, 1.4rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.3vw, 2.25rem);
  --text-2xl: clamp(2.1rem, 1.4rem + 2.6vw, 3.5rem);
  --text-3xl: clamp(2.6rem, 1.3rem + 4.4vw, 5rem);

  /* Spacing (4px base) */
  --space-1: 0.25rem; --space-2: 0.5rem; --space-3: 0.75rem;
  --space-4: 1rem; --space-5: 1.25rem; --space-6: 1.5rem;
  --space-8: 2rem; --space-10: 2.5rem; --space-12: 3rem;
  --space-16: 4rem; --space-20: 5rem; --space-24: 6rem; --space-32: 8rem;

  /* Brand colors */
  --cyan: #00b7ff;
  --cyan-bright: #16c0ff;
  --cyan-soft: #d8f2ff;
  --cyan-mist: #eef9ff;
  --deep: #006ea5;
  --deep-ink: #0a4a6e;

  /* Surfaces — warm cream neutrals */
  --bg: #fbfaf7;
  --surface: #ffffff;
  --surface-2: #f6f4ef;
  --surface-warm: #f3ede4;
  --cream: #f7f1e8;

  /* Text */
  --text: #1f2a33;
  --text-muted: #5d6b75;
  --text-faint: #9aa6ae;
  --text-inverse: #ffffff;

  /* Lines */
  --border: #e7e2d8;
  --divider: #efebe2;

  /* Accent warm gold for luxe detail */
  --gold: #c9a96a;

  --radius-sm: 0.5rem;
  --radius-md: 0.9rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 10px rgba(20, 50, 70, 0.06);
  --shadow-md: 0 10px 30px rgba(20, 50, 70, 0.09);
  --shadow-lg: 0 24px 60px rgba(20, 50, 70, 0.14);
  --shadow-cyan: 0 14px 34px rgba(0, 150, 220, 0.28);

  --transition: 260ms cubic-bezier(0.16, 1, 0.3, 1);

  --content: 1200px;
  --content-narrow: 760px;
  --content-wide: 1360px;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', 'Helvetica Neue', system-ui, sans-serif;
}

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

html {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  min-height: 100dvh;
  line-height: 1.65;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--text);
  background-color: var(--bg);
  overflow-x: hidden;
}

img, picture, video, svg { display: block; max-width: 100%; height: auto; }
ul[role='list'] { list-style: none; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { text-wrap: balance; line-height: 1.08; font-family: var(--font-display); font-weight: 600; letter-spacing: -0.005em; }
p { text-wrap: pretty; }

::selection { background: rgba(0, 183, 255, 0.22); color: var(--text); }
:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; border-radius: var(--radius-sm); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--content); margin-inline: auto; padding-inline: var(--space-6); }
.wrap-wide { max-width: var(--content-wide); }
.wrap-narrow { max-width: var(--content-narrow); }
.section { padding-block: clamp(var(--space-16), 9vw, var(--space-32)); }
.section-sm { padding-block: clamp(var(--space-12), 6vw, var(--space-20)); }

.eyebrow {
  display: inline-flex; align-items: center; gap: var(--space-2);
  font-family: var(--font-body); font-weight: 600;
  font-size: var(--text-xs); letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--deep);
}
.eyebrow::before {
  content: ''; width: 26px; height: 2px; border-radius: 2px;
  background: var(--cyan);
}
.eyebrow.center { justify-content: center; }

.section-head { max-width: 720px; margin-bottom: var(--space-12); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 {
  font-size: var(--text-2xl); margin-top: var(--space-4); color: var(--text);
  letter-spacing: -0.01em;
}
.section-head p { margin-top: var(--space-5); color: var(--text-muted); font-size: var(--text-lg); line-height: 1.6; }

.text-cyan { color: var(--cyan); }
.text-deep { color: var(--deep); }
.italic { font-style: italic; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--space-2);
  font-family: var(--font-body); font-weight: 600; font-size: var(--text-sm);
  letter-spacing: 0.01em; padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-full); transition: var(--transition);
  white-space: nowrap; border: 1.5px solid transparent;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--deep) 130%);
  color: #fff; box-shadow: var(--shadow-cyan);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(0,150,220,0.38); }
.btn-outline { border-color: var(--deep); color: var(--deep); background: transparent; }
.btn-outline:hover { background: var(--deep); color: #fff; transform: translateY(-2px); }
.btn-ghost { color: var(--text); border-color: var(--border); background: var(--surface); }
.btn-ghost:hover { border-color: var(--cyan); color: var(--deep); }
.btn-white { background: #fff; color: var(--deep); box-shadow: var(--shadow-md); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-lg { padding: var(--space-5) var(--space-10); font-size: var(--text-base); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: var(--transition);
  background: rgba(251, 250, 247, 0.72);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-6); height: 76px;
  max-width: var(--content-wide); margin-inline: auto; padding-inline: var(--space-6);
}
.brand { display: flex; align-items: center; gap: var(--space-3); flex-shrink: 0; }
.brand svg, .brand .logo-mark { width: 42px; height: 42px; flex-shrink: 0; }
.brand-name {
  display: flex; flex-direction: column; line-height: 1;
}
.brand-name .bn-1 {
  font-family: var(--font-body); font-weight: 800; font-size: 0.95rem;
  letter-spacing: 0.02em; color: var(--cyan); text-transform: uppercase;
}
.brand-name .bn-2 {
  font-family: var(--font-body); font-weight: 800; font-size: 0.95rem;
  letter-spacing: 0.02em; color: var(--deep); text-transform: uppercase;
}
.nav-links { display: flex; align-items: center; gap: var(--space-1); }
.nav-links a {
  font-family: var(--font-body); font-weight: 500; font-size: var(--text-sm);
  color: var(--text); padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full); transition: var(--transition); position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--deep); background: var(--cyan-mist); }
.nav-right { display: flex; align-items: center; gap: var(--space-3); }

/* Language toggle */
.lang-toggle {
  display: inline-flex; align-items: center; border: 1.5px solid var(--border);
  border-radius: var(--radius-full); overflow: hidden; background: var(--surface);
}
.lang-toggle button {
  font-family: var(--font-body); font-weight: 600; font-size: var(--text-xs);
  padding: var(--space-2) var(--space-3); color: var(--text-muted);
  transition: var(--transition); letter-spacing: 0.04em;
}
.lang-toggle button.active { background: var(--cyan); color: #fff; }

.nav-toggle {
  display: none; width: 44px; height: 44px; align-items: center; justify-content: center;
  border-radius: var(--radius-full); color: var(--deep);
}
.nav-toggle svg { width: 26px; height: 26px; }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 76px 0 0 0; z-index: 999;
  background: var(--bg); padding: var(--space-8) var(--space-6);
  display: flex; flex-direction: column; gap: var(--space-2);
  transform: translateX(100%); transition: var(--transition);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  font-family: var(--font-display); font-size: var(--text-xl); font-weight: 500;
  padding: var(--space-4) 0; border-bottom: 1px solid var(--divider); color: var(--text);
}
.mobile-menu .btn { margin-top: var(--space-6); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 92vh; display: flex; align-items: center;
  padding-top: 76px; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 30% center; }
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.72) 38%, rgba(255,255,255,0.15) 62%, rgba(255,255,255,0) 100%);
}
.hero-inner { position: relative; z-index: 2; max-width: var(--content-wide); margin-inline: auto; padding-inline: var(--space-6); width: 100%; }
.hero-content { max-width: 620px; }
.hero h1 {
  font-size: var(--text-3xl); letter-spacing: -0.02em; color: var(--text);
  margin-top: var(--space-5);
}
.hero h1 .accent { color: var(--cyan); font-style: italic; }
.hero-lede {
  margin-top: var(--space-6); font-size: var(--text-lg); color: var(--text-muted);
  line-height: 1.6; max-width: 30em;
}
.hero-cta { margin-top: var(--space-8); display: flex; flex-wrap: wrap; gap: var(--space-4); }
.hero-meta {
  margin-top: var(--space-10); display: flex; flex-wrap: wrap; gap: var(--space-6);
  align-items: center;
}
.hero-meta .stars { display: flex; gap: 2px; color: var(--gold); }
.hero-meta .stars svg { width: 18px; height: 18px; }
.hero-meta .rating-text { font-size: var(--text-sm); color: var(--text-muted); }
.hero-meta .rating-text strong { color: var(--text); font-weight: 700; }

/* ============================================================
   MARQUEE / TICKER
   ============================================================ */
.ticker {
  background: linear-gradient(135deg, var(--deep) 0%, var(--deep-ink) 100%);
  color: #fff; overflow: hidden; padding-block: var(--space-4);
}
.ticker-track {
  display: flex; gap: var(--space-12); white-space: nowrap; width: max-content;
  animation: ticker 38s linear infinite;
}
.ticker-track span {
  font-family: var(--font-body); font-weight: 600; font-size: var(--text-sm);
  letter-spacing: 0.1em; text-transform: uppercase; display: inline-flex; align-items: center; gap: var(--space-12);
}
.ticker-track span::after { content: '✦'; color: var(--cyan-bright); }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-6);
}
.trust-item { text-align: center; padding: var(--space-6) var(--space-4); }
.trust-item .ti-icon {
  width: 56px; height: 56px; margin: 0 auto var(--space-4); color: var(--cyan);
  display: grid; place-items: center; background: var(--cyan-mist); border-radius: var(--radius-full);
}
.trust-item .ti-icon svg { width: 28px; height: 28px; }
.trust-item h3 { font-family: var(--font-body); font-weight: 700; font-size: var(--text-base); color: var(--text); }
.trust-item p { font-size: var(--text-sm); color: var(--text-muted); margin-top: var(--space-1); }

/* ============================================================
   CARDS / SERVICES
   ============================================================ */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: var(--space-6); }
.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: var(--space-8); transition: var(--transition); position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--cyan-soft); }
.card .c-icon {
  width: 60px; height: 60px; border-radius: var(--radius-md); display: grid; place-items: center;
  background: linear-gradient(135deg, var(--cyan-mist), var(--cyan-soft)); color: var(--deep);
  margin-bottom: var(--space-5);
}
.card .c-icon svg { width: 30px; height: 30px; }
.card h3 { font-size: var(--text-lg); color: var(--text); margin-bottom: var(--space-3); }
.card p { color: var(--text-muted); font-size: var(--text-sm); line-height: 1.6; }

/* ============================================================
   FEATURE SPLIT (image + text)
   ============================================================ */
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(var(--space-8), 5vw, var(--space-20));
  align-items: center;
}
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.split-media.tall img { aspect-ratio: 3/4; }
.split-badge {
  position: absolute; bottom: var(--space-6); left: var(--space-6);
  background: rgba(255,255,255,0.94); backdrop-filter: blur(8px);
  padding: var(--space-4) var(--space-5); border-radius: var(--radius-md); box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: var(--space-3);
}
.split-badge .sb-num { font-family: var(--font-display); font-size: var(--text-xl); color: var(--cyan); font-weight: 600; }
.split-badge .sb-label { font-size: var(--text-xs); color: var(--text-muted); line-height: 1.3; }
.split-content h2 { font-size: var(--text-2xl); color: var(--text); margin-top: var(--space-4); letter-spacing: -0.01em; }
.split-content p { color: var(--text-muted); margin-top: var(--space-5); line-height: 1.7; }
.split-content .lead { font-size: var(--text-lg); color: var(--text); }

.check-list { margin-top: var(--space-6); display: flex; flex-direction: column; gap: var(--space-3); }
.check-list li { display: flex; gap: var(--space-3); align-items: flex-start; font-size: var(--text-base); color: var(--text); }
.check-list li svg { width: 22px; height: 22px; color: var(--cyan); flex-shrink: 0; margin-top: 2px; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid {
  columns: 3; column-gap: var(--space-4);
}
.gallery-grid figure {
  break-inside: avoid; margin-bottom: var(--space-4); border-radius: var(--radius-md);
  overflow: hidden; position: relative; cursor: pointer; box-shadow: var(--shadow-sm);
}
.gallery-grid img { width: 100%; transition: transform 500ms cubic-bezier(0.16,1,0.3,1); }
.gallery-grid figure:hover img { transform: scale(1.05); }
.gallery-grid figure::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,74,110,0.25), transparent 50%);
  opacity: 0; transition: var(--transition);
}
.gallery-grid figure:hover::after { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 2000; background: rgba(15, 30, 40, 0.92);
  display: none; align-items: center; justify-content: center; padding: var(--space-8);
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 86vh; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); }
.lightbox-close {
  position: absolute; top: var(--space-6); right: var(--space-6); width: 48px; height: 48px;
  border-radius: var(--radius-full); background: rgba(255,255,255,0.15); color: #fff;
  display: grid; place-items: center;
}
.lightbox-close svg { width: 26px; height: 26px; }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px;
  border-radius: var(--radius-full); background: rgba(255,255,255,0.15); color: #fff;
  display: grid; place-items: center;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.28); }
.lightbox-nav.prev { left: var(--space-6); }
.lightbox-nav.next { right: var(--space-6); }
.lightbox-nav svg { width: 28px; height: 28px; }

/* ============================================================
   REVIEWS
   ============================================================ */
.review-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: var(--space-6); }
.review-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: var(--space-8); display: flex; flex-direction: column; gap: var(--space-4);
  transition: var(--transition);
}
.review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.review-card .stars { display: flex; gap: 2px; color: var(--gold); }
.review-card .stars svg { width: 18px; height: 18px; }
.review-card .quote { color: var(--text); font-size: var(--text-base); line-height: 1.7; flex-grow: 1; }
.review-card .reviewer { display: flex; align-items: center; gap: var(--space-3); margin-top: var(--space-2); }
.review-card .avatar {
  width: 44px; height: 44px; border-radius: var(--radius-full); display: grid; place-items: center;
  background: linear-gradient(135deg, var(--cyan), var(--deep)); color: #fff; font-weight: 700; font-size: var(--text-base);
  flex-shrink: 0;
}
.review-card .r-name { font-weight: 700; font-size: var(--text-sm); color: var(--text); }
.review-card .r-meta { font-size: var(--text-xs); color: var(--text-faint); }

.rating-banner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: var(--space-8);
  background: linear-gradient(135deg, var(--cyan-mist), var(--surface)); border: 1px solid var(--cyan-soft);
  border-radius: var(--radius-lg); padding: var(--space-10); text-align: center;
}
.rating-banner .big { font-family: var(--font-display); font-size: var(--text-3xl); color: var(--deep); font-weight: 600; line-height: 1; }
.rating-banner .stars { display: flex; gap: 3px; color: var(--gold); justify-content: center; margin-top: var(--space-2); }
.rating-banner .stars svg { width: 22px; height: 22px; }
.rating-banner .rb-sep { width: 1px; height: 64px; background: var(--border); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { display: flex; flex-direction: column; gap: var(--space-3); max-width: 840px; margin-inline: auto; }
.faq-item {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md);
  overflow: hidden; transition: var(--transition);
}
.faq-item[open] { border-color: var(--cyan-soft); box-shadow: var(--shadow-sm); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: var(--space-6); display: flex;
  align-items: center; justify-content: space-between; gap: var(--space-4);
  font-family: var(--font-body); font-weight: 600; font-size: var(--text-lg); color: var(--text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .faq-icon { flex-shrink: 0; width: 28px; height: 28px; color: var(--cyan); transition: var(--transition); }
.faq-item[open] summary .faq-icon { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 var(--space-6) var(--space-6); color: var(--text-muted); line-height: 1.7; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  position: relative; overflow: hidden; border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--cyan) 0%, var(--deep) 100%);
  padding: clamp(var(--space-12), 7vw, var(--space-24)); text-align: center; color: #fff;
}
.cta-band::before {
  content: ''; position: absolute; top: -40%; right: -10%; width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(255,255,255,0.18), transparent 70%); border-radius: 50%;
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { font-size: var(--text-2xl); color: #fff; letter-spacing: -0.01em; }
.cta-band p { margin-top: var(--space-4); font-size: var(--text-lg); color: rgba(255,255,255,0.9); max-width: 36em; margin-inline: auto; }
.cta-band .hero-cta { justify-content: center; margin-top: var(--space-8); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(var(--space-8), 5vw, var(--space-16)); align-items: start; }
.info-row { display: flex; gap: var(--space-4); padding: var(--space-5) 0; border-bottom: 1px solid var(--divider); align-items: flex-start; }
.info-row:last-child { border-bottom: 0; }
.info-row .ir-icon {
  width: 48px; height: 48px; border-radius: var(--radius-md); flex-shrink: 0;
  background: var(--cyan-mist); color: var(--deep); display: grid; place-items: center;
}
.info-row .ir-icon svg { width: 24px; height: 24px; }
.info-row .ir-label { font-size: var(--text-xs); text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-faint); font-weight: 600; }
.info-row .ir-value { font-size: var(--text-lg); color: var(--text); font-weight: 500; margin-top: 2px; }
.info-row .ir-value a:hover { color: var(--deep); }
.map-card { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--border); }
.map-card iframe { width: 100%; height: 100%; min-height: 480px; border: 0; display: block; }

.hours-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: var(--space-8);
}
.hours-card h3 { font-family: var(--font-body); font-weight: 700; font-size: var(--text-lg); margin-bottom: var(--space-4); }
.hours-row { display: flex; justify-content: space-between; padding: var(--space-3) 0; border-bottom: 1px solid var(--divider); font-size: var(--text-sm); }
.hours-row:last-child { border-bottom: 0; }
.hours-row .day { color: var(--text-muted); }
.hours-row .time { font-weight: 600; color: var(--text); }

/* ============================================================
   PAGE HEADER (interior pages)
   ============================================================ */
.page-hero {
  padding-top: calc(76px + var(--space-16)); padding-bottom: var(--space-16);
  text-align: center; position: relative; overflow: hidden;
  background: linear-gradient(180deg, var(--cyan-mist) 0%, var(--bg) 100%);
}
.page-hero h1 { font-size: var(--text-3xl); letter-spacing: -0.02em; color: var(--text); }
.page-hero p { margin-top: var(--space-5); font-size: var(--text-lg); color: var(--text-muted); max-width: 40em; margin-inline: auto; }
.page-hero .breadcrumb { font-size: var(--text-xs); letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-faint); margin-bottom: var(--space-5); }
.page-hero .breadcrumb a:hover { color: var(--deep); }

/* ============================================================
   STYLE GUIDE (services detail rows)
   ============================================================ */
.style-row {
  display: grid; grid-template-columns: 120px 1fr; gap: var(--space-8); align-items: start;
  padding: var(--space-8) 0; border-bottom: 1px solid var(--divider);
}
.style-row:last-child { border-bottom: 0; }
.style-row .sr-num { font-family: var(--font-display); font-size: var(--text-2xl); color: var(--cyan-soft); font-weight: 600; }
.style-row h3 { font-size: var(--text-xl); color: var(--text); margin-bottom: var(--space-3); }
.style-row p { color: var(--text-muted); line-height: 1.7; }

.price-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: var(--space-8); transition: var(--transition);
}
.price-card.featured { border-color: var(--cyan); box-shadow: var(--shadow-cyan); position: relative; }
.price-card.featured::before {
  content: 'Most Popular'; position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--cyan); color: #fff; font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.06em;
  padding: var(--space-1) var(--space-4); border-radius: var(--radius-full); white-space: nowrap;
}
.price-card h3 { font-family: var(--font-body); font-weight: 700; font-size: var(--text-lg); }
.price-card .price { font-family: var(--font-display); font-size: var(--text-2xl); color: var(--deep); margin: var(--space-3) 0; font-weight: 600; }
.price-card .price small { font-family: var(--font-body); font-size: var(--text-sm); color: var(--text-faint); font-weight: 400; }
.price-card ul { list-style: none; display: flex; flex-direction: column; gap: var(--space-3); margin: var(--space-6) 0; }
.price-card ul li { display: flex; gap: var(--space-2); font-size: var(--text-sm); color: var(--text-muted); align-items: flex-start; }
.price-card ul li svg { width: 18px; height: 18px; color: var(--cyan); flex-shrink: 0; margin-top: 3px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: linear-gradient(180deg, var(--surface-2), var(--cream)); border-top: 1px solid var(--border); padding-top: var(--space-20); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: var(--space-10); padding-bottom: var(--space-16); }
.footer-brand img { height: 56px; width: auto; margin-bottom: var(--space-5); }
.footer-brand p { color: var(--text-muted); font-size: var(--text-sm); line-height: 1.7; max-width: 30em; }
.footer-social { display: flex; gap: var(--space-3); margin-top: var(--space-6); }
.footer-social a {
  width: 44px; height: 44px; border-radius: var(--radius-full); border: 1px solid var(--border);
  display: grid; place-items: center; color: var(--deep); transition: var(--transition);
}
.footer-social a:hover { background: var(--cyan); color: #fff; border-color: var(--cyan); transform: translateY(-2px); }
.footer-social svg { width: 20px; height: 20px; }
.footer-col h4 { font-family: var(--font-body); font-weight: 700; font-size: var(--text-sm); text-transform: uppercase; letter-spacing: 0.08em; color: var(--text); margin-bottom: var(--space-5); }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: var(--space-3); }
.footer-col a { color: var(--text-muted); font-size: var(--text-sm); transition: var(--transition); }
.footer-col a:hover { color: var(--deep); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-block: var(--space-6);
  display: flex; flex-wrap: wrap; gap: var(--space-4); justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: var(--text-xs); color: var(--text-faint); }
.footer-bottom a { color: var(--text-faint); font-size: var(--text-xs); }
.footer-bottom a:hover { color: var(--deep); }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 700ms cubic-bezier(0.16,1,0.3,1), transform 700ms cubic-bezier(0.16,1,0.3,1); }
.no-js .reveal { opacity: 1; transform: none; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 80ms; }
.reveal.d2 { transition-delay: 160ms; }
.reveal.d3 { transition-delay: 240ms; }

/* ============================================================
   LANGUAGE VISIBILITY
   ============================================================ */
[data-lang='ko'] .en { display: none; }
[data-lang='en'] .ko { display: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-10); }
  .footer-brand { grid-column: 1 / -1; }
  .trust { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .split { grid-template-columns: 1fr; gap: var(--space-8); }
  .split.reverse .split-media { order: 0; }
  .split-media img { aspect-ratio: 16/11; }
  .split-media.tall img { aspect-ratio: 4/3; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-grid { columns: 2; }
  .style-row { grid-template-columns: 1fr; gap: var(--space-3); }
  .rating-banner .rb-sep { display: none; }
}
@media (max-width: 540px) {
  .wrap { padding-inline: var(--space-5); }
  .trust { grid-template-columns: 1fr; }
  .gallery-grid { columns: 1; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .brand-name { display: none; }
}
