/* ===========================
   ACUPUNCTURE BERKSHIRE
   Design: Natural / Refined
   =========================== */

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

:root {
  --sage: #5a7a6a;
  --sage-light: #8aab97;
  --sage-pale: #e8f0ec;
  --sage-dark: #3a5a4a;
  --gold: #b8955a;
  --gold-light: #d4b07a;
  --cream: #faf8f4;
  --warm-white: #f5f2ed;
  --charcoal: #2c2c2a;
  --mid-grey: #6b6b68;
  --light-grey: #d8d5cf;
  --border: #e0ddd7;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 3px;
  --shadow: 0 2px 20px rgba(90,122,106,0.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

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

/* ===========================
   TOP BAR
   =========================== */
#topbar {
  background: var(--sage-dark);
  padding: 10px 0;
  text-align: right;
}
#topbar .inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 30px;
}
#topbar a.book-btn {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 9px 22px;
  border-radius: var(--radius);
  transition: background 0.2s;
}
#topbar a.book-btn:hover { background: var(--gold-light); }

/* ===========================
   HEADER
   =========================== */
header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 22px 30px;
}
header .inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
header .logo a {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  color: var(--sage-dark);
  text-decoration: none;
  letter-spacing: 0.01em;
  line-height: 1.2;
}
header .logo span {
  display: block;
  font-size: 12px;
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mid-grey);
  margin-top: 2px;
}
header .bac-badge {
  font-size: 12px;
  color: var(--mid-grey);
  font-family: var(--font-body);
  border-left: 2px solid var(--sage-light);
  padding-left: 14px;
  line-height: 1.4;
}
header .bac-badge strong {
  display: block;
  color: var(--sage-dark);
  font-weight: 500;
}

/* ===========================
   NAVIGATION
   =========================== */
nav#main {
  background: var(--sage-dark);
  position: sticky;
  top: 0;
  z-index: 100;
}
nav#main .inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 30px;
}
nav#main ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
nav#main ul li a {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  padding: 16px 18px;
  transition: color 0.2s, background 0.2s;
}
nav#main ul li a:hover { color: #fff; background: rgba(255,255,255,0.07); }
nav#main ul li.active a { color: #fff; border-bottom: 2px solid var(--gold); }

/* Mobile menu toggle */
#mobmenu { display: none; padding: 14px 0; }
#mobmenu a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
#mobmenu a img { width: 20px; }

/* ===========================
   ABOUT PAGE PROFILE
   =========================== */
.about-profile {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 44px;
}
.about-photo img {
  width: 100%;
  border-radius: 6px;
  display: block;
  box-shadow: 0 4px 24px rgba(58,90,74,0.15);
}
.about-intro .page-intro {
  margin-bottom: 20px;
  border-left: 3px solid var(--sage-light);
  padding-left: 24px;
}
@media (max-width: 830px) {
  .about-profile {
    grid-template-columns: 1fr;
  }
  .about-photo img {
    max-width: 240px;
    margin: 0 auto;
  }
}

/* ===========================
   HERO SLIDER
   =========================== */
#slider {
  position: relative;
  overflow: hidden;
  height: 420px;
  background-image: url('images/trees-and-river.png');
  background-size: cover;
  background-position: center 40%;
}
#slider .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20,50,35,0.80) 0%, rgba(20,50,35,0.40) 60%, rgba(20,50,35,0.20) 100%);
  display: flex;
  align-items: center;
}
#slider .hero-text {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 30px;
  width: 100%;
}
#slider .hero-text h2 {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 300;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
}
#slider .hero-text h2 em {
  font-style: italic;
  color: var(--gold-light);
}
#slider .hero-text p {
  font-size: 17px;
  color: rgba(255,255,255,0.88);
  max-width: 520px;
  margin-bottom: 28px;
  font-weight: 300;
}
#slider .hero-text a.cta {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 30px;
  border-radius: var(--radius);
  transition: background 0.2s;
}
#slider .hero-text a.cta:hover { background: var(--gold-light); }

/* ===========================
   MAIN CONTENT AREA
   =========================== */
#content-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 30px 80px;
}

/* Page intro block */
.page-intro {
  max-width: 700px;
  margin: 0 0 48px;
  border-left: 3px solid var(--sage-light);
  padding-left: 24px;
}
.page-intro p {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--sage-dark);
  font-style: italic;
}

/* Headings */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.3;
  color: var(--sage-dark);
}
h1 { font-size: 42px; margin-bottom: 20px; }
h2 { font-size: 30px; margin: 44px 0 16px; }
h2:first-child, .page-intro + h2 { margin-top: 0; }
h3 { font-size: 20px; margin: 28px 0 10px; color: var(--charcoal); }

p { margin-bottom: 18px; font-size: 16px; color: var(--charcoal); line-height: 1.8; }
p:last-child { margin-bottom: 0; }

a { color: var(--sage); text-decoration: none; border-bottom: 1px solid var(--sage-light); transition: color 0.2s, border-color 0.2s; }
a:hover { color: var(--sage-dark); border-color: var(--sage-dark); }

ul, ol { margin: 0 0 18px 22px; }
li { margin-bottom: 8px; font-size: 16px; line-height: 1.7; }
li strong { font-weight: 500; color: var(--sage-dark); }

/* ===========================
   CARD GRIDS
   =========================== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin: 32px 0 44px;
}
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover { box-shadow: 0 6px 30px rgba(90,122,106,0.14); transform: translateY(-2px); }
.card h3 {
  font-size: 18px;
  color: var(--sage-dark);
  margin: 0 0 10px;
}
.card h3 a { border-bottom: none; }
.card p { font-size: 14px; color: var(--mid-grey); margin: 0; line-height: 1.7; }
.card .card-icon {
  width: 40px;
  height: 40px;
  background: var(--sage-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.card .card-icon svg { width: 20px; height: 20px; stroke: var(--sage); fill: none; }

/* ===========================
   FEATURE STRIP (two-col layout)
   =========================== */
.feature-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin: 48px 0;
  padding: 48px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
}
.feature-strip h2 { margin-top: 0; }

/* ===========================
   BLOCKQUOTE / PULL QUOTE
   =========================== */
blockquote {
  background: var(--sage-pale);
  border-left: 4px solid var(--sage);
  padding: 24px 28px;
  margin: 32px 0;
  border-radius: 0 6px 6px 0;
}
blockquote p {
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  color: var(--sage-dark);
  margin: 0;
}

/* ===========================
   INLINE CTA BANNER
   =========================== */
.cta-banner {
  background: var(--sage-dark);
  color: #fff;
  padding: 40px 40px;
  border-radius: 6px;
  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: 300;
  color: #fff;
  margin: 0 0 6px;
}
.cta-banner p { color: rgba(255,255,255,0.75); margin: 0; font-size: 15px; }
.cta-banner a.btn {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: none;
  padding: 13px 26px;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: background 0.2s;
}
.cta-banner a.btn:hover { background: var(--gold-light); }

/* ===========================
   FEES TABLE
   =========================== */
.fees-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.fees-table th {
  background: var(--sage-dark);
  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;
  font-weight: 400;
  color: var(--sage-dark);
  white-space: nowrap;
}

/* ===========================
   FOOTER
   =========================== */
footer#site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.65);
  padding: 48px 30px 28px;
  margin-top: 0;
}
footer#site-footer .footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}
footer#site-footer .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 24px;
}
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.55); margin-bottom: 8px; }
footer#site-footer ul { list-style: none; margin: 0; padding: 0; }
footer#site-footer ul li { margin-bottom: 6px; }
footer#site-footer ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  border-bottom: none;
  transition: color 0.2s;
}
footer#site-footer ul li a:hover { color: rgba(255,255,255,0.9); }
footer#site-footer .footer-bottom {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  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.45);
  text-decoration: none;
  border-bottom: none;
  transition: color 0.2s;
}
footer#site-footer .footer-bottom a:hover { color: rgba(255,255,255,0.8); }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 830px) {
  #slider { height: 320px; }
  #slider img { height: 320px; }
  #slider .hero-text h2 { font-size: 34px; }
  #slider .hero-text p { font-size: 15px; }

  nav#main ul { display: none; }
  nav#main ul.open { display: flex; flex-direction: column; background: var(--sage-dark); }
  #mobmenu { display: block; }

  .feature-strip { grid-template-columns: 1fr; gap: 28px; padding: 28px; }
  .card-grid { grid-template-columns: 1fr; }

  footer#site-footer .footer-grid { grid-template-columns: 1fr; gap: 28px; }

  #content-wrap { padding: 40px 20px 60px; }
  h2 { font-size: 24px; }
  h1 { font-size: 32px; }
  header .bac-badge { display: none; }
}
