@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Jost:wght@300;400;500&display=swap');

:root {
  --cream:   #F5F1E8;
  --cream2:  #EDE8DC;
  --white:   #FFFFFF;
  --gold:    #B8922A;
  --gold-lt: #D4AF5A;
  --gold-bg: #F0E6CC;
  --tx:      #1C1C1C;
  --tm:      #555;
  --tl:      #999;
  --border:  rgba(180,150,60,0.2);
  --shadow:  rgba(0,0,0,0.06);
}

* { margin:0; padding:0; box-sizing:border-box; }
body { font-family:'Jost',sans-serif; background:var(--white); color:var(--tx); }

/* ── TOP NAV ── */
.top-nav {
  background: var(--white);
  border-bottom: 1px solid #eee;
  padding: 0 48px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 12px var(--shadow);
}
.top-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.top-logo img {
  height: 40px;
  width: auto;
  display: block;
  mix-blend-mode: multiply;
}
nav { display: flex; gap: 0; }
nav a {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tm);
  text-decoration: none;
  padding: 0 18px;
  height: 64px;
  display: flex;
  align-items: center;
  border-bottom: 3px solid transparent;
  transition: all 0.2s ease;
}
nav a:hover { color: var(--gold); }
nav a.active { color: var(--gold); border-bottom-color: var(--gold); }

/* ── HERO CENTERED ── */
.hero-centered {
  text-align: center;
  padding: 72px 20px 80px;
  background: var(--white);
}
.hero-logo {
  height: 160px;
  width: auto;
  display: block;
  margin: 0 auto 24px;
  mix-blend-mode: multiply;
}
.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--tm);
  margin-bottom: 20px;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.gold-rule {
  width: 52px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 32px;
}
.gallery-btn {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--gold);
  text-decoration: none;
  padding: 15px 44px;
  border: none;
  transition: background 0.25s ease;
}
.gallery-btn:hover { background: var(--tx); }

/* ── SERVICES SECTION ── */
.services-section {
  background: var(--cream);
  padding: 72px 40px 80px;
}
.services-inner { max-width: 1100px; margin: 0 auto; }
.services-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--tx);
  text-align: center;
  margin-bottom: 10px;
}
.services-sub {
  font-size: 0.9rem;
  color: var(--tm);
  text-align: center;
  font-weight: 300;
  letter-spacing: 0.02em;
  margin-bottom: 48px;
}
.service-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--white);
  border: 1px solid #e8e2d6;
  border-radius: 12px;
  padding: 40px 28px 32px;
  text-align: center;
  text-decoration: none;
  color: var(--tx);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.08);
}
.service-icon {
  width: 44px;
  height: 44px;
  color: var(--gold);
  margin-bottom: 4px;
}
.service-icon svg { width: 100%; height: 100%; }
.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--tx);
}
.service-card p {
  font-size: 0.82rem;
  color: var(--tm);
  line-height: 1.65;
  font-weight: 300;
  flex: 1;
}
.card-arrow {
  font-size: 1rem;
  color: var(--gold);
  margin-top: 4px;
}

/* ── INFO STRIP ── */
.info-strip {
  background: var(--white);
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 36px 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.info-item { text-align: center; padding: 12px 48px; }
.info-divider { width: 1px; height: 48px; background: #ddd; flex-shrink: 0; }
.info-label {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 7px;
}
.info-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--tx);
  line-height: 1.6;
}

/* ── MAP ── */
.map-section {
  max-width: 960px;
  margin: 0 auto;
  padding: 72px 40px 80px;
}
.section-label {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin-bottom: 10px;
}
.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 600;
  text-align: center;
  color: var(--tx);
  margin-bottom: 36px;
}
.section-heading em { font-style: italic; color: var(--gold); }
.map-wrap { overflow: hidden; border: 1px solid var(--border); }
.map-wrap iframe { display: block; width: 100%; height: 380px; border: none; }

/* ── PAGE HERO ── */
.page-hero {
  text-align: center;
  padding: 64px 20px 48px;
  background: var(--white);
  border-bottom: 1px solid #eee;
}
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 600;
  color: var(--tx);
}
.page-hero h1 span { font-style: italic; color: var(--gold); }
.page-hero p {
  font-size: 0.9rem;
  color: var(--tm);
  margin-top: 10px;
  font-weight: 300;
  letter-spacing: 0.02em;
}

/* ── PEDICURES ── */
.note-bar {
  text-align: center;
  font-size: 0.76rem;
  color: var(--tl);
  letter-spacing: 0.08em;
  padding: 24px 20px 0;
}
.pedi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1060px;
  margin: 0 auto;
  padding: 40px 40px 64px;
}
.pedi-card {
  background: var(--white);
  border: 1px solid #e8e2d6;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.pedi-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px var(--shadow); }
.pedi-card-header {
  padding: 22px 24px 16px;
  background: var(--cream);
  border-bottom: 1px solid #e8e2d6;
}
.pedi-card-header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--tx);
  margin-bottom: 10px;
}
.price-row { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.price-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 4px 14px;
  background: var(--white);
  border-radius: 2px;
}
.price-pill.gel {
  background: var(--tx);
  color: #F0E6CC;
  border-color: var(--tx);
}
.price-pill small {
  font-family: 'Jost', sans-serif;
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.8;
}
.price-tbd {
  font-size: 0.76rem;
  color: var(--tl);
  font-style: italic;
}
.pedi-steps { padding: 18px 24px 24px; }
.pedi-steps ol { list-style: none; counter-reset: step; }
.pedi-steps ol li {
  counter-increment: step;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 7px 0;
  font-size: 0.82rem;
  color: var(--tm);
  line-height: 1.55;
  border-bottom: 1px solid #f0ebe0;
  font-weight: 300;
}
.pedi-steps ol li:last-child { border-bottom: none; }
.pedi-steps ol li::before {
  content: counter(step);
  min-width: 20px;
  height: 20px;
  background: var(--cream);
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  font-weight: 500;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── NAIL SERVICES ── */
.cards-section {
  max-width: 1060px;
  margin: 0 auto;
  padding: 48px 40px 64px;
}
.sec-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--tx);
  margin: 40px 0 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e8e2d6;
}
.sec-title span { font-style: italic; color: var(--gold); }
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}
.card {
  background: var(--white);
  border: 1px solid #e8e2d6;
  border-radius: 8px;
  padding: 30px 26px;
  transition: all 0.3s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 10px 32px var(--shadow); }
.card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--tx);
  margin-bottom: 8px;
}
.card p { font-size: 0.85rem; color: var(--tm); line-height: 1.7; margin-bottom: 18px; font-weight: 300; }
.price-tag {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 4px 18px;
  border-radius: 2px;
}

/* ── CAROUSEL ── */
.carousel-section {
  max-width: 960px;
  margin: 0 auto;
  padding: 48px 40px 32px;
}
.carousel-wrap { position: relative; overflow: hidden; border: 1px solid #e8e2d6; border-radius: 8px; }
.carousel-track { display: flex; transition: transform 0.6s cubic-bezier(0.4,0,0.2,1); }
.carousel-slide { min-width: 100%; height: 300px; display: flex; align-items: center; justify-content: center; position: relative; }
.carousel-slide .label {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.95);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 7px 24px;
  color: var(--tx);
  white-space: nowrap;
  letter-spacing: 0.06em;
  border: 1px solid #e8e2d6;
  border-radius: 2px;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px; height: 38px;
  border: 1px solid #e8e2d6;
  background: rgba(255,255,255,0.95);
  color: var(--tx);
  font-size: 1rem;
  cursor: pointer;
  z-index: 10;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
  border-radius: 4px;
}
.carousel-btn:hover { background: var(--tx); color: #F0E6CC; }
.carousel-btn.prev { left: 12px; }
.carousel-btn.next { right: 12px; }
.carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 16px; }
.dot { width: 6px; height: 6px; border-radius: 50%; background: #ddd; border: 1px solid var(--gold); cursor: pointer; transition: all 0.2s; }
.dot.active { background: var(--gold); transform: scale(1.3); }

/* ── WAXING ── */
.service-list {
  max-width: 680px;
  margin: 0 auto;
  padding: 48px 40px 64px;
}
.service-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #f0ebe0;
  transition: padding-left 0.2s ease;
}
.service-row:last-child { border-bottom: none; }
.service-row:hover { padding-left: 8px; }
.service-row span:first-child { font-size: 0.9rem; color: var(--tx); font-weight: 400; }
.service-price { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-weight: 600; color: var(--gold); }

/* ── SPECIALS ── */
.specials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1060px;
  margin: 0 auto;
  padding: 48px 40px 64px;
}
.special-card {
  background: var(--white);
  border: 1px solid #e8e2d6;
  border-radius: 8px;
  padding: 36px 28px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.special-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.special-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px var(--shadow); }
.special-badge {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 4px 14px;
  border-radius: 2px;
  margin-bottom: 14px;
}
.special-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--tx);
  margin-bottom: 10px;
}
.special-card p { font-size: 0.84rem; color: var(--tm); line-height: 1.75; margin-bottom: 18px; font-weight: 300; }
.special-price { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 700; color: var(--gold); }
.special-price small { font-size: 0.95rem; text-decoration: line-through; color: var(--tl); margin-left: 6px; }

/* ── GALLERY ── */
.gallery-tabs {
  display: flex;
  justify-content: center;
  border-bottom: 1px solid #eee;
  background: var(--white);
  padding: 0;
}
.gallery-tab {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tm);
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  padding: 20px 40px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.gallery-tab:hover { color: var(--gold); }
.gallery-tab.active { color: var(--gold); border-bottom-color: var(--gold); }
.gallery-section { display: none; padding: 48px 40px 64px; max-width: 1060px; margin: 0 auto; }
.gallery-section.show { display: block; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
}
.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid #e8e2d6;
  border-radius: 4px;
  background: var(--cream);
  position: relative;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-placeholder { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; color: var(--tl); }
.gallery-placeholder .ph-icon { width: 32px; height: 32px; border: 1px solid #ddd; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.gallery-placeholder .ph-icon svg { width: 14px; height: 14px; stroke: var(--tl); fill: none; }
.gallery-placeholder span { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; }
.gallery-upload-note { text-align: center; font-size: 0.78rem; color: var(--tl); font-style: italic; margin-bottom: 24px; }

/* ── FOOTER ── */
footer { background: var(--tx); color: rgba(255,255,255,0.45); padding: 44px 40px; text-align: center; }
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 600; color: #F0E6CC; letter-spacing: 0.08em; margin-bottom: 12px; }
footer p { font-size: 0.76rem; letter-spacing: 0.06em; line-height: 2; }
footer span { color: rgba(255,255,255,0.6); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .service-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .top-nav { padding: 0 20px; }
  .top-nav-inner { flex-direction: column; height: auto; padding: 16px 0; gap: 12px; }
  nav a { padding: 0 10px; font-size: 0.65rem; }
  .service-cards { grid-template-columns: 1fr 1fr; }
  .hero-logo { height: 100px; }
  .info-strip { flex-direction: column; gap: 20px; }
  .info-divider { display: none; }
  .pedi-grid, .cards-section, .service-list, .specials-grid, .gallery-section { padding-left: 20px; padding-right: 20px; }
}

.text-inspo-box {
  text-align: center;
  padding: 16px 8px;
}
.text-inspo-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--tx);
  margin-bottom: 12px;
}
.text-inspo-sub {
  font-size: 0.88rem;
  color: var(--tm);
  font-weight: 300;
  line-height: 1.8;
  max-width: 340px;
  margin: 0 auto;
}
.text-inspo-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--gold);
  margin-top: 14px;
  letter-spacing: 0.04em;
}
