/* ===== Beauty Lounge — brand styles ===== */
:root {
  --blush:       #eca3ad;   /* logo pink */
  --blush-deep:  #d98593;
  --blush-soft:  #fbeef0;
  --gold:        #e3b23c;
  --gold-soft:   #f6ead0;
  --cream:       #fffbf8;
  --ink:         #3d3438;
  --muted:       #8a7e82;
  --line:        #efe3e4;
  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans:  'Jost', 'Helvetica Neue', Arial, sans-serif;
  --maxw: 1140px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(2rem, 4vw, 3rem); line-height: 1.1; letter-spacing: .5px; }
h3 { font-family: var(--serif); font-weight: 600; font-size: 1.5rem; }
h4 { font-family: var(--sans); font-weight: 600; font-size: .8rem; letter-spacing: 2px; text-transform: uppercase; color: var(--blush-deep); margin-bottom: 10px; }

.eyebrow { font-family: var(--sans); font-size: .72rem; font-weight: 500; letter-spacing: 4px; text-transform: uppercase; color: var(--blush-deep); margin-bottom: 14px; }
.eyebrow.gold { color: var(--gold); }

/* ===== Buttons ===== */
.btn {
  display: inline-block; font-family: var(--sans); font-weight: 500;
  font-size: .82rem; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 14px 28px; border-radius: 999px; cursor: pointer;
  transition: all .25s ease; border: 1.5px solid transparent; white-space: nowrap;
}
.btn-solid  { background: var(--blush); color: #fff; }
.btn-solid:hover  { background: var(--blush-deep); transform: translateY(-2px); }
.btn-ghost  { border-color: #fff; color: #fff; }
.btn-ghost:hover  { background: #fff; color: var(--blush-deep); }
.btn-call   { background: var(--blush); color: #fff; padding: 10px 22px; }
.btn-call:hover   { background: var(--blush-deep); }
.btn-block  { display: block; text-align: center; margin-top: 8px; }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 251, 248, .9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand-mark { height: 34px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a { font-size: .82rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--ink); transition: color .2s; }
.nav-links a:not(.btn):hover { color: var(--blush-deep); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 26px; height: 2px; background: var(--ink); transition: .3s; }

/* ===== Hero ===== */
.hero {
  position: relative; min-height: 92vh; display: flex; align-items: center;
  background: linear-gradient(135deg, #f7d9de 0%, #fbeef0 45%, #fff6ef 100%);
  text-align: center; overflow: hidden;
}
.hero::after {
  /* subtle gold flourish glow */
  content: ""; position: absolute; width: 60vw; height: 60vw; right: -15vw; top: -10vw;
  background: radial-gradient(circle, rgba(227,178,60,.12), transparent 60%); pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; padding: 60px 24px; width: 100%; }
.hero-wordmark { width: min(560px, 82%); margin: 0 auto 8px; }
.hero-tagline { font-family: var(--sans); letter-spacing: 7px; text-transform: uppercase; font-size: .9rem; color: var(--blush-deep); font-weight: 400; }
.hero-sub { font-family: var(--serif); font-style: italic; font-size: 1.5rem; color: var(--ink); margin-top: 18px; }
.hero-rating { display: inline-flex; align-items: center; gap: 10px; margin-top: 22px; font-size: .85rem; letter-spacing: .5px; color: var(--ink); background: rgba(255,255,255,.6); padding: 8px 18px; border-radius: 999px; }
.hero-rating .stars { color: var(--gold); letter-spacing: 2px; }
.hero-cta { margin-top: 36px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero .btn-ghost { border-color: var(--blush-deep); color: var(--blush-deep); }
.hero .btn-ghost:hover { background: var(--blush-deep); color: #fff; }

/* ===== Sections ===== */
.section { padding: 96px 0; }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.section-intro { color: var(--muted); margin-top: 16px; font-size: 1.05rem; }

/* ===== Service cards ===== */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.svc-card {
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 34px 28px; transition: transform .25s, box-shadow .25s, border-color .25s;
  position: relative;
}
.svc-card:hover { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(217,133,147,.14); border-color: var(--blush); }
.svc-icon { color: var(--gold); font-size: 1.2rem; display: block; margin-bottom: 12px; }
.svc-card h3 { margin-bottom: 12px; }
.svc-card p { color: var(--muted); font-size: .95rem; }
.svc-card em { color: var(--blush-deep); font-style: italic; }
.svc-price { display: inline-block; margin-top: 18px; font-family: var(--serif); font-style: italic; font-size: 1.2rem; color: var(--ink); }
.svc-note { text-align: center; color: var(--muted); font-size: .9rem; margin-top: 40px; font-style: italic; }

/* ===== Signature band ===== */
.signature { background: linear-gradient(135deg, #fbeef0, #fff6ef); text-align: center; padding: 90px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.signature-inner { max-width: 680px; }
.signature-emblem { width: 96px; margin: 0 auto 20px; opacity: .95; }
.signature h2 { margin-bottom: 18px; }
.signature p { color: var(--ink); font-size: 1.1rem; }

/* ===== Gallery ===== */
.gallery { padding: 96px 0; background: var(--cream); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-grid img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: 14px; box-shadow: 0 10px 30px rgba(217,133,147,.12); transition: transform .4s ease; }
.gallery-grid img:hover { transform: scale(1.03); }

/* ===== About ===== */
.about-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center; }
.about-photo-ph {
  aspect-ratio: 4/5; border-radius: 16px; border: 2px dashed var(--blush);
  background: var(--blush-soft); display: flex; align-items: center; justify-content: center;
  color: var(--blush-deep); font-family: var(--serif); font-style: italic; font-size: 1.3rem;
}
.about-photo-img {
  aspect-ratio: 4/5; background-image: url("images/Monica.jpg");
  background-size: 140%; background-position: 50% 34%; background-repeat: no-repeat;
  border-radius: 16px; box-shadow: 0 10px 30px rgba(217,133,147,.12);
}
.about-copy p { color: var(--ink); margin-top: 16px; }
.about-copy h2 { margin-top: 6px; }
.about-sign { font-family: var(--serif); font-style: italic; font-size: 1.3rem; color: var(--blush-deep); margin-top: 24px; }

/* ===== Visit ===== */
.visit { background: #fff; }
.visit-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; }
.info-block { margin-bottom: 30px; }
.info-block p, .info-block a { color: var(--ink); }
.info-block a:hover { color: var(--blush-deep); }
.link-arrow { color: var(--blush-deep) !important; font-weight: 500; font-size: .9rem; }
.hours { width: 100%; border-collapse: collapse; }
.hours td { padding: 7px 0; border-bottom: 1px solid var(--line); font-size: .95rem; }
.hours td:last-child { text-align: right; color: var(--muted); }
.hours .closed { color: var(--blush-deep); }
.socials { display: flex; gap: 18px; align-items: center; }
.socials a { color: var(--blush-deep); display: inline-flex; transition: color .2s ease, transform .2s ease; }
.socials a:hover { color: var(--blush); transform: translateY(-2px); }
.socials svg { display: block; }
.visit-map { border-radius: 16px; overflow: hidden; border: 1px solid var(--line); min-height: 420px; }
.visit-map iframe { width: 100%; height: 100%; min-height: 420px; border: 0; }

/* ===== Footer ===== */
.site-footer { background: var(--ink); color: #f3e8ea; text-align: center; padding: 56px 0 40px; }
.footer-emblem { width: 64px; margin: 0 auto 16px; filter: saturate(1.1); }
.footer-name { font-family: var(--serif); font-size: 1.4rem; letter-spacing: .5px; }
.footer-links { display: flex; gap: 26px; justify-content: center; flex-wrap: wrap; margin: 22px 0; }
.footer-links a { font-size: .8rem; letter-spacing: 1.5px; text-transform: uppercase; color: #f3e8ea; opacity: .85; }
.footer-links a:hover { opacity: 1; color: var(--blush); }
.footer-legal { font-size: .8rem; color: #b9a9ad; }
.footer-legal a { color: var(--blush); }

/* ===== Responsive ===== */
@media (max-width: 860px) {
  .about-inner, .visit-grid { grid-template-columns: 1fr; gap: 36px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .nav-links {
    position: fixed; inset: 76px 0 auto 0; flex-direction: column; gap: 0;
    background: var(--cream); border-bottom: 1px solid var(--line);
    max-height: 0; overflow: hidden; transition: max-height .3s ease;
  }
  .nav-links.open { max-height: 360px; }
  .nav-links a { width: 100%; text-align: center; padding: 18px; border-top: 1px solid var(--line); }
  .nav-links .btn-call { margin: 14px auto; width: auto; }
  .nav-toggle { display: flex; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .section { padding: 70px 0; }
}
