/* =========================================================================
   MEENA'S BEAUTY AND LASER — SITE STYLES
   -------------------------------------------------------------------------
   HOW THIS FILE IS ORGANIZED (read this if you're new to editing it):
     1. EDITABLE SETTINGS — colors, fonts, spacing. Change things here first.
     2. RESET & BASE — generic defaults, safe to leave alone.
     3. LAYOUT HELPERS — reusable containers/sections.
     4. COMPONENTS — header, nav, buttons, cards, footer, etc.
     5. RESPONSIVE — rules for tablets/phones.
   Search for "EDIT:" comments — those mark the spots people change most.
   ========================================================================= */

/* -------------------------------------------------------------------------
   1. EDITABLE SETTINGS
   ------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700&family=DM+Sans:wght@400;500;600;700&display=swap');

:root {
  /* EDIT: brand colors. These were sampled from your real logo (the deep
     maroon) plus a warm gold that pairs with it. Change the hex codes to
     re-theme the whole site from one place. */
  --color-primary: #7e2120;       /* brand maroon — from your logo */
  --color-primary-dark: #5c1817;  /* hover state for primary */
  --color-gold: #b08d47;          /* warm gold accent */
  --color-ink: #2b2420;           /* main text color */
  --color-ink-soft: #6b5f58;      /* secondary/muted text */
  --color-cream: #faf6f1;         /* page background */
  --color-cream-deep: #f3e8de;    /* section background, cards */
  --color-white: #ffffff;
  --color-border: #e8d9cd;

  /* EDIT: fonts. Headings use a serif font, body text a clean sans. */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', 'Segoe UI', sans-serif;

  --radius: 14px;
  --shadow-soft: 0 10px 30px rgba(43, 36, 32, 0.1);

  --max-width: 1160px;
}

/* -------------------------------------------------------------------------
   2. RESET & BASE
   ------------------------------------------------------------------------- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-ink);
  background: var(--color-cream);
  line-height: 1.65;
  font-size: 16px;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.25;
  margin: 0 0 0.5em;
  color: var(--color-ink);
}

h1 { font-size: clamp(2.1rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1em; color: var(--color-ink-soft); }

a { color: var(--color-primary); text-decoration: none; }
a:hover { color: var(--color-primary-dark); }

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

ul { padding-left: 1.2em; color: var(--color-ink-soft); }

/* -------------------------------------------------------------------------
   3. LAYOUT HELPERS
   ------------------------------------------------------------------------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 72px 0; }
.section--tight { padding: 44px 0; }
.section--alt { background: var(--color-cream-deep); }

.section-heading {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.section-heading .eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 10px;
}

.grid { display: grid; gap: 28px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.text-center { text-align: center; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.split.reverse .split-media { order: 2; }

.split-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  width: 100%;
  object-fit: cover;
}

/* -------------------------------------------------------------------------
   4. COMPONENTS
   ------------------------------------------------------------------------- */

/* --- Top announcement bar --- */
.announce-bar {
  background: var(--color-ink);
  color: var(--color-cream);
  text-align: center;
  font-size: 0.85rem;
  padding: 9px 16px;
  letter-spacing: 0.02em;
}
.announce-bar strong { color: #f0cf9a; }

/* --- Header / Nav --- */
.site-header {
  background: var(--color-cream);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  gap: 20px;
}

.brand img { height: 46px; width: auto; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.main-nav a {
  color: var(--color-ink);
  font-size: 0.92rem;
  font-weight: 500;
}

.main-nav a.active,
.main-nav a:hover { color: var(--color-primary); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--color-ink); display: block; }

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }

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

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

.btn--small { padding: 9px 20px; font-size: 0.8rem; }

/* --- Hero (uses a real photo of Meena & Christy) --- */
.hero {
  position: relative;
  color: var(--color-white);
  padding: 100px 0 92px;
  background: linear-gradient(100deg, rgba(43,20,19,0.90) 0%, rgba(43,20,19,0.80) 30%, rgba(43,20,19,0.50) 45%, rgba(43,20,19,0.12) 58%, rgba(43,20,19,0) 70%), url("images/hero-team.jpg");
  background-size: cover;
  background-position: right top;
}
.hero h1, .hero p { color: var(--color-white); }
.hero h1, .hero-eyebrow, .hero-lede, .hero-note { text-shadow: 0 2px 12px rgba(20,8,7,0.45); }
.hero h1 span { color: #f0cf9a; }
.hero-eyebrow { color: #f0cf9a; text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.8rem; font-weight: 600; }
.hero-lede { max-width: 520px; font-size: 1.08rem; }
.hero-actions { display: flex; gap: 16px; margin-top: 28px; flex-wrap: wrap; }
.hero-note { margin-top: 22px; font-size: 0.85rem; color: #e8d9cf; max-width: 480px; }
.hero-phones { display: flex; gap: 22px; margin-top: 18px; flex-wrap: wrap; }
.hero-phones a { color: var(--color-white); font-weight: 600; text-shadow: 0 2px 10px rgba(20,8,7,0.5); }
.hero-phones a:hover { color: #f0cf9a; }

/* --- Icon circle used across service cards --- */
.icon-circle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--color-cream-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 18px;
}

/* --- Cards --- */
.card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-soft);
}

.step-card { text-align: center; }
.step-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 20px;
}

.service-card h3 { margin-bottom: 8px; }
.service-card .price-tag {
  display: inline-block;
  font-weight: 600;
  color: var(--color-primary);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

/* --- Banner / callout --- */
.callout {
  background: var(--color-ink);
  color: var(--color-cream);
  border-radius: var(--radius);
  padding: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.callout h2, .callout p { color: var(--color-cream); }
.callout p { color: #d8cdc2; }

/* --- Price pill row (home page pricing highlights) --- */
.price-strip {
  background: var(--color-ink);
  color: var(--color-cream);
}
.price-card {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
}
.price-card .amount {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  color: #f0cf9a;
  margin-bottom: 6px;
}
.price-card .label { font-weight: 600; margin-bottom: 4px; }
.price-card .sub { font-size: 0.82rem; color: #cbb; opacity: 0.75; }

/* --- Testimonials --- */
.testimonial {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--color-border);
}
.testimonial .stars { color: var(--color-gold); margin-bottom: 10px; letter-spacing: 2px; }
.testimonial .t-title { font-weight: 600; margin-bottom: 6px; }
.testimonial footer { margin-top: 16px; font-weight: 600; font-size: 0.9rem; color: var(--color-ink); }

/* --- Gift voucher cards --- */
.voucher-card {
  text-align: center;
  padding: 36px 26px;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  background: var(--color-white);
}
.voucher-card.featured {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}
.voucher-card.featured h3, .voucher-card.featured p, .voucher-card.featured .amount { color: var(--color-white); }
.voucher-card .amount {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 4px;
}

/* --- Quick nav pills (treatments page) --- */
.pill-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 56px;
}
.pill-nav a {
  padding: 9px 18px;
  border-radius: 999px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-ink);
}
.pill-nav a:hover { border-color: var(--color-primary); color: var(--color-primary); }

/* --- Treatment detail block --- */
.treatment-block { padding: 56px 0; border-bottom: 1px solid var(--color-border); }
.treatment-block:last-child { border-bottom: none; }
.treatment-block .eyebrow-line { display: block; margin-bottom: 6px; }

.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.before-after figure { margin: 0; text-align: center; }
.before-after img { border-radius: 10px; width: 100%; height: 170px; object-fit: cover; }
.before-after figcaption { font-size: 0.78rem; color: var(--color-ink-soft); margin-top: 6px; text-transform: uppercase; letter-spacing: 0.05em; }

.price-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.price-list li {
  background: var(--color-cream-deep);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-ink);
}
.price-list li strong { color: var(--color-primary); }

/* --- Info list (about page, contacts) --- */
.info-list { list-style: none; padding: 0; margin: 0; }
.info-list li {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-ink);
  align-items: flex-start;
}
.info-list li:last-child { border-bottom: none; }
.info-list .icon-circle { width: 40px; height: 40px; font-size: 1.1rem; margin-bottom: 0; flex-shrink: 0; }

/* --- Team member card --- */
.team-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  align-items: start;
  padding: 36px 0;
  border-bottom: 1px solid var(--color-border);
}
.team-card:last-child { border-bottom: none; }
.team-card img {
  width: 220px;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

/* --- Map / contact panel --- */
.map-frame { width: 100%; height: 340px; border: 0; border-radius: var(--radius); }

/* --- Contact form --- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 0.85rem; font-weight: 600; color: var(--color-ink); }
.form-field input, .form-field select {
  padding: 12px 14px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--color-white);
  color: var(--color-ink);
}
.form-field input:focus, .form-field select:focus { outline: 2px solid var(--color-primary); outline-offset: 1px; }
.form-field.full { grid-column: 1 / -1; }

/* --- Footer --- */
.site-footer { background: var(--color-ink); color: #cfc4ba; padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 36px; }
.site-footer h4 { color: var(--color-cream); font-size: 1rem; margin-bottom: 16px; }
.site-footer a { color: #cfc4ba; }
.site-footer a:hover { color: var(--color-cream); }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.social-row { display: flex; gap: 12px; margin-top: 16px; }
.social-row a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid #4a4038;
  display: flex; align-items: center; justify-content: center;
}
.footer-bottom {
  border-top: 1px solid #453b33;
  padding-top: 22px;
  font-size: 0.82rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  color: #a89c90;
}

/* --- Page header (interior pages) --- */
.page-header {
  padding: 56px 0 40px;
  text-align: center;
  background: var(--color-cream-deep);
  border-bottom: 1px solid var(--color-border);
}
.page-header p { max-width: 620px; margin: 0 auto; }

.eyebrow-line {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  color: var(--color-primary);
  font-weight: 600;
}

.disclaimer {
  font-size: 0.82rem;
  color: var(--color-ink-soft);
  border-top: 1px dashed var(--color-border);
  padding-top: 16px;
  margin-top: 24px;
}

/* -------------------------------------------------------------------------
   5. RESPONSIVE
   ------------------------------------------------------------------------- */
@media (max-width: 900px) {
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .form-grid { grid-template-columns: 1fr; }
  .hero { background-position: 70% top; }
}

@media (max-width: 720px) {
  .main-nav, .nav-cta .btn--outline { display: none; }
  .nav-toggle { display: flex; }

  .site-header.nav-open .main-nav {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-cream);
    flex-direction: column;
    padding: 20px 24px 28px;
    border-bottom: 1px solid var(--color-border);
    gap: 16px;
  }

  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .team-card { grid-template-columns: 1fr; text-align: center; }
  .team-card img { margin: 0 auto; width: 100%; max-width: 260px; height: 300px; }
  .callout { flex-direction: column; text-align: center; }
  .section { padding: 52px 0; }
  .hero { background-image: linear-gradient(180deg, rgba(43,20,19,0.62) 0%, rgba(43,20,19,0.5) 45%, rgba(43,20,19,0.62) 100%), url("images/hero-team.jpg"); text-align: center; }
  .hero-lede { margin: 0 auto; }
  .hero-actions, .hero-phones { justify-content: center; }
}
