/* ---------- CSS variables (retheme by editing this block) ---------- */
:root {
  --c-nav-black: #000;
  --c-body-bg:   #f2f2f2;
  --c-pink-bg:   #f5dce0;
  --c-pink-soft: #f7e2e6;
  --c-pink-hot:  #f4a6b8;
  --c-gold:      #b39875;
  --c-gold-dark: #796849;
  --c-text:      #333;
  --c-muted:     #666;
  --c-white:     #fff;
  --c-line:      #e6e6e6;

  --f-body: "robotoregular", "Roboto", -apple-system, Segoe UI, Arial, sans-serif;
  --f-medium: "robotomedium", "Roboto", sans-serif;
  --f-bold: "robotobold", "Roboto", sans-serif;
  --f-black: "robotoblack", "Roboto", sans-serif;
  --f-hero: "Helvetica Neue", Helvetica, Arial, sans-serif;

  --topbar-h: 40px;
  --header-h: 90px;
  --container: 1200px;
  --gutter: 24px;

  --radius-sm: 2px;
  --radius-md: 4px;
}

/* Emit @font-face aliases mirroring source CSS family names */
@font-face { font-family: "robotoregular"; src: local("Roboto"), local("Roboto Regular"); font-weight: normal; font-style: normal; font-display: swap; }
@font-face { font-family: "robotomedium";  src: local("Roboto Medium");  font-weight: normal; font-style: normal; font-display: swap; }
@font-face { font-family: "robotobold";    src: local("Roboto Bold");    font-weight: normal; font-style: normal; font-display: swap; }
@font-face { font-family: "robotoblack";   src: local("Roboto Black");   font-weight: normal; font-style: normal; font-display: swap; }

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; padding: 0; margin: 0; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; padding: 0; }

body {
  font-family: var(--f-body);
  color: var(--c-text);
  background: var(--c-body-bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* ---------- topbar (thin black strip above header) ---------- */
.topbar {
  background: var(--c-nav-black);
  color: var(--c-pink-hot);
  height: var(--topbar-h);
  border-bottom: 1px solid #1a1a1a;
}
.topbar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.topbar-social {
  display: flex;
  gap: 14px;
}
.topbar-social a {
  display: inline-flex;
  width: 28px;
  height: 28px;
  color: var(--c-pink-hot);
  transition: color .15s ease, transform .15s ease;
}
.topbar-social a:hover { color: var(--c-white); transform: scale(1.08); }
.topbar-social svg { width: 100%; height: 100%; }
.topbar-book {
  color: var(--c-pink-hot);
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
}
.topbar-book:hover { color: var(--c-white); }

/* ---------- main header (logo + nav) ---------- */
.site-header {
  background: var(--c-nav-black);
  color: var(--c-white);
  position: sticky;
  top: 0;
  z-index: 100;
  border-top: 1px solid #ccc;
}
.site-header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}
.site-header-inner > .hamburger { order: 0; }
.primary-nav {
  order: 1;
  flex: 1;
  display: contents;
}
.primary-nav ul.nav-left,
.primary-nav ul.nav-right {
  display: flex;
  gap: 40px;
  align-items: center;
  flex: 1;
}
.primary-nav ul.nav-left { justify-content: flex-end; order: 1; }
.site-header-inner > .site-logo { order: 2; }
.primary-nav ul.nav-right { justify-content: flex-start; order: 3; }
.primary-nav a {
  font-family: var(--f-body);
  font-size: 15px;
  color: var(--c-white);
  letter-spacing: 0.14em;
  padding: 8px 0;
  transition: color .15s ease;
  position: relative;
}
.primary-nav a:hover { color: var(--c-gold); }
.primary-nav li.is-active > a { color: var(--c-pink-bg); }
.primary-nav li.is-active > a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--c-pink-bg);
}
.site-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.site-logo img {
  width: 200px;
  height: auto;
  background: var(--c-pink-soft);
  padding: 4px 8px;
}

/* Hamburger — hidden on desktop, visible on mobile */
.hamburger {
  display: none;
  width: 34px;
  height: 34px;
  position: relative;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  position: absolute;
  left: 5px;
  right: 5px;
  height: 2px;
  background: var(--c-white);
  transition: transform .25s ease, top .25s ease, opacity .15s ease;
}
.hamburger span:nth-child(1) { top: 10px; }
.hamburger span:nth-child(2) { top: 16px; }
.hamburger span:nth-child(3) { top: 22px; }
.hamburger[aria-expanded="true"] span:nth-child(1) { top: 16px; transform: rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { top: 16px; transform: rotate(-45deg); }

/* ---------- page-title band (below header on inner pages) ---------- */
.page-title-band {
  background: var(--c-nav-black);
  color: var(--c-pink-bg);
  padding: 40px var(--gutter) 56px;
  text-align: center;
}
.page-title-band h1 {
  margin: 0;
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 40px;
  color: var(--c-pink-bg);
  letter-spacing: 0.02em;
}

/* ---------- home: hero band (thin black strip with gold tagline) ---------- */
.hero-tagline {
  background: var(--c-nav-black);
  color: var(--c-white);
  text-align: center;
  padding: 24px var(--gutter);
  font-family: var(--f-hero);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.01em;
  line-height: 1.15;
}
.hero-tagline strong { font-weight: 700; }

/* ---------- home: pink band with section title + CTA ---------- */
.fresh-look-band {
  background: var(--c-pink-bg);
  padding: 60px var(--gutter) 20px;
}
.fresh-look-band .inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  align-items: center;
  gap: 40px;
}
.fresh-look-band h2 {
  margin: 0;
  font-family: var(--f-bold);
  font-weight: 400;
  font-size: 50px;
  line-height: 1.1;
  color: #000;
  letter-spacing: 0.01em;
}
.fresh-look-band .cta-gallery {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  min-height: 90px;
  padding: 18px 24px;
  background: var(--c-nav-black);
  color: var(--c-white);
  font-family: var(--f-body);
  font-size: 20px;
  text-align: center;
  transition: background .15s ease, color .15s ease;
  border-radius: var(--radius-sm);
  line-height: 1.2;
}
.fresh-look-band .cta-gallery:hover { background: var(--c-gold); color: var(--c-white); }

/* ---------- home: card grid ---------- */
.card-grid-band {
  background: var(--c-pink-bg);
  padding: 0 var(--gutter) 20px;
}
.card-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.card {
  display: block;
  position: relative;
  height: 514px;
  overflow: hidden;
  color: var(--c-white);
  background-color: #ddd;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}
.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}
.card-label {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 20px;
  z-index: 1;
  text-align: center;
  font-family: var(--f-black);
  font-weight: 400;
  font-size: 24px;
  letter-spacing: 0.05em;
  color: var(--c-white);
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.card:hover { transform: scale(1.01); transition: transform .3s ease; }

/* ---------- home: bottom CTA row ---------- */
.home-cta-row {
  background: var(--c-pink-bg);
  padding: 20px var(--gutter) 40px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  min-height: 53px;
  padding: 12px 30px;
  background: #111;
  color: var(--c-white);
  font-family: var(--f-body);
  font-size: 16px;
  letter-spacing: 0.16em;
  border: 0;
  border-radius: var(--radius-sm);
  transition: background .15s ease, color .15s ease;
}
.btn:hover { background: var(--c-gold); color: var(--c-white); }
.btn.btn-small { min-width: 160px; min-height: 42px; font-size: 14px; padding: 8px 22px; }

/* ---------- ABOUT page ---------- */
.about-intro {
  max-width: 1000px;
  margin: 0 auto;
  padding: 56px var(--gutter);
  font-size: 20px;
  line-height: 1.6;
  color: var(--c-text);
}
.about-intro p { margin: 0 0 20px; }

.staff-heading {
  max-width: var(--container);
  margin: 24px auto 30px;
  padding: 0 var(--gutter);
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 36px;
  color: var(--c-text);
}

.staff-list {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 var(--gutter) 60px;
  display: flex;
  flex-direction: column;
  gap: 46px;
}
.staff-card {
  background: var(--c-pink-bg);
  padding: 26px 28px;
  border-radius: 2px;
  display: grid;
  grid-template-columns: 190px 1fr auto;
  gap: 26px;
  align-items: center;
}
.staff-photo {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  overflow: hidden;
  background: #ddd;
}
.staff-photo img { width: 100%; height: 100%; object-fit: cover; }
.staff-meta { text-align: center; }
.staff-name {
  font-family: var(--f-medium);
  font-weight: 500;
  font-size: 30px;
  color: var(--c-text);
  line-height: 1.1;
}
.staff-role {
  margin-top: 6px;
  font-family: var(--f-body);
  font-size: 15px;
  color: var(--c-text);
}
.staff-card .btn { align-self: center; }
.staff-bio {
  max-width: 1000px;
  margin: -18px auto 0;
  padding: 0 var(--gutter) 6px;
  font-size: 18px;
  line-height: 1.7;
}
.staff-bio p { margin: 0 0 12px; }

/* ---------- SERVICES page ---------- */
.services-intro {
  max-width: 1000px;
  margin: 0 auto;
  padding: 44px var(--gutter) 18px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--c-text);
}
.services-intro p { margin: 0 0 10px; }

.svc-block {
  padding: 40px 0;
  border-top: 6px solid transparent;
}
.svc-block.svc-ladies,
.svc-block.svc-kids { background: var(--c-pink-bg); }
.svc-block.svc-men,
.svc-block.svc-beauty { background: var(--c-body-bg); }

.svc-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 40px;
  align-items: center;
}
.svc-block.reverse .svc-inner { grid-template-columns: 260px 1fr; }
.svc-photo {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  overflow: hidden;
  background: #ddd;
  justify-self: end;
}
.svc-block.reverse .svc-photo { justify-self: start; }
.svc-photo img { width: 100%; height: 100%; object-fit: cover; }
.svc-h {
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 30px;
  color: var(--c-text);
  letter-spacing: 0.04em;
  margin: 0 0 22px;
}
.svc-details {
  max-width: 640px;
}
.svc-details summary {
  list-style: none;
  cursor: pointer;
  padding: 10px 18px;
  background: rgba(255,255,255,0.5);
  margin-bottom: 8px;
  font-family: var(--f-body);
  font-size: 16px;
  letter-spacing: 0.1em;
  color: var(--c-text);
  border-radius: var(--radius-sm);
  transition: background .15s ease;
}
.svc-details summary::-webkit-details-marker { display: none; }
.svc-details summary::after { content: "+"; float: right; font-size: 18px; }
.svc-details[open] summary::after { content: "–"; }
.svc-details summary:hover { background: rgba(255,255,255,0.85); }
.svc-details .price-table {
  margin: 8px 0 12px;
  padding: 6px 18px 14px;
  background: rgba(255,255,255,0.4);
  border-radius: var(--radius-sm);
}
.svc-details .price-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px dotted rgba(0,0,0,0.1);
  font-size: 15px;
}
.svc-details .price-row:last-child { border-bottom: 0; }
.svc-actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

/* ---------- PRODUCTS page ---------- */
.products-lead {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px var(--gutter) 30px;
  text-align: center;
  font-size: 18px;
  color: var(--c-text);
}
.brand-grid {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 60px;
  align-items: center;
  justify-items: center;
}
.brand-grid img {
  max-height: 80px;
  max-width: 220px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.product-shots {
  max-width: 1000px;
  margin: 40px auto 80px;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.product-shots img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  border-radius: 2px;
  background: #eee;
}

/* ---------- GALLERY page ---------- */
.gallery-lead-band {
  background: var(--c-body-bg);
  padding: 40px var(--gutter);
}
.gallery-lead-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 20px;
  align-items: stretch;
}
.gallery-lead-card {
  background: var(--c-pink-bg);
  padding: 44px 32px;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.gallery-lead-card h2 {
  margin: 0;
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 30px;
  color: var(--c-text);
}
.gallery-lead-card p { margin: 0; font-size: 16px; }
.gallery-lead-card .btn { margin-top: 18px; align-self: flex-start; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.gallery-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #eee;
  transition: transform .25s ease, opacity .15s ease;
  cursor: pointer;
}
.gallery-grid img:hover { transform: scale(1.02); opacity: 0.94; }

/* Lightbox */
.lb {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 300;
  padding: 20px;
}
.lb.is-open { display: flex; }
.lb img { max-height: 90vh; max-width: 90vw; }
.lb-close {
  position: absolute;
  top: 20px; right: 24px;
  width: 36px; height: 36px;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

/* ---------- CONTACT page ---------- */
.contact-block {
  max-width: 900px;
  margin: 0 auto;
  padding: 48px var(--gutter);
  text-align: center;
}
.contact-socials {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin: 0 0 18px;
}
.contact-socials a {
  width: 44px;
  height: 44px;
  color: var(--c-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color .15s ease;
}
.contact-socials a:hover { color: var(--c-gold); }
.contact-socials svg { width: 32px; height: 32px; }
.contact-tagline { font-family: var(--f-body); font-size: 15px; color: var(--c-text); }
.contact-headline {
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 22px;
  color: var(--c-text);
  letter-spacing: 0.06em;
  margin: 24px 0 6px;
}
.contact-lead {
  max-width: 780px;
  margin: 0 auto 30px;
  font-size: 16px;
  color: var(--c-text);
  line-height: 1.55;
}
.contact-booking-lead {
  font-family: var(--f-body);
  font-size: 26px;
  color: var(--c-text);
  letter-spacing: 0.02em;
  margin: 18px 0 22px;
}
.contact-call {
  display: inline-block;
  padding: 24px 40px;
  background: var(--c-pink-bg);
  border-radius: 2px;
  font-family: var(--f-body);
  font-size: 30px;
  color: var(--c-gold-dark);
  letter-spacing: 0.03em;
  transition: background .15s ease;
}
.contact-call:hover { background: var(--c-pink-soft); }

.contact-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 700px;
  margin: 44px auto 40px;
  text-align: left;
}
.contact-details h3 {
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 20px;
  color: var(--c-text);
  letter-spacing: 0.08em;
  margin: 0 0 18px;
  text-align: center;
}
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 4px 8px; font-size: 15px; }
.hours-table td:first-child { color: var(--c-text); }
.hours-table td:last-child { text-align: right; color: var(--c-muted); }
.address-list {
  text-align: center;
  font-size: 15px;
  color: var(--c-text);
  line-height: 1.7;
  padding: 6px 0;
}

.contact-map {
  height: 320px;
  background: #ddd;
  margin-top: 0;
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

/* ---------- footer ---------- */
.site-footer {
  background: var(--c-nav-black);
  color: var(--c-pink-bg);
  padding: 22px var(--gutter);
}
.site-footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-nav ul {
  display: flex;
  gap: 40px;
  align-items: center;
}
.footer-nav a {
  font-family: var(--f-body);
  font-size: 11px;
  color: var(--c-pink-bg);
  letter-spacing: 0.14em;
  transition: color .15s ease;
}
.footer-nav a:hover { color: var(--c-gold); }
.footer-nav li.is-active > a { color: var(--c-gold); }

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .card { height: auto; aspect-ratio: 220 / 320; }

  .staff-card { grid-template-columns: 1fr; text-align: center; }
  .staff-photo { margin: 0 auto; }
  .staff-card .btn { justify-self: center; }

  .svc-inner,
  .svc-block.reverse .svc-inner { grid-template-columns: 1fr; }
  .svc-photo { margin: 0 auto; justify-self: center; }

  .brand-grid { grid-template-columns: repeat(2, 1fr); }
  .product-shots { grid-template-columns: 1fr; }

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

  .contact-details { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .hero-tagline { font-size: 24px; padding: 26px var(--gutter); }
  .fresh-look-band { padding: 46px var(--gutter); }
  .fresh-look-band .inner { grid-template-columns: 1fr; text-align: center; gap: 26px; }
  .fresh-look-band h2 { font-size: 32px; }
  .fresh-look-band .cta-gallery { justify-self: center; min-width: 240px; min-height: 80px; font-size: 18px; padding: 20px 16px; }
  .home-cta-row { padding-bottom: 60px; }

  .page-title-band { padding: 28px var(--gutter) 40px; }
  .page-title-band h1 { font-size: 28px; }

  .site-header-inner {
    min-height: 68px;
    display: grid;
    grid-template-columns: 44px 1fr 44px;
    align-items: center;
    gap: 8px;
  }
  .site-header-inner > .hamburger { grid-column: 1; grid-row: 1; }
  .site-header-inner > .site-logo { grid-column: 2; grid-row: 1; justify-self: center; }
  .hamburger { display: block; }
  .site-logo img { width: 150px; }

  /* Drawer: primary-nav is absolutely positioned below header */
  .primary-nav {
    display: block;
    grid-column: 1 / 4;
    grid-row: 2;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--c-nav-black);
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
    padding: 0;
    z-index: 90;
  }
  body.menu-open .primary-nav {
    max-height: calc(100vh - 108px);
    overflow-y: auto;
  }
  .primary-nav ul.nav-left,
  .primary-nav ul.nav-right {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 4px 0;
    width: 100%;
    flex: none;
  }
  .primary-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 8px 0;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .primary-nav ul:last-of-type { border-bottom: 0; }
  .primary-nav li { width: 100%; }
  .primary-nav a {
    display: block;
    padding: 14px var(--gutter);
    text-align: center;
    font-size: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  .card-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }
  .card-label { font-size: 18px; bottom: 12px; }

  .staff-name { font-size: 24px; }
  .staff-photo { width: 140px; height: 140px; }

  .svc-photo { width: 190px; height: 190px; }
  .svc-h { font-size: 24px; }

  .contact-call { font-size: 22px; padding: 18px 26px; }
  .gallery-grid { grid-template-columns: 1fr; }
}
