/*
 * acupressure.ca — style-v2.css
 * "Earthy & Tactile" aesthetic override
 * Loads after style.css — overrides specific elements
 */

/* ── Root overrides ─────────────────────────────────────────────────────── */
:root {
  --green:        #c4613a;   /* terracotta (replaces sage green) */
  --green-light:  #c8a85a;   /* muted gold (replaces light green) */
  --green-pale:   #f0e4d7;   /* warm tint (replaces pale green) */
  --amber:        #c4613a;   /* terracotta for CTA */
  --text:         #3d2b1f;   /* deep brown */
  --muted:        #6b5040;   /* warm mid-brown */
  --bg:           #f9f5f0;   /* warm off-white */
  --card:         #fdf9f4;   /* slightly warmer card bg */
  --border:       #d9cfc4;   /* warm beige border */
}

/* ── Typography ─────────────────────────────────────────────────────────── */
body {
  font-family: 'Nunito', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
}

/* Headings use Nunito semibold — earthy, not startup */
h2 {
  font-family: 'Nunito', system-ui, sans-serif;
  font-weight: 700;
  color: var(--text);
  border-top: 2px solid var(--border);
  padding-top: 1.5rem;
  margin-top: 2.25rem;
}

/* Suppress h2 border on very first h2 after hero */
main > h2:first-of-type {
  border-top: none;
  padding-top: 0;
}

h3 {
  font-family: 'Nunito', system-ui, sans-serif;
  font-weight: 700;
  color: var(--text);
}

a {
  color: var(--green);   /* terracotta links */
}
a:hover {
  color: #c8a85a;        /* warm gold on hover */
}

/* ── Nav — earthy brown strip ───────────────────────────────────────────── */
nav {
  background: var(--text);   /* deep brown */
  padding: 0 1.5rem;
}
nav .logo {
  color: #f0e4d7;
  font-weight: 800;
}
nav a {
  color: rgba(240, 228, 215, 0.8);
  font-family: 'Nunito', system-ui, sans-serif;
  font-size: 0.88rem;
}
nav a:hover {
  color: #f0e4d7;
}

/* ── Hero — practitioner intro, no gradient ─────────────────────────────── */
.hero {
  background: #ede5da;
  padding: 3rem 1.5rem 2.5rem;
  text-align: left;
  border-bottom: 2px solid var(--border);
  /* remove gradient */
  background-image: none;
}

.hero h1 {
  font-family: 'Nunito', system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  color: var(--text);
  max-width: 640px;
  margin: 0 auto 0.75rem;
  line-height: 1.3;
}

.hero .sub {
  font-family: 'Nunito', system-ui, sans-serif;
  font-size: 1rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
  opacity: 1;
}

/* ── Point cards — index card feel ─────────────────────────────────────── */
.point-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--green-light);  /* gold left bar instead of green */
  border-radius: 2px;                          /* very slight radius — handmade */
  padding: 1.1rem 1.4rem;
  margin: 1.25rem 0;
  box-shadow: none;
}

.point-card .point-name {
  font-family: 'Nunito', system-ui, sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  letter-radius: 0.06em;
  text-transform: uppercase;
  color: var(--green-light);   /* gold */
  margin-bottom: 0.35rem;
}

/* ── Verdict badges — bordered, not pill ───────────────────────────────── */
.verdict {
  display: inline-block;
  background: transparent;
  color: var(--green-light);
  border: 1px solid var(--green-light);
  font-family: 'Nunito', system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.2rem 0.65rem;
  border-radius: 2px;          /* flat, not pill */
  margin-bottom: 0.6rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.verdict.caution {
  background: transparent;
  color: #9e5020;
  border-color: #c8813a;
}

/* ── Affiliate box — warm amber, no tech feel ───────────────────────────── */
.affiliate-box {
  background: #f9f5f0;
  border: 1px solid #c4613a; border-left: 3px solid #c4613a;
  border-radius: 3px;
  padding: 1.25rem 1.5rem;
  margin: 1.75rem 0;
}
.affiliate-box h3 {
  color: var(--green);   /* terracotta */
  margin-top: 0;
}

/* ── CTA button — terracotta, flat ──────────────────────────────────────── */
.btn-amazon {
  display: inline-block;
  background: var(--green);
  color: #fff;
  text-decoration: none;
  padding: 0.55rem 1.3rem;
  border-radius: 2px;
  font-family: 'Nunito', system-ui, sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  margin-top: 0.5rem;
  transition: background 0.2s;
}
.btn-amazon:hover {
  background: #a04d2c;
  color: #fff;
}

/* ── Mat cards — simple bordered, no radius dashboard feel ──────────────── */
.mat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 1.25rem 1.5rem;
  margin: 1.25rem 0;
  box-shadow: none;
}
.mat-card h3 {
  color: var(--text);
  margin-top: 0;
}

/* ── Note box — warm clay tint ──────────────────────────────────────────── */
.note {
  background: #f0e4d7;
  border-radius: 2px;
  border-left: 3px solid var(--green-light);
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  font-family: 'Nunito', system-ui, sans-serif;
  font-size: 0.9rem;
  color: var(--text);
}

/* ── Section organic dividers via h2 border-top above ───────────────────── */
/* hr override if any HRs exist */
hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2rem 0;
}

/* ── Footer — warm brown ─────────────────────────────────────────────────── */
footer {
  background: #2e1f14;   /* slightly warmer than black */
  color: rgba(240, 228, 215, 0.65);
}
footer a {
  color: rgba(240, 228, 215, 0.75);
}
footer a:hover {
  color: #f0e4d7;
}

/* ── Mobile ─────────────────────────────────────────────────────────────── */
@media (max-width: 600px) {
  .hero { padding: 2rem 1rem 1.75rem; }
  .hero h1 { font-size: 1.3rem; }
}
