/* BIG DADDY Nail Salon — www.bigdaddynails.com
   Mobile-first, production static CSS */

:root {
  --magenta: #ff1a8c;
  --magenta-deep: #c4126e;
  --magenta-dark: #8a0e4e;
  --magenta-ink: #5c0a35;
  --fuchsia: #ff4da6;
  --blush: #fff5f9;
  --blush-2: #ffe4ef;
  --blush-3: #ffd0e3;
  --gold: #c9a227;
  --gold-deep: #9a7b18;
  --gold-light: #f3e0a0;
  --gold-grad: linear-gradient(135deg, #f7e7b0 0%, #c9a227 48%, #8d6b12 100%);
  --ink: #2d1220;
  --ink-soft: #5a3346;
  --muted: #7a5364;
  --white: #ffffff;
  --line: #f3c5d8;
  --shadow: 0 12px 40px rgba(196, 18, 110, 0.12);
  --shadow-lg: 0 24px 60px rgba(90, 10, 50, 0.18);
  --radius: 1.25rem;
  --pill: 999px;
  --header-h: 4.85rem;
  --max: 70rem;
  --font: "Nunito", "Noto Sans Thai", ui-sans-serif, system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 0.75rem);
  -webkit-text-size-adjust: 100%;
}
html:focus-within { scroll-behavior: smooth; }
html, body { width: 100%; max-width: none; }
body {
  margin: 0;
  font-family: var(--font);
  font-weight: 500;
  color: var(--ink);
  background: var(--blush);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--magenta-deep); text-decoration-thickness: 1px; text-underline-offset: 0.18em; }
a:hover { color: var(--magenta); }
button, input { font-family: inherit; }
h1, h2, h3, h4 { font-weight: 800; letter-spacing: -0.02em; line-height: 1.15; color: var(--ink); margin: 0 0 0.6em; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }

.skip {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--magenta);
  color: var(--white);
  padding: 0.6rem 1rem;
  border-radius: 0.5rem;
  z-index: 1000;
}
.skip:focus { top: 1rem; }

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.85rem;
  padding: 0.7rem 1.35rem;
  border-radius: var(--pill);
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.2s, color 0.2s;
  white-space: nowrap;
}
.btn:hover { color: var(--white); transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: var(--magenta);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(255, 26, 140, 0.35);
}
.btn-primary:hover { background: var(--magenta-deep); color: var(--white); }
.btn-gold {
  background: var(--gold-grad);
  color: var(--magenta-ink);
  box-shadow: 0 8px 22px rgba(201, 162, 39, 0.35);
}
.btn-gold:hover { color: var(--magenta-ink); filter: brightness(1.05); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); color: var(--white); }
.btn-outline {
  background: var(--white);
  color: var(--magenta-deep);
  border-color: var(--gold);
}
.btn-outline:hover { background: var(--blush); color: var(--magenta-deep); }
.btn-line { background: #06c755; color: var(--white); box-shadow: 0 8px 22px rgba(6, 199, 85, 0.28); }
.btn-line:hover { background: #05b04c; color: var(--white); }

.icon { width: 1.15em; height: 1.15em; flex: none; }

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 80;
  height: var(--header-h);
  overflow: visible;
  background: #fff;
  border-bottom: 1px solid rgba(243, 197, 216, 0.4);
  box-shadow: 0 2px 14px rgba(90, 10, 50, 0.06);
}
.header.is-scrolled { box-shadow: 0 8px 24px rgba(90, 10, 50, 0.08); }
.header-inner {
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.5rem;
  overflow: hidden;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--ink);
  min-width: 0;
}
.brand-mark {
  display: block;
  height: calc(var(--header-h) - 0.7rem);
  width: auto;
  max-width: min(16.5rem, 46vw);
  flex: none;
  object-fit: contain;
  object-position: left center;
  border-radius: 0.4rem;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name {
  font-weight: 800;
  font-size: 0.98rem;
  letter-spacing: 0.04em;
  color: var(--magenta-deep);
}
.brand-sub {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--gold-deep);
}

.nav { display: none; }
.nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.4rem 0.72rem;
  border-radius: var(--pill);
}
.nav a:hover, .nav a[aria-current="true"] {
  color: var(--magenta-deep);
  background: #ffe4ef;
}

.header-cta { display: flex; align-items: center; gap: 0.45rem; justify-self: end; }
.btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 2.4rem;
  padding: 0.35rem 0.9rem 0.35rem 0.75rem;
  border-radius: var(--pill);
  background: var(--magenta);
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 18px rgba(255, 26, 140, 0.32);
}
.btn-phone:hover { color: var(--white); background: var(--magenta-deep); }
.phone-num { display: inline; }

.lang-switch { display: flex; align-items: center; gap: 0.3rem; }
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  flex: none;
  height: 2.5rem;
  padding: 0 0.65rem 0 0.45rem;
  border-radius: var(--pill);
  border: 1.5px solid var(--line);
  background: #fff;
  color: var(--ink-soft);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  cursor: pointer;
}
.lang-toggle:hover { background: var(--blush); color: var(--magenta-deep); }
.lang-toggle.is-active {
  border-color: var(--magenta);
  color: var(--magenta-deep);
  background: var(--blush);
}
.lang-flag {
  width: 1.15rem;
  height: 0.78rem;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.12);
  flex: none;
}

.hero-visual-en { display: none !important; }
.hero-visual-th { display: block !important; }
html[lang="en"] .hero-th { display: none; }
.hero-hotspots { display: none !important; }

.hero-copy-overlay {
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  bottom: 0;
  width: min(38rem, 58%);
  padding: 0.45rem 2.5% 1.5rem 4.5%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  color: #fff;
  background: linear-gradient(90deg, #5c3344 0%, #6e3d52 42%, rgba(110,61,82,0.88) 62%, transparent 100%);
  pointer-events: none;
}
.hero-copy-overlay .hero-actions,
.hero-copy-overlay a { pointer-events: auto; }
.hero-kicker {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #e8c56a;
  margin: 0 0 0.4rem;
}
.hero-copy-overlay h1 {
  color: #fff;
  font-size: clamp(1.7rem, 4.2vw, 3.4rem);
  max-width: 12ch;
  margin: 0 0 0.4rem;
  text-shadow: 0 6px 24px rgba(80, 20, 50, 0.18);
}
.hero-copy-overlay h1 em {
  font-style: normal;
  color: #e4c36a;
}
.hero-copy-overlay .hero-th {
  font-size: clamp(1rem, 2.2vw, 1.4rem);
  font-weight: 700;
  margin: 0.2rem 0 0.8rem;
}
.hero-copy-overlay .hero-brand {
  font-weight: 800;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  color: #e8c56a;
  margin: 0 0 0.3rem;
}
.hero-copy-overlay .hero-tag {
  font-size: 1.02rem;
  font-weight: 700;
  font-style: italic;
  margin: 0 0 1.2rem;
}
@media (max-width: 767px) {
  .hero-hotspots { display: none !important; }
  html[lang="en"] .hero-copy-overlay { display: flex !important; }
  html[lang="en"] .hero-visual-en { display: none !important; }
  html[lang="en"] .hero-visual-th { display: block !important; }
  .hero-copy-overlay {
    width: 100%;
    top: 0;
    bottom: auto;
    height: auto;
    justify-content: flex-start;
    padding: 0.45rem 1.1rem 1.4rem;
    background: linear-gradient(180deg, rgba(70,28,46,0.92) 0%, rgba(70,28,46,0.7) 68%, transparent 100%);
  }
  .hero-copy-overlay h1 { order: 1; max-width: 16ch; margin-bottom: 0.35rem; }
  .hero-kicker { order: 2; margin: 0.15rem 0 0.55rem; }
  .hero-th { order: 3; }
  .hero-brand { order: 4; }
  .hero-tag { order: 5; }
  .hero-actions { order: 6; }
  .hero-shot {
    max-height: 22rem;
    object-fit: cover;
    object-position: center top;
  }
  main {
    display: flex;
    flex-direction: column;
  }
  #home { order: 1; }
  #locations { order: 2; padding-top: 1.35rem; }
  .values { order: 3; }
  #services { order: 4; }
  #gallery { order: 5; }
  #reviews { order: 6; }
  #contact { order: 7; }
}


.nav-toggle {
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  background: var(--white);
  border-radius: 0.7rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  box-shadow: 0 2px 10px rgba(90, 10, 50, 0.08);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 1.15rem;
  height: 2px;
  background: var(--magenta-deep);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-panel {
  display: none;
  position: absolute;
  left: 0; right: 0; top: 100%;
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 0.75rem 1rem 1.25rem;
  box-shadow: var(--shadow);
}
.nav-panel.is-open { display: block; }
.nav-panel a {
  display: block;
  padding: 0.8rem 0.6rem;
  text-decoration: none;
  color: var(--ink);
  font-weight: 800;
  border-bottom: 1px solid var(--blush-2);
}
.nav-panel a:last-child { border-bottom: 0; }
.nav-panel .btn { width: 100%; margin-top: 0.75rem; }

/* Hero — Andrew's mockup image is the visual */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.hero {
  position: relative;
  width: 100%;
  background: #e4a0c0;
  overflow: hidden;
}
.hero-shot {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
}
.hero-hotspots {
  position: absolute;
  left: 4%;
  bottom: 7%;
  display: flex;
  gap: 0.7rem;
  z-index: 3;
}
.hotspot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.7rem;
  padding: 0.55rem 1.25rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
}
.hotspot-book {
  background: #ff1a8c;
  color: #fff;
  box-shadow: 0 8px 24px rgba(255, 26, 140, 0.35);
}
.hotspot-book:hover { color: #fff; background: #c4126e; }
.hotspot-call {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.85);
}
.hotspot-call:hover { background: rgba(255,255,255,0.12); color: #fff; }

/* Value bar */
.values {
  background: var(--white);
  border-block: 1px solid var(--line);
}
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.value {
  padding: 1.15rem 0.85rem;
  text-align: center;
  border-bottom: 1px solid var(--blush-2);
}
.value:nth-child(odd) { border-right: 1px solid var(--blush-2); }
.value:nth-last-child(-n+2) { border-bottom: 0; }
.value-icon {
  width: 2.1rem;
  height: 2.1rem;
  margin: 0 auto 0.45rem;
  color: var(--gold);
}
.value h3 {
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  margin: 0 0 0.15rem;
  color: var(--magenta-deep);
}
.value p { margin: 0; font-size: 0.82rem; color: var(--muted); font-weight: 600; }

/* Sections */
.section { padding: 3.5rem 0; }
.section-head { text-align: center; margin-bottom: 2rem; }
.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.5rem;
}
.section-head h2 {
  font-size: clamp(1.45rem, 4.5vw, 2.35rem);
  max-width: 20ch;
  margin-inline: auto;
}
.rev-heading {
  max-width: none;
  white-space: nowrap;
  font-size: clamp(1.15rem, 5.4vw, 2.35rem);
}
.gallery-ig { margin: 0.85rem 0 0; font-weight: 700; }
.gallery-ig a { color: var(--magenta-deep); }
.gold-rule {
  width: 4.5rem;
  height: 3px;
  margin: 0.9rem auto 0;
  border: 0;
  border-radius: var(--pill);
  background: var(--gold-grad);
}

/* Services */
.services { background: var(--white); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 0.85rem;
  justify-items: center;
}
.service { text-align: center; max-width: 11rem; }
.service-ring {
  width: min(42vw, 10.5rem);
  aspect-ratio: 1;
  border-radius: 50%;
  padding: 5px;
  background: var(--gold-grad);
  box-shadow: 0 10px 28px rgba(201, 162, 39, 0.28);
  margin: 0 auto 0.85rem;
}
.service-ring img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--white);
}
.service h3 { font-size: 1rem; margin: 0 0 0.15rem; color: var(--magenta-deep); }
.service p { margin: 0; font-size: 0.82rem; color: var(--muted); font-weight: 600; }
.service:last-child { grid-column: 1 / -1; }

/* Gallery */
.gallery { background: linear-gradient(180deg, var(--blush) 0%, var(--blush-2) 100%); overflow: hidden; }
.gallery-track {
  display: flex;
  gap: 0.9rem;
  overflow-x: auto;
  padding: 0.25rem 1rem 1.25rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--magenta) transparent;
}
.gallery-card {
  flex: 0 0 min(72vw, 17.5rem);
  scroll-snap-align: start;
  border: 0;
  padding: 0;
  background: none;
  cursor: zoom-in;
  border-radius: 1.15rem;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.gallery-card img {
  width: 100%;
  height: 22rem;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.gallery-card:hover img { transform: scale(1.04); }
.gallery-cta { text-align: center; margin-top: 0.5rem; }

/* Locations */
.loc-grid {
  display: grid;
  gap: 1.5rem;
}
.loc-card {
  background: var(--white);
  border-radius: 1.4rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(243, 197, 216, 0.8);
}
.loc-photo { position: relative; }
.loc-photo img { width: 100%; height: 13.5rem; object-fit: cover; }
.rating-badge {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255,255,255,0.95);
  color: var(--ink);
  padding: 0.35rem 0.7rem;
  border-radius: var(--pill);
  font-weight: 800;
  font-size: 0.82rem;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}
.rating-badge:hover { color: var(--magenta-deep); }
.stars { color: #f5b301; letter-spacing: 0.05em; }
.loc-body { padding: 1.25rem 1.2rem 1.4rem; }
.loc-body h3 { font-size: 1.2rem; margin-bottom: 0.2rem; }
.loc-th { color: var(--magenta-deep); font-weight: 700; margin-bottom: 0.75rem; font-size: 0.95rem; }
.meta { display: grid; gap: 0.55rem; margin: 0 0 1.1rem; }
.meta li {
  display: grid;
  grid-template-columns: 1.25rem 1fr;
  gap: 0.55rem;
  align-items: start;
  font-size: 0.92rem;
  color: var(--ink-soft);
  font-weight: 600;
}
.meta svg { margin-top: 0.15rem; color: var(--magenta); }
.loc-actions { display: flex; flex-wrap: wrap; gap: 0.55rem; }

/* Reviews */
.reviews { background: var(--white); }
.review-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  margin-bottom: 1.5rem;
}
.google-reviews-logo {
  height: 1.7rem;
  width: auto;
  display: block;
  margin-bottom: 0.35rem;
}
.review-score .stars { font-size: 1.25rem; }
.review-score .big {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--magenta-deep);
  line-height: 1;
}
.review-grid { display: grid; gap: 1rem; }
.review {
  background: var(--blush);
  border: 1px solid var(--line);
  border-radius: 1.15rem;
  padding: 1.2rem 1.15rem 1.25rem;
}
.review header {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: baseline;
  margin-bottom: 0.55rem;
}
.review h3 { font-size: 1rem; margin: 0; }
.review .when { font-size: 0.78rem; color: var(--muted); font-weight: 700; }
.review .stars { font-size: 0.9rem; margin-bottom: 0.4rem; display: block; }
.review p { margin: 0; color: var(--ink-soft); font-weight: 600; }
.google-more { text-align: center; margin-top: 1.4rem; font-weight: 800; }

/* Contact */
.contact {
  background:
    radial-gradient(80% 60% at 20% 0%, rgba(255, 26, 140, 0.08), transparent 50%),
    var(--blush);
}
.contact-grid {
  display: grid;
  gap: 1.25rem;
}
.contact-card {
  background: var(--white);
  border-radius: 1.25rem;
  padding: 1.35rem 1.2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.contact-card h3 { font-size: 1.05rem; color: var(--magenta-deep); }
.contact-card p, .contact-card a { font-weight: 600; }
.socials { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 0.4rem; }
.social {
  width: 2.7rem;
  height: 2.7rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blush-2);
  color: var(--magenta-deep);
  text-decoration: none;
  transition: transform 0.2s var(--ease), background 0.2s;
}
.social:hover { transform: translateY(-2px); background: var(--magenta); color: var(--white); }
.social svg { width: 1.2rem; height: 1.2rem; }

/* Footer */
.footer-cta {
  background: linear-gradient(135deg, #ff4da6 0%, #ff1a8c 45%, #c4126e 100%);
  color: var(--white);
  text-align: center;
  padding: 2.4rem 1rem;
}
.footer-cta h2 { color: var(--white); font-size: clamp(1.3rem, 4vw, 2rem); margin-bottom: 0.35rem; }
.footer-cta .phone {
  display: inline-block;
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.04em;
  margin: 0.35rem 0 1rem;
}
.footer-main {
  background: #2a0d1c;
  color: #f7d6e6;
  padding: 2.4rem 0 1.4rem;
}
.footer-grid {
  display: grid;
  gap: 1.5rem;
  justify-items: center;
  text-align: center;
}
.footer-logo { width: min(100%, 18rem); border-radius: 1rem; box-shadow: var(--shadow-lg); }
.footer-main .slogan {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold-light);
  margin: 0.35rem 0 0.8rem;
}
.footer-main a { color: #ffe6f1; }
.legal {
  margin-top: 1.6rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.82rem;
  color: #c9a3b4;
  text-align: center;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(24, 6, 16, 0.92);
  display: none;
  place-items: center;
  z-index: 200;
  padding: 1.5rem;
}
.lightbox.is-open { display: grid; }
.lightbox img {
  max-width: min(92vw, 40rem);
  max-height: 84vh;
  border-radius: 1rem;
  box-shadow: var(--shadow-lg);
}
.lightbox-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  width: 2.6rem;
  height: 2.6rem;
  border: 0;
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  font-size: 1.4rem;
  cursor: pointer;
  font-weight: 800;
}

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

@media (min-width: 540px) {
  .service-grid { grid-template-columns: repeat(3, 1fr); }
  .service:last-child { grid-column: auto; }
  .service-grid { max-width: 40rem; margin-inline: auto; }
}

@media (min-width: 768px) {
  :root { --header-h: 5rem; }
  .wrap { width: min(100% - 3rem, var(--max)); }
  .header-inner { grid-template-columns: 1fr auto 1fr; }
  .brand { justify-self: start; }
  .nav-toggle, .nav-panel { display: none !important; }
  .nav { display: flex; justify-content: center; gap: 0.15rem; }
  .brand-mark { height: calc(var(--header-h) - 0.75rem); width: auto; max-width: 17.5rem; }
  .hero-copy-overlay {
    justify-content: center;
    padding: 2.2rem 3% 2.8rem 5.5%;
    width: min(40rem, 54%);
  }
  .hero-copy-overlay h1 { max-width: 13ch; }
  .values-grid { grid-template-columns: repeat(4, 1fr); }
  .value { border-bottom: 0; border-right: 1px solid var(--blush-2); padding: 1.35rem 1rem; }
  .value:last-child { border-right: 0; }
  .service-grid { grid-template-columns: repeat(5, 1fr); max-width: none; gap: 1.25rem; }
  .service { max-width: none; }
  .service-ring { width: 9.5rem; }
  .loc-grid { grid-template-columns: 1fr 1fr; }
  .review-grid { grid-template-columns: 1fr 1fr 1fr; }
  .contact-grid { grid-template-columns: 1.1fr 0.9fr; }
  .gallery-card { flex-basis: 16.5rem; }
  .section { padding: 4.5rem 0; }
}

@media (min-width: 1024px) {
  :root { --header-h: 5.15rem; }
  .brand-mark { height: calc(var(--header-h) - 0.8rem); width: auto; max-width: 18.5rem; }
  .brand-name { font-size: 1.08rem; }
  .nav { gap: 0.2rem; }
  .service-ring { width: 11rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}

.footer-main .social {
  background: rgba(255,255,255,0.12);
  color: #fff;
}
.footer-main .social:hover { background: var(--magenta); color: #fff; }
.nav-toggle span { pointer-events: none; }

::selection { background: #ff1a8c; color: #fff; }
.btn, .btn-phone, .nav-toggle, .gallery-card { touch-action: manipulation; }
.btn-phone { font-variant-numeric: tabular-nums; }
@media (max-width: 379px) {
  .brand-sub { display: none; }
  .btn-phone { padding-inline: 0.65rem; }
}

@media (max-width: 639px) {
  .phone-num { display: none; }
  .btn-phone { padding-inline: 0.7rem; }
}

/* Mobile LINE booking chat bar */
.line-chat-bar {
  display: none;
}
@media (max-width: 767px) {
  .line-chat-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    position: fixed;
    left: 0.8rem;
    right: 0.8rem;
    bottom: calc(0.7rem + env(safe-area-inset-bottom, 0px));
    z-index: 90;
    min-height: 3.15rem;
    padding: 0.7rem 1.1rem;
    border-radius: var(--pill);
    background: #06c755;
    color: #fff;
    font-weight: 800;
    font-size: 0.98rem;
    letter-spacing: 0.01em;
    text-decoration: none;
    box-shadow: 0 10px 28px rgba(6, 199, 85, 0.38);
    touch-action: manipulation;
  }
  .line-chat-bar:hover,
  .line-chat-bar:focus-visible {
    background: #05b04c;
    color: #fff;
  }
  .line-chat-icon {
    width: 1.45rem;
    height: 1.45rem;
    flex: none;
  }
  body {
    padding-bottom: calc(5.1rem + env(safe-area-inset-bottom, 0px));
  }
}
