:root {
  --ink: #0c0c0d;
  --ink-soft: #161618;
  --charcoal: #2a2724;
  --cream: #f7f1ea;
  --cream-deep: #efe6da;
  --paper: #fbf8f4;
  --white: #ffffff;
  --red: #c1121f;
  --red-deep: #9b0e18;
  --red-soft: #e8c5c5;
  --gold: #b8956a;
  --muted: #6f6a64;
  --line: rgba(255, 255, 255, 0.12);
  --line-dark: rgba(12, 12, 13, 0.1);
  --shadow: 0 18px 50px rgba(12, 12, 13, 0.12);
  --shadow-soft: 0 10px 30px rgba(12, 12, 13, 0.08);
  --radius: 1.35rem;
  --radius-sm: 0.85rem;
  --header: 4.35rem;
  --claim: 2.4rem;
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-script: "Great Vibes", cursive;
  --font-body: "Outfit", 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(--claim) + var(--header) + 0.75rem);
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--paper);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
.btn {
  font-family: inherit;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  background: var(--red);
  color: var(--white);
  padding: 0.65rem 1rem;
  border-radius: 999px;
}

.skip-link:focus {
  top: calc(var(--claim) + 0.5rem);
}

.claim-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  min-height: var(--claim);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.4rem 1rem;
  background: var(--ink);
  color: var(--cream);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

.claim-bar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.7rem;
  padding: 0.15rem 0.75rem;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.72rem;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}

.claim-bar a:hover {
  background: var(--red-deep);
  transform: translateY(-1px);
}

.site-header {
  position: sticky;
  top: var(--claim);
  z-index: 40;
  background: rgba(12, 12, 13, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  background: rgba(12, 12, 13, 0.92);
}

.nav-wrap {
  width: min(1180px, calc(100% - 1.5rem));
  margin: 0 auto;
  min-height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  color: var(--white);
  min-width: 0;
}

.logo-script {
  font-family: var(--font-script);
  font-size: 2rem;
  color: #f2d7d9;
  font-weight: 400;
}

.logo-sub {
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 0.15rem;
}

.nav-checkbox {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.nav-checkbox:checked ~ .nav-wrap .site-nav {
  display: flex;
}

.nav-toggle {
  width: 2.75rem;
  height: 2.75rem;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border-radius: 0.7rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.1rem;
  height: 1.5px;
  background: currentColor;
}

.site-nav {
  position: fixed;
  inset: calc(var(--claim) + var(--header)) 0.75rem auto;
  background: rgba(12, 12, 13, 0.96);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  display: none;
  flex-direction: column;
  gap: 0.35rem;
  box-shadow: var(--shadow);
}

.site-nav.is-open {
  display: flex;
}

.site-nav a {
  color: var(--cream);
  padding: 0.7rem 0.85rem;
  border-radius: 0.75rem;
  font-size: 0.95rem;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.06);
}

.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  text-align: center;
  font-weight: 600;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
  transform: scale(1.06);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 12, 13, 0.28) 0%, rgba(12, 12, 13, 0.2) 35%, rgba(12, 12, 13, 0.88) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 1.5rem));
  margin: 0 auto;
  padding: 7.5rem 0 4.5rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.eyebrow::before {
  content: "";
  width: 1.5rem;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.8rem, 8vw, 6.4rem);
  line-height: 0.92;
  margin: 0.55rem 0 0.9rem;
  letter-spacing: -0.03em;
}

.hero-lead {
  max-width: 38rem;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.86);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.4rem 0 1.8rem;
  min-width: 0;
  max-width: 36rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 2.15rem;
  padding: 0.25rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  flex: 0 1 auto;
}

.hero-actions,
.cta-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(193, 18, 31, 0.28);
}

.btn-primary:hover {
  background: var(--red-deep);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn-dark {
  background: var(--ink);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-dark);
}

.section {
  padding: 5rem 0;
}

.section-cream {
  background: var(--cream);
}

.section-ink {
  background: var(--ink);
  color: var(--cream);
}

.wrap {
  width: min(1180px, calc(100% - 1.5rem));
  margin: 0 auto;
}

.section-kicker {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
}

.section-ink .section-kicker {
  color: var(--gold);
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -0.03em;
  margin: 0.35rem 0 1rem;
}

h3 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 500;
  margin: 0 0 0.5rem;
}

.lede {
  max-width: 40rem;
  color: var(--muted);
}

.section-ink .lede {
  color: rgba(247, 241, 234, 0.74);
}

.split {
  display: grid;
  gap: 2rem;
}

.about-card,
.hours-card,
.amenity,
.service-card,
.reason,
.faq-item,
.place-card,
.gallery-item,
.specialty,
.contact-card {
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.about-photo,
.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-photo img,
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.about-photo:hover img,
.gallery-item:hover img {
  transform: scale(1.06);
}

.about-copy p {
  color: var(--muted);
}

.facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.fact {
  padding: 1rem;
  border-radius: var(--radius-sm);
  background: var(--cream);
}

.fact strong {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
}

.reasons,
.services,
.amenities,
.specialties,
.places,
.gallery-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.reason,
.service-card,
.amenity,
.specialty,
.place-card,
.faq-item,
.contact-card {
  padding: 1.35rem 1.4rem;
}

.reason-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--red);
  line-height: 1;
}

.service-card {
  border-top: 3px solid var(--red);
}

.service-card ul {
  margin: 0.75rem 0 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--line-dark);
  color: var(--muted);
}

.gallery-item {
  position: relative;
  min-height: 16rem;
}

.gallery-item figcaption {
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.85rem;
  padding: 0.65rem 0.8rem;
  border-radius: 0.85rem;
  background: rgba(12, 12, 13, 0.62);
  color: var(--white);
  backdrop-filter: blur(10px);
  font-size: 0.85rem;
}

.experience-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.experience-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
}

.faq-list {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.faq-item {
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  color: var(--red);
  font-size: 1.4rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0.75rem 0 0;
  color: var(--muted);
}

.map-wrap {
  min-height: 22rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 22rem;
  border: 0;
}

.hours-card {
  padding: 1.2rem 1.3rem;
  margin-top: 1rem;
}

.hours-card dt {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.hours-card dd {
  margin: 0.2rem 0 0.8rem;
  font-weight: 600;
}

.cta-band {
  text-align: center;
  padding: 5.5rem 0;
  background:
    linear-gradient(180deg, rgba(12, 12, 13, 0.55), rgba(12, 12, 13, 0.82)),
    url("../images/stylenow-hair-salon-toa-payoh-storefront.jpg") center/cover;
  color: var(--white);
}

.cta-band h2,
.cta-band p {
  max-width: 38rem;
  margin-left: auto;
  margin-right: auto;
}

.site-footer {
  background: var(--ink-soft);
  color: rgba(247, 241, 234, 0.75);
  padding: 2.5rem 0 6.5rem;
  font-size: 0.92rem;
}

.footer-grid {
  display: grid;
  gap: 1.5rem;
}

.site-footer a:hover {
  color: var(--white);
}

.breadcrumbs {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.breadcrumbs ol {
  list-style: none;
  display: flex;
  gap: 0.45rem;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.breadcrumbs a:hover {
  color: var(--red);
}

.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  padding: 0.65rem 0.75rem calc(0.65rem + env(safe-area-inset-bottom));
  background: rgba(12, 12, 13, 0.94);
  backdrop-filter: blur(16px);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  animation: fade-up 0.9s var(--ease) forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

@keyframes fade-up {
  to {
    opacity: 1;
    transform: none;
  }
}

.js-reveal {
  opacity: 1;
  transform: none;
}

@media (min-width: 760px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    inset: auto;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
    gap: 0.2rem;
  }

  .site-nav a {
    padding: 0.45rem 0.75rem;
    font-size: 0.88rem;
  }

  .split,
  .contact-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
    align-items: center;
  }

  .reasons,
  .services,
  .amenities,
  .specialties {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid,
  .places,
  .experience-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-photo {
    min-height: 34rem;
  }

  .mobile-cta {
    display: none;
  }

  .site-footer {
    padding-bottom: 2.5rem;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .reasons,
  .amenities {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-grid {
    grid-template-columns: 1.2fr 0.9fr;
    grid-template-rows: 18rem 18rem;
  }

  .gallery-item:first-child {
    grid-row: 1 / span 2;
    min-height: 100%;
  }
}

@media (max-width: 759px) {
  .logo-script {
    font-size: 1.7rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: min(22rem, 100%);
  }

  .hero-actions .btn-primary {
    grid-column: 1 / -1;
  }

  .hero-content {
    padding-bottom: 6.5rem;
  }

  .chip {
    font-size: 0.72rem;
    justify-content: center;
  }

  .hero-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 22rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .hero-media img,
  .about-photo img,
  .gallery-item img {
    transform: none !important;
  }

  .reveal,
  .js-reveal {
    opacity: 1;
    transform: none;
  }
}
