/* Symbiotic Systems Reflexology — design system
   Palette + type pulled from the new hero header:
   cream/parchment background, deep forest green, warm gold, script accent headline */

:root {
  /* sampled directly from hero-symbiotic-systems.png */
  --cream: #fdfdf6;
  --cream-deep: #f7f0d8;
  --forest: #0d3d20;
  --forest-deep: #052713;
  --gold: #e0a100;
  --gold-light: #f0d98c;
  --blush: #d98f83;
  --blush-soft: #f3d9cf;
  --ink: #2b2b26;
  --ink-soft: #4a4a42;
  --white: #fffefb;
  --radius: 18px;
  --shadow: 0 12px 32px rgba(5, 39, 19, 0.14);
}

/* soft botanical sprig, echoes the leaf clusters + daisy in the hero graphic —
   used as a section divider so panels don't butt up sterile-white-to-white */
.sprig-divider {
  height: 46px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 50'%3E%3Cg fill='none' stroke='%23e0a100' stroke-width='1.6' stroke-linecap='round'%3E%3Cpath d='M20 25 Q60 5 100 25 Q140 45 180 25'/%3E%3Cpath d='M45 20 Q50 10 58 14'/%3E%3Cpath d='M45 20 Q42 12 34 13'/%3E%3Cpath d='M150 30 Q145 40 137 38'/%3E%3Cpath d='M150 30 Q158 38 166 34'/%3E%3C/g%3E%3Ccircle cx='100' cy='25' r='5' fill='%23e0a100'/%3E%3Cg fill='%23fffefb' stroke='%23f0d98c' stroke-width='0.75'%3E%3Cellipse cx='100' cy='16' rx='4' ry='7'/%3E%3Cellipse cx='100' cy='34' rx='4' ry='7'/%3E%3Cellipse cx='91' cy='25' rx='7' ry='4'/%3E%3Cellipse cx='109' cy='25' rx='7' ry='4'/%3E%3C/g%3E%3Ccircle cx='100' cy='25' r='3' fill='%23e0a100'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 200px 50px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background:
    radial-gradient(ellipse 900px 450px at 12% 0%, var(--gold-light) 0%, transparent 55%),
    radial-gradient(ellipse 900px 500px at 100% 15%, var(--cream-deep) 0%, transparent 60%),
    var(--cream);
  color: var(--ink);
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.7;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--forest-deep);
  margin: 0 0 0.5em;
}

.accent-script {
  font-family: 'Parisienne', cursive;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--forest);
  display: block;
  margin-bottom: 0.2em;
}

a { color: var(--forest); text-decoration: none; }
a:hover { color: var(--gold); }

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Top bar --- */
.topbar {
  background: var(--forest-deep);
  color: var(--gold-light);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 0.9rem;
  padding: 9px 0;
  text-align: center;
  letter-spacing: 0.04em;
}
.topbar a { color: var(--gold-light); font-weight: 700; }

/* --- Nav --- */
nav.main-nav {
  background: linear-gradient(120deg, var(--cream) 0%, var(--gold-light) 220%);
  box-shadow: 0 2px 14px rgba(5, 39, 19, 0.1);
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 12px;
}
.brand {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 900;
  font-size: 1.35rem;
  color: var(--forest-deep);
}
.brand span { color: var(--gold); font-style: italic; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-weight: 700;
  font-size: 0.95rem;
}
.nav-links a:not(.btn-book) {
  color: var(--forest);
  position: relative;
  padding-bottom: 3px;
  background-image: linear-gradient(var(--gold), var(--gold));
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  transition: background-size 0.25s ease, color 0.25s ease;
}
.nav-links a:not(.btn-book):hover {
  color: var(--forest-deep);
  background-size: 100% 2px;
}
.btn-book {
  background: var(--forest);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, background 0.2s ease;
}
.btn-book:hover { transform: translateY(-1px); }
.btn-book:hover { background: var(--gold); color: var(--forest-deep) !important; }

.sub-nav {
  background: var(--forest-deep);
  overflow-x: auto;
  white-space: nowrap;
}
.sub-nav .container { display: flex; gap: 10px; padding: 10px 24px; }
.sub-nav a {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold-light);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(240,217,140,0.25);
  border-radius: 999px;
  padding: 6px 14px;
  flex-shrink: 0;
  transition: background 0.2s ease, color 0.2s ease;
}
.sub-nav a:hover { background: var(--gold); color: var(--forest-deep); border-color: var(--gold); }

/* the default browser scrollbar on this horizontally-scrolling strip was dull gray */
.sub-nav::-webkit-scrollbar { height: 6px; }
.sub-nav::-webkit-scrollbar-track { background: transparent; }
.sub-nav::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 999px; }
.sub-nav { scrollbar-color: var(--gold) transparent; scrollbar-width: thin; }

/* --- Hero --- */
.hero {
  padding: 48px 0 12px;
  text-align: center;
}
/* No box/shadow on purpose: the graphic's own background is the same near-white
   cream as the page, so it should melt into the page rather than sit in a card. */
.hero img.hero-banner {
  border-radius: 6px;
  margin: 0 auto;
}
.hero-fallback {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-deep) 55%, var(--blush) 130%);
  color: var(--cream);
  padding: 64px 30px;
  border: 6px solid var(--gold-light);
}
.hero-fallback h1 { color: var(--cream); font-size: 2.6rem; }
.hero-fallback .accent-script { color: var(--gold-light); font-size: 1.9rem; }
.hero-fallback p { color: var(--cream-deep); font-size: 1.1rem; }

/* --- Sections --- */
section { padding: 56px 0; }
section.alt {
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--cream-deep) 100%);
}
.lead {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 760px;
  margin: 0 auto 1.2em;
  text-align: center;
}
.center { text-align: center; }

.badges {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: 24px 0;
}
.badge {
  background: var(--white);
  border: 1px solid var(--gold-light);
  border-radius: 999px;
  padding: 10px 20px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--forest);
  box-shadow: var(--shadow);
  transition: border-color 0.2s;
}
.badge:nth-child(3n+2) { border-color: var(--forest); }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--gold);
}
.card:nth-child(2) { border-top-color: var(--forest); }
.card h3 { font-size: 1.15rem; }
.card p { color: var(--ink-soft); font-size: 0.95rem; }

.cta-band {
  background: var(--forest);
  color: var(--cream);
  text-align: center;
  padding: 48px 24px;
  border-radius: var(--radius);
  margin: 0 24px;
}
.cta-band h2 { color: var(--cream); }
.cta-band .btn-book { display: inline-block; margin-top: 12px; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 760px) {
  .two-col { grid-template-columns: 1fr; }
}
.two-col img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 8px solid var(--white);
  outline: 1px solid var(--gold-light);
}
.photo-caption {
  text-align: center;
  font-style: italic;
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-top: 8px;
}
.photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 220px;
  background: var(--cream-deep);
  border: 2px dashed var(--gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  color: var(--forest);
  text-align: center;
  padding: 24px;
}
.photo-placeholder .emoji { font-size: 2rem; }
.photo-placeholder span.label {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 1.05rem;
}

/* --- Article (About page) --- */
.article {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px;
  max-width: 820px;
  margin: 0 auto;
}
.article p { margin: 0 0 1.1em; }
.article b { color: var(--forest-deep); }
.pull-photo {
  float: right;
  width: 220px;
  margin: 0 0 16px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 8px solid var(--white);
  outline: 1px solid var(--gold-light);
}
@media (max-width: 600px) {
  .pull-photo { float: none; width: 100%; margin: 0 0 16px; }
}

/* --- Footer --- */
footer {
  background: var(--forest-deep);
  color: var(--cream-deep);
  padding: 40px 0 20px;
  margin-top: 40px;
}
footer .container { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; }
footer a { color: var(--gold-light); }
footer h4 { color: var(--gold-light); font-family: 'Lato', sans-serif; font-size: 0.9rem; letter-spacing: 0.05em; text-transform: uppercase; }
footer .fine-print { grid-column: 1 / -1; text-align: center; font-size: 0.8rem; color: rgba(251,247,236,0.6); margin-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 16px; }
