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

/* ================================
   AUTUMN WOODLAND THEME
   ACUPUNCTURE CROWTHORNE
   ================================ */

:root {
  --russet:      #8b3a1a;
  --russet-mid:  #a84d28;
  --russet-light:#c4703f;
  --amber:       #c17f24;
  --amber-light: #d9a24e;
  --amber-pale:  #f0ddb8;
  --oak:         #5c3d1e;
  --oak-light:   #7d5a35;
  --leaf:        #6b8c3a;
  --leaf-pale:   #d4e4b8;
  --cream:       #faf6f0;
  --warm-white:  #f5ede0;
  --charcoal:    #2a2520;
  --mid:         #6b6058;
  --light:       #d0c8bc;
  --border:      #e0d4c4;
  --font-display:'Cormorant Garamond', Georgia, serif;
  --font-body:   'Nunito', 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.75;
  -webkit-font-smoothing: antialiased;
}

/* ================================
   TOP BAR
   ================================ */
div#top {
  background: var(--oak);
  border-bottom: 3px solid var(--amber);
  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(--amber-pale); }
div#top .appt-button a {
  background: var(--russet) !important;
  color: #fff !important;
  font-family: var(--font-body) !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  padding: 9px 20px !important;
  border-radius: 3px !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(--russet-light) !important; }

/* ================================
   HEADER
   ================================ */
header {
  background: var(--warm-white);
  border-bottom: 1px solid var(--border);
  padding: 26px 0 20px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    88deg,
    transparent,
    transparent 80px,
    rgba(139,58,26,0.04) 80px,
    rgba(139,58,26,0.04) 81px
  );
  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(--russet);
  text-align: center;
  margin: 0;
  letter-spacing: 0.01em;
}
header h1 a, header h1 a:visited { color: var(--russet); text-decoration: none; border-bottom: none; }
header h1 a:hover { color: var(--russet-mid); }
header .leaf-accent {
  display: block;
  text-align: center;
  font-size: 1.4em;
  margin-top: 6px;
  opacity: 0.3;
  letter-spacing: 0.4em;
}
header .tagline {
  font-family: var(--font-body);
  font-size: 0.78em;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--oak-light);
  margin: 5px 0 0;
  text-align: center;
  display: block;
}

/* ================================
   NAVIGATION
   ================================ */
nav#main {
  background: var(--oak);
  border-bottom: 3px solid var(--amber);
  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.1em;
  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(--amber-light); }
nav#main ul li.active a { color: #fff; border-bottom: 3px solid var(--russet-light); }

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

/* ================================
   HERO SLIDER
   ================================ */
div#slider {
  position: relative;
  overflow: hidden;
  background: var(--oak);
  height: 420px;
  background-image: url('images/crowthorne-hero.png');
  background-size: cover;
  background-position: center 40%;
}
div#slider .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(92,61,30,0.82) 0%, rgba(92,61,30,0.45) 60%, rgba(92,61,30,0.2) 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: 52px;
  font-weight: 300;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 14px;
}
div#slider .hero-text h2 em { font-style: italic; color: var(--amber-light); }
div#slider .hero-text p {
  font-size: 17px;
  color: rgba(255,255,255,0.88);
  max-width: 520px;
  margin-bottom: 28px;
  font-weight: 300;
}
div#slider .hero-text a.cta {
  display: inline-block;
  background: var(--russet);
  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 28px;
  border-radius: 3px;
  transition: background 0.2s;
}
div#slider .hero-text a.cta:hover { background: var(--russet-light); }

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

/* ================================
   TYPOGRAPHY
   ================================ */
h1 { font-family: var(--font-display); font-size: 2em; font-weight: 400; color: var(--russet); margin-bottom: 0.4em; }
h2 { font-family: var(--font-display); font-size: 1.6em; font-weight: 400; color: var(--russet); margin: 1.8em 0 0.5em; padding-bottom: 8px; border-bottom: 2px solid var(--amber-pale); }
h2:first-child { margin-top: 0; }
h3 { font-family: var(--font-display); font-size: 1.2em; font-weight: 400; color: var(--oak); margin: 1.4em 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: 500; color: var(--russet); }
a { color: var(--russet-mid); text-decoration: none; border-bottom: 1px solid var(--amber-pale); transition: color 0.2s, border-color 0.2s; }
a:visited { color: var(--russet-mid); }
a:hover { color: var(--oak); border-color: var(--amber); text-decoration: none; }
ul, ol { margin: 0.5em 0 1.2em 1.4em; }
li { margin-bottom: 8px; font-size: 15px; line-height: 1.75; }
li strong { color: var(--russet); font-weight: 500; }

/* ================================
   INTRO BLOCK
   ================================ */
.page-intro {
  border-left: 4px solid var(--amber);
  padding: 4px 0 4px 22px;
  margin-bottom: 36px;
}
.page-intro p {
  font-family: var(--font-display);
  font-size: 21px;
  font-style: italic;
  color: var(--oak);
  line-height: 1.6;
  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-top: 3px solid var(--amber);
  border-radius: 4px;
  padding: 24px 20px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover { box-shadow: 0 6px 24px rgba(139,58,26,0.1); transform: translateY(-2px); }
.card h3 { font-size: 1.15em; color: var(--russet); 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: 44px;
  margin: 44px 0;
  padding: 40px;
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 4px;
  border-left: 4px solid var(--russet);
}
.feature-strip h2 { margin-top: 0; border-bottom-color: var(--amber-pale); }

/* ================================
   BLOCKQUOTE
   ================================ */
blockquote {
  background: var(--warm-white);
  border-left: 4px solid var(--amber);
  padding: 22px 26px;
  margin: 28px 0;
  border-radius: 0 4px 4px 0;
}
blockquote p {
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  color: var(--oak);
  margin: 0;
}

/* ================================
   CTA BANNER
   ================================ */
.cta-banner {
  background: var(--russet);
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(255,255,255,0.02) 20px,
    rgba(255,255,255,0.02) 21px
  );
  color: #fff;
  padding: 36px 40px;
  border-radius: 4px;
  margin: 44px 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.8); margin: 0; font-size: 15px; }
.cta-banner a.btn {
  display: inline-block;
  background: var(--amber);
  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: 3px;
  white-space: nowrap;
  transition: background 0.2s;
}
.cta-banner a.btn:hover { background: var(--amber-light); }

/* ================================
   FEES TABLE
   ================================ */
.fees-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.fees-table th { background: var(--oak); color: #fff; font-family: var(--font-body); font-weight: 400; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; padding: 13px 18px; text-align: left; }
.fees-table td { padding: 13px 18px; 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(--russet); white-space: nowrap; }

/* ================================
   FOOTER
   ================================ */
footer#site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.55);
  padding: 44px 30px 24px;
}
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: 12px; }
footer#site-footer p { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.5); margin-bottom: 6px; }
footer#site-footer ul { list-style: none; margin: 0; padding: 0; }
footer#site-footer ul li { margin-bottom: 6px; 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(--amber-light); }
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: rgba(255,255,255,0.8); }

/* ================================
   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: 32px; }
  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(--amber-light); text-decoration: none; font-size: 15px; display: flex; align-items: center; gap: 8px; 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 50px; }
  h2 { font-size: 1.35em; }
  .feature-strip { grid-template-columns: 1fr; gap: 24px; padding: 24px; }
  .card-grid { grid-template-columns: 1fr; }
  footer#site-footer .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .cta-banner { padding: 28px 24px; }
}
