/* ===========================================================
   Asie Beauty Palace — stylesheet
   Tokens: charcoal ink / warm bone / gold accent / bronze / sage
   Type: Outfit (display) + Inter (body & UI)
   =========================================================== */

:root {
  /* color — charcoal & gold, sampled from the real Asie Beauty Palace logo and emblem */
  --ink: #1C1B19;
  --charcoal-soft: #26241F;
  --bone: #FAF8F4;
  --bone-dim: #F1EEE7;
  --sand: #E7E2D8;
  --sand-line: #DAD4C7;
  --gold: #C09E46;
  --gold-dark: #9C7E34;
  --gold-pale: #DCC383;
  --bronze: #8C7B5E;
  --sage: #3D5A4C;
  --white: #FFFFFF;

  /* legacy aliases so older component names keep working */
  --terracotta: var(--gold);
  --terracotta-dark: var(--gold-dark);

  /* type */
  --display: "Outfit", "Inter", system-ui, sans-serif;
  --body: "Inter", system-ui, -apple-system, sans-serif;

  /* layout */
  --max: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius-sm: 6px;
  --radius: 14px;

  /* motion */
  --ease: cubic-bezier(.16,.84,.24,1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bone);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
img:not([src]), img[src=""] { visibility: hidden; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-family: var(--display); font-weight: 600; letter-spacing: -0.02em; }
p { margin: 0; }
button { font-family: inherit; cursor: pointer; }

::selection { background: var(--gold); color: var(--ink); }

:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 3px;
}

@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;
  }
}

/* ---------- layout helpers ---------- */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.section {
  padding-top: clamp(56px, 9vw, 120px);
  padding-bottom: clamp(56px, 9vw, 120px);
}

.section--tight { padding-top: clamp(40px, 6vw, 80px); padding-bottom: clamp(40px, 6vw, 80px); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--body);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bronze);
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--terracotta);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: clamp(32px, 5vw, 56px);
  flex-wrap: wrap;
}
.section-head h2 { font-size: clamp(28px, 3.6vw, 44px); }
.section-head .lede { max-width: 38ch; color: var(--bronze); font-size: 15.5px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--body);
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: transform .35s var(--ease), background .25s, color .25s, border-color .25s;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }

.btn--primary {
  background: var(--gold);
  color: var(--ink);
}
.btn--primary:hover { background: var(--gold-dark); color: var(--ink); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--bone); }

.btn--ghost-dark {
  background: transparent;
  color: var(--bone);
  border-color: rgba(250,246,241,0.35);
}
.btn--ghost-dark:hover { background: var(--bone); color: var(--ink); border-color: var(--bone); }

.btn--light {
  background: var(--bone);
  color: var(--ink);
}
.btn--light:hover { background: var(--white); }

.btn--sm { padding: 10px 20px; font-size: 13px; }

/* ---------- top bar ---------- */
.topbar {
  background: #120D0A;
  color: var(--bone-dim);
}
.topbar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 9px var(--gutter);
  font-size: 12.5px;
  letter-spacing: 0.02em;
}
.topbar a { transition: color .2s; white-space: nowrap; }
.topbar a:hover { color: var(--terracotta); }
.topbar__hours { display: flex; align-items: center; gap: 8px; color: var(--sand); white-space: nowrap; }
.topbar__hours .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--sage);
  box-shadow: 0 0 0 3px rgba(61,90,76,0.25);
  flex-shrink: 0;
}
.topbar__links { display: flex; gap: 20px; margin-left: auto; }

/* ---------- header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--ink);
  border-bottom: 1px solid rgba(250,246,241,0.1);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px var(--gutter);
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  flex: 1 1 auto;
  overflow: hidden;
}
.brand img { height: 64px; width: auto; flex-shrink: 0; }
.brand .brand-tagline {
  display: block;
  font-family: var(--body);
  font-weight: 500;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sand);
  white-space: nowrap;
}


.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  position: relative;
  padding: 10px 16px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--bone);
}
.nav a::after {
  content: "";
  position: absolute;
  left: 16px; right: 16px; bottom: 6px;
  height: 1px;
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav a:hover::after, .nav a.is-active::after { transform: scaleX(1); }
.nav a.is-active { color: #E8957D; }

.nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 6px;
  min-width: 300px;
  background: var(--white);
  border: 1px solid var(--sand-line);
  border-radius: var(--radius);
  box-shadow: 0 18px 40px -12px rgba(27,20,16,0.18);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown a {
  display: flex;
  flex-direction: column;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 13.5px;
}
.dropdown a:hover { background: var(--bone-dim); }
.dropdown a::after { display: none; }
.dropdown a span {
  font-size: 11px;
  color: var(--bronze);
  font-weight: 400;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(250,246,241,0.25);
  border-radius: 10px;
  background: transparent;
}
.burger span { width: 18px; height: 1.5px; background: var(--bone); margin: 0 auto; transition: transform .25s, opacity .25s; }
.burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--sand-line);
}
.hero .wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
  padding-top: clamp(48px, 8vw, 96px);
  padding-bottom: clamp(48px, 8vw, 96px);
}
.hero__kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}
.hero__kicker .line { width: 28px; height: 1px; background: var(--terracotta); }
.hero__kicker span {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze);
}
.hero h1 {
  font-size: clamp(40px, 6vw, 72px);
  line-height: 0.98;
  font-weight: 700;
}
.hero h1 em {
  font-style: normal;
  color: var(--terracotta);
  position: relative;
}
.hero__lede {
  margin-top: 24px;
  max-width: 46ch;
  font-size: clamp(16px, 1.6vw, 18.5px);
  color: #463A30;
}
.hero__actions { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; }

.hero__rating {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--sand-line);
  max-width: 420px;
}
.hero__rating strong { font-family: var(--display); font-size: 26px; }
.hero__rating .stars { color: var(--terracotta); font-size: 14px; letter-spacing: 1px; }
.hero__rating small { display: block; color: var(--bronze); font-size: 12.5px; margin-top: 2px; }

.hero__art { position: relative; }
.hero__art-frame {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--sand);
}
.hero__art-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero__badge {
  position: absolute;
  bottom: -22px;
  left: -22px;
  background: var(--ink);
  color: var(--bone);
  padding: 18px 22px;
  border-radius: var(--radius);
  max-width: 200px;
  box-shadow: 0 20px 40px -16px rgba(27,20,16,0.4);
}
.hero__badge strong { font-family: var(--display); font-size: 22px; display: block; }
.hero__badge span { font-size: 12px; color: var(--sand); line-height: 1.4; }

/* ---------- marquee strip ---------- */
.strip {
  background: var(--ink);
  color: var(--sand);
  overflow: hidden;
  white-space: nowrap;
  border-bottom: 1px solid rgba(250,246,241,0.08);
}
.strip__track {
  display: inline-flex;
  align-items: center;
  animation: marquee 32s linear infinite;
}
.strip__track span {
  display: inline-flex;
  align-items: center;
  padding: 13px 0;
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.strip__track span::after {
  content: "—";
  margin: 0 28px;
  color: var(--terracotta);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- intro / about teaser ---------- */
.intro .wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}
.intro__media {
  position: sticky;
  top: 100px;
}
.intro__media-frame {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--sand);
}
.intro__media-frame img { width: 100%; height: 100%; object-fit: cover; }
.intro h2 {
  font-size: clamp(28px, 3.6vw, 42px);
  max-width: 16ch;
  margin-bottom: 26px;
}
.intro p {
  color: #463A30;
  max-width: 56ch;
  margin-bottom: 18px;
  font-size: 16px;
}
.intro__stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 32px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--sand-line);
}
.intro__stats div strong {
  display: block;
  font-family: var(--display);
  font-size: 30px;
  color: var(--terracotta-dark);
}
.intro__stats div span {
  font-size: 12.5px;
  color: var(--bronze);
}

/* ---------- service directory (menu-style) ---------- */
.menu { background: var(--bone-dim); border-top: 1px solid var(--sand-line); border-bottom: 1px solid var(--sand-line); }
.menu-list { border-top: 1px solid var(--sand-line); }
.menu-row {
  display: grid;
  grid-template-columns: 56px 1fr auto 28px;
  align-items: center;
  gap: 24px;
  padding: 22px 4px;
  border-bottom: 1px solid var(--sand-line);
  position: relative;
  transition: padding-left .3s var(--ease);
}
.menu-row::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0;
  background: var(--terracotta);
  transition: width .3s var(--ease);
}
.menu-row:hover::before { width: 4px; }
.menu-row:hover { padding-left: 16px; }
.menu-row__num {
  font-family: var(--display);
  font-size: 13px;
  color: var(--bronze);
  letter-spacing: 0.05em;
}
.menu-row__title { display: flex; flex-direction: column; gap: 4px; }
.menu-row__title strong {
  font-family: var(--display);
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 600;
  transition: color .25s;
}
.menu-row:hover .menu-row__title strong { color: var(--terracotta-dark); }
.menu-row__title span { font-size: 13px; color: var(--bronze); }
.menu-row__desc {
  font-size: 14px;
  color: #574a3d;
  max-width: 42ch;
  display: none;
}
.menu-row__arrow {
  font-size: 20px;
  color: var(--bronze);
  transition: transform .3s var(--ease), color .25s;
}
.menu-row:hover .menu-row__arrow { transform: translateX(4px); color: var(--terracotta); }

@media (min-width: 860px) {
  .menu-row { grid-template-columns: 64px 280px 1fr 28px; }
  .menu-row__desc { display: block; }
}

/* ---------- service grid (cards w/ images, used on services index) ---------- */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 22px;
}
.card {
  border: 1px solid var(--sand-line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.card:hover { transform: translateY(-5px); box-shadow: 0 24px 48px -20px rgba(27,20,16,0.18); }
.card__media { aspect-ratio: 4/3; background: var(--sand); overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.card:hover .card__media img { transform: scale(1.05); }
.card__body { padding: 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card__num { font-family: var(--display); font-size: 12px; color: var(--bronze); }
.card__body h3 { font-size: 19px; }
.card__body span.sub { font-size: 12.5px; color: var(--bronze); }
.card__body p { font-size: 14px; color: #574a3d; flex: 1; }
.card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--terracotta-dark);
  margin-top: 6px;
}
.card__link .arrow { transition: transform .25s var(--ease); }
.card:hover .card__link .arrow { transform: translateX(4px); }

/* ---------- gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 160px;
  gap: 14px;
}
.gallery a { grid-row: span 2; border-radius: var(--radius-sm); overflow: hidden; background: var(--sand); display: block; }
.gallery a:nth-child(1) { grid-row: span 3; }
.gallery a:nth-child(4) { grid-row: span 3; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.gallery a:hover img { transform: scale(1.06); }

/* ---------- testimonials ---------- */
.reviews { background: var(--ink); color: var(--bone); }
.reviews .section-head .lede { color: var(--sand); }
.reviews .eyebrow { color: var(--sand); }
.reviews .eyebrow::before { background: var(--terracotta); }
.review-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review-card {
  background: rgba(250,246,241,0.05);
  border: 1px solid rgba(250,246,241,0.12);
  border-radius: var(--radius);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.review-card .stars { color: var(--terracotta); font-size: 13px; letter-spacing: 2px; }
.review-card p { font-size: 14.5px; color: var(--sand); line-height: 1.65; }
.review-card .who { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.review-card .who strong { font-size: 13.5px; font-family: var(--display); font-weight: 600; }
.review-card .who span { font-size: 12px; color: var(--bronze); }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--ink);
  color: var(--bone);
  border-radius: 24px;
  padding: clamp(36px, 6vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  border: 1px solid rgba(192,158,70,0.25);
}
.cta-band h2 { font-size: clamp(24px, 3vw, 36px); max-width: 22ch; color: var(--gold-pale); }
.cta-band p { color: rgba(250,248,244,0.7); margin-top: 10px; max-width: 40ch; }
.cta-band .btn--primary { background: var(--gold); color: var(--ink); }
.cta-band .btn--primary:hover { background: var(--gold-dark); }

/* ---------- contact section ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.info-card {
  background: var(--white);
  border: 1px solid var(--sand-line);
  border-radius: var(--radius);
  padding: 28px;
}
.info-row {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--sand-line);
}
.info-row:last-child { border-bottom: none; }
.info-row .ic {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--bone-dim);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--terracotta-dark);
}
.info-row strong { display: block; font-size: 14.5px; margin-bottom: 3px; }
.info-row span, .info-row a { font-size: 14px; color: #574a3d; }
.info-row a:hover { color: var(--terracotta-dark); }

.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--sand-line);
  aspect-ratio: 1/1;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; }

/* hours table */
.hours-table { width: 100%; border-collapse: collapse; margin-top: 8px; }
.hours-table td { padding: 9px 0; font-size: 14px; border-bottom: 1px solid var(--sand-line); }
.hours-table td:last-child { text-align: right; font-weight: 600; }
.hours-table tr:last-child td { border-bottom: none; }
.hours-table tr.is-today td { color: var(--terracotta-dark); font-weight: 600; }

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: var(--sand); }
.site-footer .wrap { padding-top: 64px; padding-bottom: 32px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(250,246,241,0.1);
}
.footer-brand { display: flex; align-items: center; margin-bottom: 20px; }
.footer-brand img {
  height: 96px;
  width: 96px;
}
.footer-grid p { font-size: 13.5px; color: #B6A998; max-width: 36ch; }
.footer-grid h4 { font-size: 12.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--bronze); margin-bottom: 18px; font-weight: 600; }
.footer-grid ul li { margin-bottom: 10px; }
.footer-grid ul a { font-size: 14px; color: var(--sand); transition: color .2s; }
.footer-grid ul a:hover { color: var(--terracotta); }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(250,246,241,0.2);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s;
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 12.5px;
  color: #8C8074;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a:hover { color: var(--sand); }

/* ---------- page header (service / about / contact pages) ---------- */
.page-head {
  border-bottom: 1px solid var(--sand-line);
  background: var(--bone-dim);
}
.page-head .wrap { padding-top: 48px; padding-bottom: 48px; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 13px; color: var(--bronze); margin-bottom: 18px; }
.breadcrumb a:hover { color: var(--terracotta-dark); }
.page-head h1 { font-size: clamp(30px, 4.4vw, 52px); max-width: 22ch; }
.page-head .sub { color: var(--bronze); margin-top: 10px; font-size: 15px; letter-spacing: 0.02em;}

/* ---------- service detail page ---------- */
.service-detail .wrap {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(32px, 5vw, 64px);
}
.service-detail__media {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--sand);
  margin-bottom: 28px;
}
.service-detail__media img { width: 100%; height: 100%; object-fit: cover; }
.service-detail__body p { color: #463A30; margin-bottom: 18px; font-size: 16px; }
.extras-list { margin-top: 20px; display: flex; flex-direction: column; gap: 12px; }
.extras-list li {
  display: flex;
  gap: 12px;
  padding: 14px 16px;
  background: var(--bone-dim);
  border-radius: 10px;
  font-size: 14.5px;
}
.extras-list li::before { content: "—"; color: var(--terracotta); flex-shrink: 0; }

.aside-card {
  background: var(--ink);
  color: var(--bone);
  border-radius: var(--radius);
  padding: 28px;
  position: sticky;
  top: 100px;
}
.aside-card h3 { font-size: 19px; margin-bottom: 8px; }
.aside-card p { font-size: 13.5px; color: var(--sand); margin-bottom: 20px; }
.aside-card .btn { width: 100%; margin-bottom: 10px; }
.aside-card .divider { height: 1px; background: rgba(250,246,241,0.12); margin: 20px 0; }
.aside-card .mini-list { display: flex; flex-direction: column; gap: 10px; }
.aside-card .mini-list a { font-size: 13.5px; color: var(--sand); display: flex; justify-content: space-between; }
.aside-card .mini-list a:hover { color: var(--terracotta); }

/* ---------- reveal on scroll ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: none; }

/* ---------- floating call button (mobile) ---------- */
.float-call {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 90;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 30px -8px rgba(192,158,70,0.55);
}

/* =========================== responsive =========================== */
@media (max-width: 980px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero__art { order: -1; max-width: 380px; margin: 0 auto; }
  .intro .wrap { grid-template-columns: 1fr; }
  .intro__media { position: static; max-width: 380px; }
  .service-detail .wrap { grid-template-columns: 1fr; }
  .aside-card { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .review-track { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .topbar__links a.only-desktop { display: none; }
  .topbar__hours.only-desktop { display: none; }
  .nav { display: none; }
  .nav-actions .btn--ghost-dark { display: none; }
  .burger { display: flex; }
  .float-call { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .menu-row { grid-template-columns: 40px 1fr 22px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .brand-tagline { display: none; }
  .brand img { height: 38px; }
  .nav-actions { gap: 8px; }
  .nav-actions .btn--primary { padding: 10px 16px; font-size: 13px; }
  .hero__badge { left: 0; bottom: -16px; padding: 14px 16px; max-width: 160px; }
  .hero__badge strong { font-size: 19px; }
  .hero__badge span { font-size: 11px; }
}

/* mobile nav drawer */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--bone);
  transform: translateX(100%);
  transition: transform .35s var(--ease);
  overflow-y: auto;
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px var(--gutter);
  border-bottom: 1px solid var(--sand-line);
}
.mobile-nav__close { width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--sand-line); background: var(--white); font-size: 18px; }
.mobile-nav nav { padding: 12px var(--gutter) 40px; display: flex; flex-direction: column; }
.mobile-nav nav a { padding: 16px 0; border-bottom: 1px solid var(--sand-line); font-family: var(--display); font-size: 19px; font-weight: 500; }
.mobile-nav__services { display: flex; flex-direction: column; padding-left: 14px; }
.mobile-nav__services a { font-family: var(--body); font-size: 14.5px; padding: 11px 0; border-bottom: 1px dashed var(--sand-line); color: var(--bronze); }
.mobile-nav__cta { padding: 24px var(--gutter) 0; display: flex; gap: 10px; }
