/* ==========================================================================
   Jenny & Co. Beauty Studio — proposal site
   ========================================================================== */

:root {
  --cream: #faf5f1;
  --blush: #f3e2dd;
  --blush-deep: #e3b7ac;
  --rose: #c98a7d;
  --charcoal: #2b2320;
  --charcoal-soft: #5a4f49;
  --gold: #b6905f;
  --white: #ffffff;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1180px;
  --radius: 14px;
  --shadow: 0 20px 50px -25px rgba(43, 35, 32, 0.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.6;
  font-weight: 300;
}

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  margin: 0 0 0.5em;
  line-height: 1.15;
  color: var(--charcoal);
}

p { margin: 0 0 1em; }

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.center { text-align: center; }

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--rose);
  font-weight: 500;
  margin-bottom: 0.75em;
}

.section-lead {
  max-width: 620px;
  margin: 0 auto 3rem;
  color: var(--charcoal-soft);
}

section { padding: 6rem 0; }

/* ---------- Proposal banner ---------- */
.proposal-banner {
  background: var(--charcoal);
  color: var(--cream);
  font-size: 0.85rem;
  padding: 0.7rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
  position: relative;
}
.proposal-banner strong { color: var(--gold); }
.proposal-banner button {
  background: none;
  border: none;
  color: var(--cream);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  padding: 0 0.25rem;
  opacity: 0.7;
}
.proposal-banner button:hover { opacity: 1; }
.proposal-banner.hidden { display: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  border: 1.5px solid transparent;
  cursor: pointer;
}
.btn-primary {
  background: var(--charcoal);
  color: var(--cream);
}
.btn-primary:hover { background: var(--rose); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-ghost {
  background: transparent;
  border-color: rgba(43, 35, 32, 0.25);
  color: var(--charcoal);
}
.btn-ghost:hover { border-color: var(--charcoal); background: rgba(43,35,32,0.05); }
.btn-small { padding: 0.6rem 1.4rem; font-size: 0.8rem; }

.text-link {
  color: var(--rose);
  border-bottom: 1px solid rgba(201, 138, 125, 0.4);
  padding-bottom: 2px;
  font-size: 0.95rem;
}
.text-link:hover { border-color: var(--rose); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 245, 241, 0.9);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid rgba(43, 35, 32, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 28px;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.logo span { color: var(--rose); font-style: italic; }

.main-nav {
  display: flex;
  gap: 2.2rem;
  margin: 0 auto;
}
.main-nav a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--charcoal-soft);
  position: relative;
  padding: 0.3rem 0;
}
.main-nav a:hover { color: var(--charcoal); }

.nav-cta { flex-shrink: 0; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  display: block;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(43,35,32,0.72) 0%, rgba(43,35,32,0.45) 45%, rgba(43,35,32,0.2) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  color: var(--cream);
  max-width: 700px;
}
.hero .eyebrow { color: var(--blush-deep); }
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  color: var(--white);
  margin-bottom: 0.4em;
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(250, 245, 241, 0.9);
  max-width: 520px;
  margin-bottom: 2rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero .btn-ghost {
  border-color: rgba(250, 245, 241, 0.5);
  color: var(--cream);
}
.hero .btn-ghost:hover { background: rgba(250,245,241,0.12); border-color: var(--cream); }

/* ---------- About ---------- */
.about-inner {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 4.5rem;
  align-items: center;
}
.about-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.about-copy h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
.about-copy p { color: var(--charcoal-soft); }

/* ---------- Services ---------- */
.services { background: var(--blush); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 4rem;
  margin-top: 1rem;
}
.service-category h3 {
  font-size: 1.15rem;
  padding-bottom: 0.6rem;
  margin-bottom: 1.2rem;
  border-bottom: 2px solid var(--blush-deep);
  color: var(--rose);
}
.service-list { list-style: none; margin: 0; padding: 0; }
.service-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.2rem 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(43, 35, 32, 0.08);
}
.service-list li:last-child { border-bottom: none; }
.service-name {
  font-weight: 500;
  font-size: 1rem;
}
.service-meta {
  font-weight: 400;
  font-size: 0.78rem;
  color: var(--charcoal-soft);
  margin-left: 0.6em;
  white-space: nowrap;
}
.service-desc {
  grid-column: 1 / 2;
  font-size: 0.85rem;
  color: var(--charcoal-soft);
}
.service-price {
  grid-column: 2 / 3;
  grid-row: 1 / 3;
  align-self: center;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--charcoal);
  white-space: nowrap;
}

/* ---------- Gallery / Instagram ---------- */
.ig-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  border-radius: var(--radius);
  overflow: hidden;
}
.ig-tile {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.ig-tile:first-child {
  grid-column: span 2;
  grid-row: span 2;
}
.ig-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.ig-tile:hover img { transform: scale(1.06); }
.ig-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--white);
  background: rgba(43, 35, 32, 0);
  opacity: 0;
  transition: all 0.3s ease;
}
.ig-tile:hover .ig-icon {
  opacity: 1;
  background: rgba(43, 35, 32, 0.28);
}
.instagram-feed iframe { width: 100%; border: none; border-radius: var(--radius); }

/* ---------- Book ---------- */
.booking-embed {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
}
.booking-embed iframe {
  width: 100%;
  height: 780px;
  border: none;
  display: block;
}

/* ---------- Visit ---------- */
.visit { background: var(--blush); }
.visit-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: center;
}
.visit-address {
  font-size: 1.15rem;
  font-family: var(--font-display);
  color: var(--charcoal);
}
.hours-list {
  list-style: none;
  margin: 1.5rem 0;
  padding: 0;
  max-width: 320px;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(43, 35, 32, 0.1);
  font-size: 0.92rem;
}
.hours-list .closed { color: var(--charcoal-soft); }
.visit-contact a { border-bottom: 1px solid rgba(43,35,32,0.25); }
.visit-contact a:hover { border-color: var(--charcoal); }
.visit-map iframe {
  width: 100%;
  height: 380px;
  border: none;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--charcoal);
  color: var(--cream);
  padding: 3.5rem 0 2rem;
}
.footer-inner { text-align: center; }
.footer-logo { justify-content: center; margin-bottom: 1.2rem; font-size: 1.3rem; }
.footer-logo span { color: var(--blush-deep); }
.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.6rem;
  margin-bottom: 1.8rem;
}
.footer-links a { font-size: 0.85rem; color: rgba(250,245,241,0.75); }
.footer-links a:hover { color: var(--white); }
.footer-copy { font-size: 0.78rem; color: rgba(250,245,241,0.5); }

/* ---------- Mobile sticky book bar ---------- */
.mobile-book-bar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  background: var(--charcoal);
  color: var(--cream);
  text-align: center;
  padding: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .about-inner, .visit-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-media { order: -1; }
  .services-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  section { padding: 4rem 0; }
}

@media (max-width: 720px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--cream);
    padding: 1rem 28px 1.5rem;
    gap: 0.4rem;
    border-bottom: 1px solid rgba(43, 35, 32, 0.08);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 0.6rem 0; }
  .nav-cta { display: none; }
  .menu-toggle { display: flex; }
  .hero { min-height: 100vh; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .ig-grid { grid-template-columns: repeat(2, 1fr); }
  .ig-tile:first-child { grid-column: span 2; grid-row: span 1; }
  .booking-embed iframe { height: 620px; }
  .mobile-book-bar { display: block; }
  body { padding-bottom: 3.2rem; }
}
