/* ============================================================
   Trinity Thai Spa — main stylesheet
   ============================================================ */

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
img, picture, video, svg { display: block; max-width: 100%; height: auto; }
button { background: none; border: 0; font: inherit; color: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
input, select, textarea { font: inherit; color: inherit; }

/* ── Tokens ─────────────────────────────────────────────── */
:root {
  --bg:        #0a0a0a;
  --bg-dark:   #0d0d0d;
  --bg-card:   #111111;
  --bg-cream:  #f5efe6;
  --text:      #ffffff;
  --text-mute: rgba(255,255,255,0.65);
  --text-soft: rgba(255,255,255,0.85);
  --primary:   #c9a84c;
  --primary-soft: rgba(201,168,76,0.10);
  --primary-bd: rgba(201,168,76,0.30);
  --primary-line: rgba(201,168,76,0.20);
  --green:     #16a34a;
  --green-h:   #15803d;
  --border:    rgba(255,255,255,0.10);
  --border-light: rgba(0,0,0,0.10);
  --black:     #000;
  --serif:     'Cormorant Garamond', Georgia, serif;
  --sans:      'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --container: 1200px;
}

/* ── Base ───────────────────────────────────────────────── */
body {
  font-family: var(--sans);
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 0;
}
body.has-mobile-bar { padding-bottom: 64px; }
@media (min-width: 768px) { body.has-mobile-bar { padding-bottom: 0; } }

.serif { font-family: var(--serif); }
.uppercase { text-transform: uppercase; letter-spacing: 0.18em; }
.text-primary { color: var(--primary); }
.text-mute { color: var(--text-mute); }
.text-soft { color: var(--text-soft); }
.text-white { color: #fff; }
.text-black { color: #000; }
.text-center { text-align: center; }

/* ── Layout helpers ─────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1rem;
}
.container-sm { max-width: 720px; }
.container-md { max-width: 900px; }
.container-lg { max-width: 1024px; }

.section { padding: 4rem 0; }
.section-sm { padding: 2.5rem 0; }
.section-lg { padding: 5rem 0; }
.section-bg-card { background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-cream { background: var(--bg-cream); color: #1a1a1a; }
.section-cream .text-mute { color: rgba(0,0,0,0.6); }
.section-cream .text-primary { color: #b08a2e; }
.section-cream a { color: #b08a2e; }
@media (min-width: 768px) { .section { padding: 5rem 0; } .section-lg { padding: 7rem 0; } }

/* Grids */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }
@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-sm-3 { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 768px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

.mt-2 { margin-top: 0.5rem; } .mt-4 { margin-top: 1rem; } .mt-6 { margin-top: 1.5rem; } .mt-8 { margin-top: 2rem; } .mt-12 { margin-top: 3rem; }
.mb-2 { margin-bottom: 0.5rem; } .mb-3 { margin-bottom: 0.75rem; } .mb-4 { margin-bottom: 1rem; } .mb-6 { margin-bottom: 1.5rem; } .mb-8 { margin-bottom: 2rem; } .mb-12 { margin-bottom: 3rem; } .mb-16 { margin-bottom: 4rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4, h5 { font-family: var(--serif); font-weight: 700; line-height: 1.15; color: #fff; }
.section-cream h1, .section-cream h2, .section-cream h3, .section-cream h4 { color: #1a1a1a; }
.h-display { font-size: clamp(2.4rem, 6vw, 4.5rem); }
.h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
.h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); }
.h3 { font-size: clamp(1.3rem, 3vw, 1.7rem); }
.h4 { font-size: 1.15rem; }
p { color: var(--text-mute); }
.lead { font-size: 1.125rem; line-height: 1.7; color: var(--text-soft); }
.kicker { font-family: var(--sans); text-transform: uppercase; letter-spacing: 0.22em; font-size: 0.75rem; color: var(--primary); font-weight: 600; }
.eyebrow {
  display: inline-block; padding: 0.4rem 1rem;
  border: 1px solid var(--primary-bd); color: var(--primary);
  font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase;
  border-radius: 999px; background: var(--primary-soft);
  font-weight: 600;
}
.divider {
  height: 1px; background: var(--primary-line); width: 60px; margin: 1.5rem auto;
}
.divider-left { margin-left: 0; margin-right: 0; }

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.85rem 1.5rem; border-radius: 4px;
  font-weight: 700; font-size: 0.95rem;
  transition: all 0.2s ease;
  text-align: center; white-space: nowrap;
  cursor: pointer; border: 1px solid transparent;
  font-family: var(--sans);
}
.btn-lg { padding: 1.05rem 2rem; font-size: 1rem; }
.btn-block { width: 100%; }
.btn-primary { background: var(--primary); color: #000; border-color: var(--primary); }
.btn-primary:hover { background: #b89339; }
.btn-green { background: var(--green); color: #fff; border-color: var(--green); }
.btn-green:hover { background: var(--green-h); }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.3); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-outline-primary { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline-primary:hover { background: var(--primary); color: #000; }
.btn-ghost { background: transparent; color: var(--primary); padding: 0.4rem 0.6rem; }
.btn-ghost:hover { color: #fff; }

.icon { width: 1.1em; height: 1.1em; flex-shrink: 0; }
.icon-sm { width: 1em; height: 1em; }

/* ── Header ─────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.75rem 0;
  gap: 1rem;
}
.brand { display: flex; align-items: center; gap: 0.6rem; }
.brand img { height: 44px; width: auto; }
.brand-text { font-family: var(--serif); font-size: 1.15rem; font-weight: 700; color: var(--primary); }
.brand-sub { display: block; font-family: var(--sans); font-size: 0.65rem; letter-spacing: 0.2em; color: var(--text-mute); text-transform: uppercase; font-weight: 500; }

.nav-desktop { display: none; }
@media (min-width: 1024px) {
  .nav-desktop { display: flex; gap: 1.6rem; align-items: center; }
}
.nav-desktop a { font-size: 0.85rem; font-weight: 500; color: rgba(255,255,255,0.85); transition: color 0.2s; }
.nav-desktop a:hover { color: var(--primary); }
.nav-desktop .active { color: var(--primary); }
.nav-item { position: relative; }
.nav-item:hover .dropdown { display: block; }
.dropdown {
  display: none;
  position: absolute; top: 100%; left: 0;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 4px; min-width: 240px;
  padding: 0.4rem 0;
  box-shadow: 0 6px 30px rgba(0,0,0,0.5);
  margin-top: 0.5rem;
}
.dropdown a { display: block; padding: 0.6rem 1rem; font-size: 0.85rem; }
.dropdown a:hover { background: rgba(201,168,76,0.08); color: var(--primary); }

.header-cta { display: none; gap: 0.6rem; align-items: center; }
@media (min-width: 1024px) { .header-cta { display: flex; } }
.header-cta .btn { padding: 0.55rem 0.95rem; font-size: 0.8rem; }

.menu-toggle {
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px;
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--primary);
}
@media (min-width: 1024px) { .menu-toggle { display: none; } }

.mobile-menu {
  display: none;
  border-top: 1px solid var(--border);
  background: var(--bg-card);
  padding: 1rem;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 0.85rem 0.5rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
.mobile-menu a:last-child { border-bottom: 0; }
.mobile-menu .menu-cta { display: flex; flex-direction: column; gap: 0.5rem; padding-top: 1rem; }
.mobile-menu .menu-group-label { color: var(--primary); font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; padding: 0.85rem 0.5rem 0.35rem; border-bottom: 0; font-weight: 700; }
.mobile-menu .menu-sub a { padding-left: 1.2rem; font-size: 0.9rem; color: var(--text-mute); }

/* ── Footer ─────────────────────────────────────────────── */
.site-footer {
  background: #060606;
  border-top: 1px solid var(--primary-line);
  padding: 4rem 0 1.5rem;
  color: var(--text-mute);
}
.footer-grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.footer-col h4 { color: var(--primary); font-size: 1rem; margin-bottom: 1rem; font-family: var(--sans); font-weight: 700; letter-spacing: 0.06em; }
.footer-col a, .footer-col p { color: rgba(255,255,255,0.55); font-size: 0.88rem; transition: color 0.2s; line-height: 1.8; }
.footer-col a:hover { color: var(--primary); }
.footer-col ul li { margin-bottom: 0.45rem; }
.footer-bottom {
  margin-top: 3rem; padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 0.5rem;
  align-items: center; text-align: center;
  font-size: 0.78rem; color: rgba(255,255,255,0.4);
}
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

/* ── Mobile bottom bar ──────────────────────────────────── */
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  background: var(--bg-dark);
  border-top: 1px solid var(--primary-line);
}
@media (min-width: 768px) { .mobile-bar { display: none; } }
.mobile-bar a {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 0.7rem 0.4rem;
  font-size: 0.7rem; gap: 0.2rem;
  color: var(--text);
  border-right: 1px solid var(--border);
}
.mobile-bar a:last-child { border-right: 0; }
.mobile-bar .ic { width: 1.4rem; height: 1.4rem; color: var(--primary); }
.mobile-bar .bar-call .ic { color: var(--primary); }
.mobile-bar .bar-wa { background: var(--green); color: #fff; }
.mobile-bar .bar-wa .ic { color: #fff; }
.mobile-bar .bar-dir .ic { color: var(--primary); }

/* ── Floating WhatsApp ──────────────────────────────────── */
.float-wa {
  position: fixed; bottom: 80px; right: 16px; z-index: 39;
  width: 54px; height: 54px;
  background: var(--green); color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(22,163,74,0.5);
  transition: transform 0.2s;
}
.float-wa:hover { transform: scale(1.07); }
.float-wa svg { width: 28px; height: 28px; }
@media (min-width: 768px) { .float-wa { bottom: 24px; right: 24px; } }

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  text-align: center;
}
.hero-sm { min-height: 60vh; }
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.55), rgba(0,0,0,0.7) 50%, rgba(0,0,0,0.85));
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 4rem 1rem 5rem;
  width: 100%;
}
.hero h1 { color: #fff; margin-bottom: 1rem; }
.hero .subtitle {
  color: var(--text-soft);
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  max-width: 700px; margin: 0 auto 2rem;
  font-weight: 400;
}
.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 0.75rem;
  justify-content: center; margin-top: 2rem;
}
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 0.6rem;
  justify-content: center;
  margin-top: 2rem;
  font-size: 0.78rem; color: rgba(255,255,255,0.6);
}
.hero-meta-pill {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
}

/* ── Cards ──────────────────────────────────────────────── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
}
.card:hover { border-color: var(--primary-bd); }
.card-pad { padding: 1.5rem; }
.card-pad-lg { padding: 2rem; }
.card-cream {
  background: #fff; border: 1px solid rgba(0,0,0,0.08); color: #1a1a1a;
  border-radius: 8px; padding: 2rem;
}
.card-cream h3 { color: #1a1a1a; }
.card-cream p { color: rgba(0,0,0,0.65); }

/* Service card (image + label) */
.service-card { position: relative; aspect-ratio: 4/5; overflow: hidden; border-radius: 6px; }
.service-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.service-card:hover img { transform: scale(1.06); }
.service-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.25rem;
}
.service-card-name { font-family: var(--serif); font-size: 1.4rem; font-weight: 700; color: #fff; margin-bottom: 0.6rem; }
.service-card-cta {
  display: inline-flex; align-items: center; gap: 0.3rem;
  font-size: 0.78rem; color: var(--primary); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
}

/* Trust badge */
.trust-badge {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 8px; padding: 1.5rem 1rem;
  text-align: center;
  transition: border-color 0.25s, transform 0.25s;
}
.trust-badge:hover { border-color: var(--primary-bd); transform: translateY(-3px); }
.trust-badge .badge-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center;
  background: var(--primary-soft);
  color: var(--primary);
}
.trust-badge .badge-icon svg { width: 28px; height: 28px; }
.trust-badge h4 { font-family: var(--sans); font-size: 0.95rem; color: #fff; margin-bottom: 0.4rem; }
.trust-badge p { font-size: 0.8rem; color: var(--text-mute); }

/* Pricing item */
.price-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px; padding: 1.5rem;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1rem;
  transition: border-color 0.2s, transform 0.2s;
}
.price-item:hover { border-color: var(--primary-bd); }
.price-item .info h4 { font-family: var(--sans); font-size: 1.05rem; color: #fff; margin-bottom: 0.25rem; }
.price-item .info span { color: var(--text-mute); font-size: 0.85rem; }
.price-item .price { font-family: var(--serif); font-size: 1.8rem; color: var(--primary); font-weight: 700; }

/* Plan card */
.plan {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px; padding: 2rem;
  position: relative;
  display: flex; flex-direction: column;
}
.plan.featured { border-color: var(--primary); transform: scale(1.02); }
.plan-tag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--primary); color: #000;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em;
  padding: 0.3rem 0.85rem; border-radius: 999px; text-transform: uppercase;
}
.plan h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.plan-price { font-family: var(--serif); font-size: 2.4rem; color: var(--primary); font-weight: 700; margin-bottom: 0.25rem; }
.plan-sessions { color: var(--text-mute); font-size: 0.9rem; margin-bottom: 1.5rem; }
.plan-features { flex: 1; margin-bottom: 1.5rem; }
.plan-features li {
  padding: 0.4rem 0; color: var(--text-soft); font-size: 0.9rem;
  display: flex; align-items: flex-start; gap: 0.5rem;
}
.plan-features li::before { content: '✓'; color: var(--primary); font-weight: 700; }

/* Review card */
.review {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px; padding: 2rem;
}
.review .stars { color: var(--primary); margin-bottom: 0.6rem; letter-spacing: 0.1em; }
.review .quote { font-family: var(--serif); font-style: italic; font-size: 1.08rem; color: var(--text-soft); margin-bottom: 1.25rem; line-height: 1.6; }
.review .author {
  display: flex; align-items: center; gap: 0.75rem;
}
.review .avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--primary); color: #000;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
}
.review .author-name { color: #fff; font-weight: 600; font-size: 0.92rem; }

/* Accordion */
.accordion-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 0.75rem;
  overflow: hidden;
}
.accordion-toggle {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%;
  padding: 1.1rem 1.25rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.98rem;
  color: #fff;
  transition: color 0.2s;
}
.accordion-toggle:hover { color: var(--primary); }
.accordion-toggle .ico { font-size: 1.6rem; color: var(--text-mute); transition: transform 0.2s; }
.accordion-item.open .accordion-toggle .ico { color: var(--primary); }
.accordion-body {
  display: none;
  padding: 0 1.25rem 1.25rem;
  color: var(--text-mute);
  font-size: 0.92rem;
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}
.accordion-item.open .accordion-body { display: block; }

/* Filter chips */
.chip-row { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin-bottom: 2rem; }
.chip {
  padding: 0.55rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: transparent; color: var(--text-soft);
  font-size: 0.85rem; cursor: pointer;
  transition: all 0.2s;
}
.chip:hover { border-color: var(--primary-bd); color: var(--primary); }
.chip.active { background: var(--primary); color: #000; border-color: var(--primary); font-weight: 600; }

/* CTA banner */
.cta-banner {
  background: var(--bg-card);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 4rem 0;
  text-align: center;
}
.cta-banner h2 { margin-bottom: 1rem; }

/* Map */
.map-frame {
  border-radius: 8px; overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 16 / 7;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }

/* Carousel */
.carousel { position: relative; }
.carousel-track {
  display: flex; gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 1rem;
  -ms-overflow-style: none; scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-track > * {
  flex: 0 0 85%;
  scroll-snap-align: start;
}
@media (min-width: 640px) { .carousel-track > * { flex-basis: 45%; } }
@media (min-width: 1024px) { .carousel-track > * { flex-basis: 31%; } }
.carousel-controls {
  display: flex; gap: 0.5rem; justify-content: center; margin-top: 1.25rem;
}
.carousel-btn {
  width: 40px; height: 40px;
  border: 1px solid var(--primary-bd); color: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.carousel-btn:hover { background: var(--primary); color: #000; }

/* Package card */
.package-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  display: flex; flex-direction: column;
}
.package-card .img {
  aspect-ratio: 16/10; overflow: hidden;
}
.package-card .img img { width: 100%; height: 100%; object-fit: cover; }
.package-card .body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; gap: 0.5rem; }
.package-card h3 { font-size: 1.25rem; }
.package-card .duration { color: var(--text-mute); font-size: 0.85rem; }
.package-card .price { font-family: var(--serif); font-size: 1.6rem; color: var(--primary); font-weight: 700; margin-top: auto; }

/* Bordered/highlighted block */
.highlight-row {
  background: var(--bg-card);
  border: 1px solid var(--primary-bd);
  border-radius: 6px;
  padding: 1rem 1.25rem;
  margin-bottom: 0.75rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 0.5rem;
}

/* Comparison table */
.comparison-table {
  width: 100%; border-collapse: collapse;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 8px; overflow: hidden;
}
.comparison-table th, .comparison-table td {
  padding: 1rem; text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
}
.comparison-table th { color: var(--primary); text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.78rem; }
.comparison-table td:last-child { color: var(--primary); font-weight: 700; text-align: right; }
.comparison-table tr:last-child td { border-bottom: 0; }

/* Pillars / icon grid */
.pillar {
  text-align: center; padding: 2rem 1rem;
}
.pillar .pillar-icon { font-size: 2.6rem; margin-bottom: 0.6rem; }
.pillar h3 { font-size: 1.25rem; margin-bottom: 0.6rem; }
.pillar p { color: var(--text-mute); font-size: 0.92rem; }

/* Timeline */
.timeline { position: relative; max-width: 700px; margin: 0 auto; padding-left: 2.5rem; }
.timeline::before {
  content: ''; position: absolute; left: 8px; top: 0; bottom: 0;
  width: 2px; background: var(--primary-bd);
}
.tl-item { position: relative; padding-bottom: 2rem; }
.tl-item::before {
  content: ''; position: absolute; left: -2.5rem; top: 4px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--primary); border: 4px solid var(--bg-dark);
}
.tl-year { color: var(--primary); font-weight: 700; font-size: 1.1rem; margin-bottom: 0.4rem; }

/* Team */
.team-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 8px; padding: 1.75rem;
  text-align: center;
}
.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  background: var(--primary); color: #000;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 2rem; font-weight: 700;
}
.team-card h3 { font-size: 1.2rem; margin-bottom: 0.25rem; }
.team-card .role { color: var(--primary); font-size: 0.85rem; margin-bottom: 0.6rem; }

/* Image gallery */
.gallery { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .gallery { grid-template-columns: repeat(4, 1fr); } }
.gallery img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 6px; }

/* Visit us split */
.visit-grid {
  display: grid; grid-template-columns: 1fr;
  border-top: 1px solid var(--primary-line);
  border-bottom: 1px solid var(--primary-line);
}
@media (min-width: 768px) { .visit-grid { grid-template-columns: 1.4fr 1fr; } }
.visit-col { padding: 2rem 1.5rem; }
@media (min-width: 768px) { .visit-col { padding: 3rem 2.5rem; } }
.visit-col + .visit-col { border-top: 1px solid var(--border); }
@media (min-width: 768px) { .visit-col + .visit-col { border-top: 0; border-left: 1px solid var(--border); } }

/* Forms / inputs */
.input, .select, .textarea {
  width: 100%; padding: 0.85rem 1rem;
  background: var(--bg-card); color: #fff;
  border: 1px solid var(--border); border-radius: 6px;
  font-size: 0.95rem;
}
.input:focus, .select:focus, .textarea:focus { outline: 0; border-color: var(--primary); }
.label { display: block; font-size: 0.85rem; color: var(--text-soft); margin-bottom: 0.4rem; }

/* Hidden helper */
.sr-only {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
  border: 0;
}

/* Blog category badges */
.cat-badge {
  display: inline-block; padding: 0.2rem 0.7rem; border-radius: 999px;
  font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em;
  color: #fff;
}
.cat-red { background: #b91c1c; }
.cat-blue { background: #1d4ed8; }
.cat-purple { background: #7e22ce; }
.cat-amber { background: #b45309; }
.cat-pink { background: #be185d; }
.cat-green { background: #15803d; }
.cat-cyan { background: #0e7490; }
.cat-yellow { background: #a16207; }
.cat-orange { background: #c2410c; }

/* Blog card */
.blog-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 8px; overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color 0.25s, transform 0.25s;
}
.blog-card:hover { border-color: var(--primary-bd); transform: translateY(-3px); }
.blog-card .img { aspect-ratio: 16/10; overflow: hidden; }
.blog-card .img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.blog-card:hover .img img { transform: scale(1.06); }
.blog-card .body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; gap: 0.6rem; }
.blog-card h3 { font-size: 1.2rem; line-height: 1.3; }
.blog-card .meta { display: flex; align-items: center; gap: 0.6rem; flex-wrap: wrap; font-size: 0.78rem; color: var(--text-mute); }

/* Footer strip */
.footer-strip {
  background: #0a0808; border-top: 1px solid var(--primary-line);
  padding: 2.5rem 0;
}
.strip-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; text-align: center; }
@media (min-width: 768px) { .strip-grid { grid-template-columns: repeat(3, 1fr); } }

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.7s ease both; }

/* Misc utility */
.bg-card { background: var(--bg-card); }
.bg-dark { background: var(--bg-dark); }
.bg-cream { background: var(--bg-cream); color: #1a1a1a; }
.border-t { border-top: 1px solid var(--border); }
.border-b { border-bottom: 1px solid var(--border); }
.rounded { border-radius: 8px; }
.rounded-full { border-radius: 999px; }
.shadow { box-shadow: 0 4px 24px rgba(0,0,0,0.4); }
.full-img { width: 100%; height: 100%; object-fit: cover; }

/* Service detail benefit list */
.benefit-list li {
  display: flex; align-items: flex-start; gap: 0.85rem;
  padding: 0.6rem 0;
  color: var(--text-soft);
}
.benefit-list li::before {
  content: ''; flex-shrink: 0;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--primary-soft);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23c9a84c' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-repeat: no-repeat; background-position: center;
  margin-top: 0.15rem;
}
.dot-list li {
  display: flex; align-items: center; gap: 0.85rem;
  color: var(--text-mute); padding: 0.5rem 0;
}
.dot-list li::before {
  content: ''; flex-shrink: 0;
  width: 8px; height: 8px; border-radius: 50%; background: var(--primary);
}

/* Contact details list */
.contact-row {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.25rem; background: var(--bg-card);
  border: 1px solid var(--border); border-radius: 8px;
  margin-bottom: 0.75rem;
}
.contact-row .ic-wrap {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--primary-soft); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-row h4 { font-family: var(--sans); font-size: 0.95rem; margin-bottom: 0.25rem; }
.contact-row .v { color: var(--text-mute); font-size: 0.9rem; }

/* Landing minimal */
.landing-header {
  background: var(--bg-dark);
  border-bottom: 1px solid var(--border);
  padding: 0.85rem 0;
}
.landing-header-inner {
  display: flex; align-items: center; justify-content: space-between;
}
.landing-footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--primary-line);
  padding: 2rem 0;
  text-align: center;
  color: var(--text-mute);
  font-size: 0.85rem;
}
.landing-footer a { color: var(--primary); }

/* Force full image in img-only sections */
.img-cover { width: 100%; height: 100%; object-fit: cover; }

/* Article body */
.article-body { font-size: 1.05rem; color: var(--text-soft); line-height: 1.8; }
.article-body h2 { font-size: 1.6rem; margin-top: 2.5rem; margin-bottom: 1rem; color: var(--primary); }
.article-body p { margin-bottom: 1.2rem; color: var(--text-soft); }
.article-body ul { margin: 0 0 1.5rem 0; }
.article-body ul li {
  position: relative;
  padding: 0.4rem 0 0.4rem 1.5rem;
  color: var(--text-soft);
}
.article-body ul li::before {
  content: ''; position: absolute; left: 0; top: 1.05rem;
  width: 8px; height: 8px; border-radius: 50%; background: var(--primary);
}
.article-cta-box {
  background: var(--primary-soft);
  border: 1px solid var(--primary-bd);
  border-radius: 8px;
  padding: 1.5rem;
  margin: 2rem 0;
  text-align: center;
}

/* Tag pill (for service detail page) */
.pill {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.3rem 0.85rem; border-radius: 999px;
  background: var(--primary-soft); color: var(--primary);
  font-size: 0.78rem; font-weight: 600;
}

/* Link styled */
.link { color: var(--primary); text-decoration: none; }
.link:hover { text-decoration: underline; }
