@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Lato:wght@300;400;700&display=swap');

/* ================================
   ROSE & MAUVE THEME
   ACUPUNCTURE CAMBERLEY
   Targeting women 30-50
   ================================ */

:root {
  --rose:        #9e4d6a;
  --rose-mid:    #b5607f;
  --rose-light:  #cc8099;
  --blush:       #e8c4d0;
  --blush-pale:  #f5e8ee;
  --mauve:       #7a5c7a;
  --mauve-light: #9e80a0;
  --mauve-pale:  #e8dce8;
  --sage:        #6b8c7a;
  --sage-light:  #90b0a0;
  --sage-pale:   #d8ece4;
  --cream:       #fdf9f9;
  --warm-white:  #f9f2f4;
  --charcoal:    #2e2830;
  --mid:         #6b606e;
  --light:       #d4ccd6;
  --border:      #e8dee4;
  --font-display:'Libre Baskerville', Georgia, serif;
  --font-body:   'Lato', Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

/* ================================
   TOP BAR
   ================================ */
div#top {
  background: var(--mauve);
  border-bottom: 3px solid var(--rose-light);
  overflow: auto;
}
div#top .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
div#top a, div#top a:visited { color: #fff; text-decoration: none; border-bottom: none; }
div#top a:hover { color: var(--blush); }
div#top .appt-button a {
  background: var(--rose) !important;
  color: #fff !important;
  font-family: var(--font-body) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  padding: 9px 22px !important;
  border-radius: 30px !important;
  text-decoration: none !important;
  display: inline-block !important;
  box-shadow: none !important;
  border: 0 !important;
  transition: background 0.2s !important;
}
div#top .appt-button a:hover { background: var(--rose-mid) !important; }

/* ================================
   HEADER
   ================================ */
header {
  background: var(--warm-white);
  border-bottom: 1px solid var(--border);
  padding: 28px 0 22px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(158,77,106,0.04) 0%, transparent 60%),
                    radial-gradient(circle at 80% 50%, rgba(122,92,122,0.04) 0%, transparent 60%);
  pointer-events: none;
}
header .inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
header h1 {
  font-family: var(--font-display);
  font-size: 2.4em;
  font-weight: 400;
  color: var(--rose);
  text-align: center;
  margin: 0;
  letter-spacing: 0.02em;
}
header h1 a, header h1 a:visited { color: var(--rose); text-decoration: none; border-bottom: none; }
header h1 a:hover { color: var(--rose-mid); }
header .petal-accent {
  display: block;
  text-align: center;
  font-size: 1.2em;
  margin-top: 6px;
  opacity: 0.35;
  letter-spacing: 0.5em;
}
header .tagline {
  font-family: var(--font-body);
  font-size: 0.78em;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mauve-light);
  margin: 6px 0 0;
  text-align: center;
  display: block;
}

/* ================================
   NAVIGATION
   ================================ */
nav#main {
  background: var(--mauve);
  border-bottom: 3px solid var(--rose-light);
  position: sticky;
  top: 0;
  z-index: 100;
}
nav#main .inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
nav#main ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; }
nav#main ul li { list-style: none; display: inline; }
nav#main ul li a, nav#main ul li a:visited {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  border-bottom: 3px solid transparent;
  padding: 14px 18px;
  transition: color 0.2s, border-color 0.2s;
}
nav#main ul li a:hover { color: #fff; border-bottom-color: var(--blush); }
nav#main ul li.active a { color: #fff; border-bottom: 3px solid var(--rose-light); }

div#mobmenu { display: none; }
div#mobmenu a, div#mobmenu a:visited {
  color: var(--blush);
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: none;
}

/* ================================
   HERO SLIDER
   ================================ */
div#slider {
  position: relative;
  overflow: hidden;
  background: var(--mauve);
  height: 420px;
  background-image: url('images/camberley-hero.png');
  background-size: cover;
  background-position: center 40%;
}
div#slider .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(122,92,122,0.85) 0%, rgba(158,77,106,0.5) 55%, rgba(158,77,106,0.15) 100%);
  display: flex;
  align-items: center;
}
div#slider .hero-text {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}
div#slider .hero-text h2 {
  font-family: var(--font-display);
  font-size: 50px;
  font-weight: 400;
  font-style: italic;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 14px;
}
div#slider .hero-text p {
  font-size: 17px;
  color: rgba(255,255,255,0.9);
  max-width: 500px;
  margin-bottom: 28px;
  font-weight: 300;
  line-height: 1.7;
}
div#slider .hero-text a.cta {
  display: inline-block;
  background: var(--rose);
  color: #fff;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: none;
  padding: 14px 30px;
  border-radius: 30px;
  transition: background 0.2s, transform 0.15s;
}
div#slider .hero-text a.cta:hover { background: var(--rose-mid); transform: translateY(-1px); }

/* ================================
   CONTENT WRAP
   ================================ */
div#content-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 52px 30px 72px;
}

/* ================================
   TYPOGRAPHY
   ================================ */
h1 { font-family: var(--font-display); font-size: 2em; font-weight: 400; color: var(--rose); margin-bottom: 0.4em; }
h2 { font-family: var(--font-display); font-size: 1.55em; font-weight: 400; color: var(--mauve); margin: 1.8em 0 0.5em; padding-bottom: 8px; border-bottom: 1px solid var(--blush); }
h2:first-child { margin-top: 0; }
h3 { font-family: var(--font-display); font-size: 1.15em; font-weight: 400; font-style: italic; color: var(--rose); margin: 1.3em 0 0.4em; }
p { margin-bottom: 1em; font-size: 15px; color: var(--charcoal); line-height: 1.85; }
p:last-child { margin-bottom: 0; }
p strong { font-weight: 700; color: var(--mauve); }
a { color: var(--rose-mid); text-decoration: none; border-bottom: 1px solid var(--blush); transition: color 0.2s, border-color 0.2s; }
a:visited { color: var(--rose-mid); }
a:hover { color: var(--mauve); border-color: var(--mauve-light); }
ul, ol { margin: 0.5em 0 1.2em 1.4em; }
li { margin-bottom: 8px; font-size: 15px; line-height: 1.8; }
li strong { color: var(--mauve); font-weight: 700; }

/* ================================
   PAGE INTRO
   ================================ */
.page-intro {
  border-left: 4px solid var(--rose-light);
  padding: 4px 0 4px 22px;
  margin-bottom: 36px;
}
.page-intro p {
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  color: var(--mauve);
  line-height: 1.65;
  margin: 0;
}

/* ================================
   CARD GRID
   ================================ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  margin: 28px 0 40px;
}
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 26px 22px;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--rose), var(--mauve));
}
.card:hover { box-shadow: 0 8px 28px rgba(158,77,106,0.12); transform: translateY(-3px); }
.card h3 { font-size: 1.1em; font-style: normal; color: var(--rose); margin: 0 0 10px; }
.card h3 a { border-bottom: none; }
.card p { font-size: 14px; color: var(--mid); margin: 0; line-height: 1.7; }

/* ================================
   FEATURE STRIP
   ================================ */
.feature-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin: 48px 0;
  padding: 44px;
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.feature-strip h2 { margin-top: 0; }

/* ================================
   BLOCKQUOTE
   ================================ */
blockquote {
  background: var(--blush-pale);
  border-left: 4px solid var(--rose-light);
  padding: 24px 28px;
  margin: 30px 0;
  border-radius: 0 12px 12px 0;
}
blockquote p {
  font-family: var(--font-display);
  font-size: 19px;
  font-style: italic;
  color: var(--mauve);
  margin: 0;
  line-height: 1.65;
}

/* ================================
   CTA BANNER
   ================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--mauve) 0%, var(--rose) 100%);
  color: #fff;
  padding: 40px 44px;
  border-radius: 12px;
  margin: 48px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-banner h3 { font-family: var(--font-display); font-size: 24px; font-weight: 400; font-style: italic; color: #fff; margin: 0 0 6px; }
.cta-banner p { color: rgba(255,255,255,0.82); margin: 0; font-size: 15px; }
.cta-banner a.btn {
  display: inline-block;
  background: #fff;
  color: var(--rose);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: none;
  padding: 13px 28px;
  border-radius: 30px;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}
.cta-banner a.btn:hover { background: var(--blush-pale); color: var(--mauve); }

/* ================================
   FEES TABLE
   ================================ */
.fees-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.fees-table th { background: var(--mauve); color: #fff; font-family: var(--font-body); font-weight: 400; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; padding: 14px 20px; text-align: left; }
.fees-table td { padding: 14px 20px; font-size: 15px; border-bottom: 1px solid var(--border); color: var(--charcoal); }
.fees-table tr:last-child td { border-bottom: none; }
.fees-table tr:nth-child(even) td { background: var(--warm-white); }
.fees-table td.price { font-family: var(--font-display); font-size: 20px; color: var(--rose); white-space: nowrap; }

/* ================================
   FOOTER
   ================================ */
footer#site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.5);
  padding: 48px 30px 26px;
}
footer#site-footer .footer-inner { max-width: 1200px; margin: 0 auto; }
footer#site-footer .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 22px;
}
footer#site-footer h4 { font-family: var(--font-display); font-size: 17px; font-weight: 400; color: rgba(255,255,255,0.9); margin-bottom: 14px; }
footer#site-footer p { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.5); margin-bottom: 8px; }
footer#site-footer ul { list-style: none; margin: 0; padding: 0; }
footer#site-footer ul li { margin-bottom: 7px; font-size: 13px; }
footer#site-footer ul li a, footer#site-footer ul li a:visited { color: rgba(255,255,255,0.5); text-decoration: none; border-bottom: none; transition: color 0.2s; }
footer#site-footer ul li a:hover { color: var(--blush); }
footer#site-footer .footer-bottom { font-size: 12px; color: rgba(255,255,255,0.3); display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
footer#site-footer .footer-bottom a { color: rgba(255,255,255,0.4); text-decoration: none; border-bottom: none; transition: color 0.2s; }
footer#site-footer .footer-bottom a:hover { color: var(--blush); }

/* ================================
   RESPONSIVE — DESKTOP
   ================================ */
@media (min-width: 831px) {
  div#mobmenu { display: none !important; }
  nav#main ul { display: flex !important; }
}

/* ================================
   RESPONSIVE — MOBILE
   ================================ */
@media (max-width: 830px) {
  div#slider { height: 300px; }
  div#slider .hero-text h2 { font-size: 30px; }
  div#slider .hero-text p { font-size: 15px; }

  div#mobmenu { display: block !important; padding: 13px 16px; }
  div#mobmenu a, div#mobmenu a:visited { color: var(--blush); font-size: 15px; display: flex; align-items: center; gap: 8px; text-decoration: none; border-bottom: none; }

  nav#main ul { display: none !important; flex-direction: column; }
  nav#main ul[style*="block"] { display: flex !important; }
  nav#main li { display: block !important; }
  nav#main li a { padding: 13px 20px; border-bottom: 1px solid rgba(255,255,255,0.08) !important; }
  nav#main li:last-child a { border-bottom: none !important; }

  div#content-wrap { padding: 32px 18px 52px; }
  h2 { font-size: 1.3em; }
  .feature-strip { grid-template-columns: 1fr; gap: 24px; padding: 26px; }
  .card-grid { grid-template-columns: 1fr; }
  footer#site-footer .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .cta-banner { padding: 28px 24px; }
}
