/* ── LIVING ARTS WELLNESS — shared styles ── */

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

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

:root {
  --cream:       #f4ede0;
  --cream-deep:  #ede3d2;
  --sage:        #5c6b52;
  --sage-light:  #a8b89d;
  --sage-pale:   #dce5d8;
  --deep:        #2b3424;
  --gold:        #9c7e50;
  --gold-light:  #c9a97a;
  --text:        #1e1a15;
  --text-mid:    #3a3028;
  --white:       #faf7f2;
  --border:      rgba(92,107,82,0.18);
}

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--text);
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  line-height: 1.8;
  font-size: 16px;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.4rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.5s, box-shadow 0.5s;
}
nav.solid, nav.on-light {
  background: rgba(244,237,224,0.97);
  box-shadow: 0 1px 0 var(--border);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: color 0.4s;
}
nav.solid .nav-logo, nav.on-light .nav-logo { color: var(--deep); }
nav.scrolled .nav-logo { color: var(--deep); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.2rem;
  align-items: center;
}
.nav-links a {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(250,247,242,0.88);
  transition: color 0.3s;
  position: relative;
}
.nav-links a:hover { color: var(--gold-light); }
nav.solid .nav-links a,
nav.on-light .nav-links a,
nav.scrolled .nav-links a { color: var(--text-mid); }
nav.solid .nav-links a:hover,
nav.on-light .nav-links a:hover,
nav.scrolled .nav-links a:hover { color: var(--gold); }

/* dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  min-width: 200px;
  padding: 0.5rem 0;
  list-style: none;
}
/* Invisible bridge fills the gap between the trigger and the visible menu,
   keeping the hover zone continuous so the menu stays open while moving the mouse down */
.nav-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -1rem;
  right: -1rem;
  height: 1rem;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu li a {
  display: block;
  padding: 0.5rem 1.2rem;
  color: var(--text-mid) !important;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
}
.nav-dropdown-menu li a:hover {
  background: var(--sage-pale);
  color: var(--deep) !important;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding-top: 100px;
  padding-bottom: 4rem;
  background: var(--deep);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.7;
}
.page-hero-content { position: relative; }
.page-hero .eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.8rem;
}
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 0.8rem;
}
.page-hero .subtitle {
  font-size: 1rem;
  color: rgba(250,247,242,0.6);
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
}

/* ── SECTIONS ── */
section { padding: 5rem 2rem; }
.container { max-width: 960px; margin: 0 auto; }
.container-narrow { max-width: 720px; margin: 0 auto; }

.section-label {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
  display: block;
}
h2.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--deep);
  margin-bottom: 1.4rem;
}
h3.sub-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--deep);
  margin: 2rem 0 0.6rem;
}
.ornament {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 1.4rem 0;
}
.ornament.center { margin: 1.4rem auto; }

/* ── PROSE ── */
.prose p {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 1.2rem;
}
.prose a {
  color: var(--sage);
  text-decoration: none;
  border-bottom: 1px solid var(--sage-pale);
  transition: border-color 0.25s;
}
.prose a:hover { border-color: var(--sage); }

/* ── PULL QUOTE ── */
.pull-quote {
  border-left: 2px solid var(--gold);
  margin: 2rem 0;
  padding: 1.2rem 2rem;
  background: var(--white);
}
.pull-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--deep);
  line-height: 1.7;
  margin: 0;
}

/* ── CODE OF ETHICS / ITALICS BLOCK ── */
.ethics-block {
  background: var(--cream-deep);
  padding: 2.4rem;
  margin: 2rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.ethics-block p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.85;
  margin-bottom: 1rem;
}
.ethics-block p:last-child { margin-bottom: 0; }

/* ── CREDENTIALS ── */
.credentials-list {
  list-style: none;
  margin: 1rem 0;
}
.credentials-list li {
  font-size: 0.9rem;
  color: var(--text-mid);
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 0.8rem;
}
.credentials-list li::before {
  content: '—';
  color: var(--gold);
  flex-shrink: 0;
}

/* ── RATES TABLE ── */
.rates-section { background: var(--white); }
.practitioner-block {
  border: 1px solid var(--border);
  padding: 2.4rem;
  margin-bottom: 2rem;
  background: var(--white);
}
.practitioner-block h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--deep);
  margin-bottom: 0.4rem;
}
.practitioner-block .prac-title {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
  display: block;
}
.rates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 1.5rem 0;
}
.rates-col h4 {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.rate-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
  color: var(--text-mid);
}
.rate-item strong {
  font-weight: 500;
  color: var(--deep);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
}
.therapy-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}
.tag {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.8rem;
  border: 1px solid var(--sage-light);
  color: var(--sage);
  text-transform: uppercase;
}
.notice-banner {
  background: var(--sage-pale);
  border-left: 3px solid var(--sage);
  padding: 0.8rem 1.2rem;
  margin-bottom: 1.5rem;
  font-size: 0.88rem;
  color: var(--text-mid);
}

/* ── CLASSES ── */
.workshop-item {
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}
.workshop-item:last-child { border-bottom: none; }
.workshop-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--deep);
  margin-bottom: 0.6rem;
}
.workshop-item p {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 0.6rem;
}
.workshop-topics {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 0.3rem 1rem;
  margin-top: 1rem;
}
.workshop-topics li {
  font-size: 0.82rem;
  color: var(--text-mid);
  list-style: none;
  padding: 0.2rem 0;
  border-bottom: 1px solid rgba(92,107,82,0.1);
}
.workshop-topics li::before { content: '+ '; color: var(--gold); }

/* ── CONTACT PAGE ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}
.contact-info-block { }
.contact-info-item {
  margin-bottom: 1.8rem;
}
.contact-info-item .label {
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.3rem;
}
.contact-info-item a, .contact-info-item p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--deep);
  text-decoration: none;
}
.contact-info-item a:hover { color: var(--sage); }
.hours-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.3rem 1rem;
  font-size: 0.88rem;
  color: var(--text-mid);
}
.hours-grid .day { font-weight: 400; color: var(--text); }

/* contact form */
.contact-form { }
.form-group { margin-bottom: 1.4rem; }
.form-group label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text);
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.25s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--sage); }
.form-group textarea { resize: vertical; min-height: 120px; }
.btn-submit {
  display: inline-block;
  padding: 0.85rem 2.4rem;
  background: var(--sage);
  color: var(--white);
  font-family: 'Raleway', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}
.btn-submit:hover { background: var(--deep); }

/* ── LINKS BLOCK ── */
.resource-links {
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.resource-links a {
  font-size: 0.88rem;
  color: var(--sage);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.resource-links a::before { content: '→'; color: var(--gold); }
.resource-links a:hover { color: var(--deep); }

/* ── CONTACT STRIP ── */
.contact-strip {
  background: var(--sage);
  padding: 4rem 2rem;
  text-align: center;
}
.contact-strip h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.contact-strip p {
  color: rgba(250,247,242,0.7);
  font-size: 0.9rem;
  margin-bottom: 1.6rem;
}
.contact-details {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.contact-item .ci-label {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.5);
  display: block;
  margin-bottom: 0.3rem;
}
.contact-item a, .contact-item span {
  color: var(--gold-light);
  text-decoration: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
}

/* ── BUTTONS ── */
.btn-outline {
  display: inline-block;
  padding: 0.75rem 1.8rem;
  border: 1px solid var(--sage);
  color: var(--sage);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}
.btn-outline:hover { background: var(--sage); color: var(--white); }

/* ── PHOTO PLACEHOLDER ── */
.photo-placeholder {
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  border-radius: 1px;
}
.photo-placeholder .img-label {
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(43,52,36,0.4);
}

/* ── FOOTER ── */
footer {
  background: var(--deep);
  padding: 2.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: rgba(250,247,242,0.6);
}
.footer-copy { font-size: 0.68rem; letter-spacing: 0.1em; color: rgba(250,247,242,0.35); }
.footer-photo { font-size: 0.68rem; letter-spacing: 0.1em; color: rgba(250,247,242,0.35); text-align: right; }
.footer-photo a { color: rgba(250,247,242,0.5); text-decoration: none; }
.footer-photo a:hover { color: var(--gold-light); }

/* ── RESPONSIVE ── */
@media (max-width: 780px) {
  nav { padding: 1rem 1.4rem; }
  .nav-links { gap: 1rem; }
  .nav-links a { font-size: 0.65rem; }
  .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  footer { flex-direction: column; text-align: center; }
  footer .footer-photo { text-align: center; }
  .rates-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .nav-links { display: none; }
}
