/* =========================================================
   Aesthetically Mindful, LLC — Main Stylesheet
   Design: Earthy-editorial / Structured-warmth
   Palette: Terracotta #C4673A · Sage #6B7F5E · Cream #F5F0E8
            Deep Olive #3B4A35 · Warm Charcoal #2C2C2C
   Typography: Cormorant Garamond (display) + DM Sans (body)
   ========================================================= */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  color: #2C2C2C;
  background: #FDFAF5;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── TOKENS ── */
:root {
  --terra:   #C4673A;
  --sage:    #6B7F5E;
  --cream:   #F5F0E8;
  --olive:   #3B4A35;
  --charcoal:#2C2C2C;
  --warm-bg: #FDFAF5;
  --mid-bg:  #EDE8DF;
  --border:  #D9D3C8;
  --radius:  6px;
  --max-w:   1160px;
  --transition: 0.25s ease;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.2;
  color: var(--olive);
}
h1 { font-size: clamp(2.6rem, 5vw, 4.2rem); font-weight: 600; }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 500; }
h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); font-weight: 500; }
h4 { font-size: 1.15rem; font-weight: 600; }
p  { font-size: 1rem; color: #3D3D3D; }
.lead { font-size: 1.15rem; line-height: 1.8; color: #4A4A4A; }

/* ── LAYOUT ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 56px 0; }

/* ── SKIP LINK ── */
.skip-link {
  position: absolute; top: -40px; left: 16px; z-index: 9999;
  background: var(--terra); color: #fff; padding: 8px 16px;
  border-radius: var(--radius); font-size: 0.875rem;
  transition: top var(--transition);
}
.skip-link:focus { top: 8px; }

/* ── TOP BAR ── */
.top-bar {
  background: var(--olive);
  color: #fff;
  font-size: 0.8rem;
  padding: 8px 0;
  letter-spacing: 0.02em;
}
.top-bar .container {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.top-bar a { color: #fff; opacity: 0.9; transition: opacity var(--transition); }
.top-bar a:hover { opacity: 1; }
.top-bar-sep { opacity: 0.4; }

/* ── NAVBAR ── */
.navbar {
  position: sticky; top: 0; z-index: 900;
  background: var(--warm-bg);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.08); }
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
}
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-mark {
  width: 44px; height: 44px;
  background: var(--terra);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-mark svg { width: 24px; height: 24px; fill: #fff; }
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--olive);
  letter-spacing: 0.01em;
}
.logo-tagline {
  font-size: 0.7rem;
  color: var(--sage);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: 0.02em;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1.5px; background: var(--terra);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--terra); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem; font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer; border: none;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-terra {
  background: var(--terra); color: #fff;
}
.btn-terra:hover { background: #b05a30; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(196,103,58,0.35); }
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--terra);
  color: var(--terra);
}
.btn-outline:hover { background: var(--terra); color: #fff; }
.btn-sage {
  background: var(--sage); color: #fff;
}
.btn-sage:hover { background: #5a6d4f; }
.btn-sm { padding: 9px 20px; font-size: 0.85rem; }

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--charcoal);
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--warm-bg);
  border-top: 1px solid var(--border);
  padding: 16px 0 24px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 12px 0;
  font-size: 1rem; font-weight: 500;
  color: var(--charcoal);
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--terra); }
.mobile-menu .btn { margin-top: 16px; align-self: flex-start; }

/* ── PAGE HERO ── */
.page-hero {
  background: var(--olive);
  color: #fff;
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('/aestheticallymindful/assets/img/hero.jpg') center/cover no-repeat;
  opacity: 0.18;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.1rem; max-width: 560px; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8rem; color: rgba(255,255,255,0.6);
  margin-bottom: 16px; letter-spacing: 0.04em; text-transform: uppercase;
}
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb-sep { opacity: 0.4; }

/* ── SITE HERO (home) ── */
.site-hero {
  position: relative;
  min-height: 88vh;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--olive);
}
.site-hero-img {
  position: absolute; inset: 0;
  background: url('/aestheticallymindful/assets/img/hero.jpg') center/cover no-repeat;
  opacity: 0.42;
}
.site-hero-content {
  position: relative; z-index: 1;
  max-width: 680px;
  padding: 80px 0;
}
.site-hero-content h1 { color: #fff; margin-bottom: 20px; }
.site-hero-content p {
  color: rgba(255,255,255,0.88);
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 540px;
}
.hero-cta-group { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #C4A882;
  margin-bottom: 16px;
  font-weight: 600;
}

/* ── TRUST STRIP ── */
.trust-strip {
  background: var(--terra);
  color: #fff;
  padding: 20px 0;
}
.trust-strip .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.88rem; font-weight: 500; letter-spacing: 0.02em;
}
.trust-item svg { width: 18px; height: 18px; opacity: 0.9; }

/* ── INTRO SPLIT ── */
.intro-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.intro-split-text .section-label {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terra);
  font-weight: 600;
  margin-bottom: 12px;
}
.intro-split-text h2 { margin-bottom: 20px; }
.intro-split-text p { margin-bottom: 16px; }
.intro-split-text .btn { margin-top: 12px; }
.intro-split-img {
  position: relative;
}
.intro-split-img img {
  border-radius: 4px;
  width: 100%;
  object-fit: cover;
  height: 480px;
}
.intro-split-img::before {
  content: '';
  position: absolute;
  top: -16px; left: -16px;
  width: 120px; height: 120px;
  border: 2px solid var(--terra);
  border-radius: 4px;
  z-index: -1;
}

/* ── SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.service-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}
.service-icon {
  width: 48px; height: 48px;
  background: var(--cream);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.service-icon svg { width: 22px; height: 22px; stroke: var(--terra); fill: none; stroke-width: 1.8; }
.service-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.service-card p { font-size: 0.92rem; line-height: 1.7; color: #555; }

/* ── SECTION HEADER ── */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .section-label {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terra);
  font-weight: 600;
  margin-bottom: 10px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { max-width: 560px; margin: 0 auto; color: #555; }

/* ── APPROACH SECTION ── */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.approach-item {
  display: flex; gap: 20px; align-items: flex-start;
}
.approach-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--terra);
  opacity: 0.35;
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
}
.approach-item h4 { margin-bottom: 6px; color: var(--olive); }
.approach-item p { font-size: 0.92rem; color: #555; }

/* ── QUOTE BAND ── */
.quote-band {
  background: var(--olive);
  color: #fff;
  padding: 72px 0;
  text-align: center;
}
.quote-band blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-style: italic;
  font-weight: 400;
  max-width: 760px;
  margin: 0 auto 20px;
  line-height: 1.5;
  color: #fff;
}
.quote-band cite {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #C4A882;
  font-style: normal;
}

/* ── WORKSHOPS GRID ── */
.workshops-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.workshop-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.workshop-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.09); }
.workshop-card-img {
  height: 200px;
  background: var(--mid-bg);
  overflow: hidden;
}
.workshop-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.workshop-card:hover .workshop-card-img img { transform: scale(1.04); }
.workshop-card-body { padding: 28px; }
.workshop-tag {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--terra);
  background: rgba(196,103,58,0.1);
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.workshop-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.workshop-card p { font-size: 0.9rem; color: #555; line-height: 1.7; }

/* ── ABOUT PAGE ── */
.about-bio {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.about-bio-img img {
  border-radius: 4px;
  width: 100%;
  object-fit: cover;
  height: 520px;
}
.about-bio-text .section-label {
  font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--terra); font-weight: 600; margin-bottom: 12px;
}
.about-bio-text h2 { margin-bottom: 20px; }
.about-bio-text p { margin-bottom: 16px; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
}
.value-card .value-icon {
  width: 52px; height: 52px;
  background: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.value-card .value-icon svg { width: 24px; height: 24px; stroke: var(--sage); fill: none; stroke-width: 1.8; }
.value-card h4 { margin-bottom: 8px; }
.value-card p { font-size: 0.88rem; color: #555; }

/* ── SERVICES PAGE ── */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}
.service-detail:last-child { border-bottom: none; }
.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }
.service-detail-img img {
  border-radius: 4px;
  width: 100%;
  height: 360px;
  object-fit: cover;
}
.service-detail-text .section-label {
  font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--terra); font-weight: 600; margin-bottom: 10px;
}
.service-detail-text h2 { margin-bottom: 16px; }
.service-detail-text p { margin-bottom: 14px; }
.service-detail-text ul {
  list-style: none; margin: 16px 0;
}
.service-detail-text ul li {
  padding: 6px 0 6px 20px;
  position: relative;
  font-size: 0.92rem; color: #444;
}
.service-detail-text ul li::before {
  content: '';
  position: absolute; left: 0; top: 14px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--terra);
}

/* ── CONTACT PAGE ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 20px; }
.contact-info p { margin-bottom: 24px; color: #555; }
.contact-detail {
  display: flex; align-items: flex-start; gap: 14px;
  margin-bottom: 20px;
}
.contact-detail-icon {
  width: 40px; height: 40px;
  background: var(--cream);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 18px; height: 18px; stroke: var(--terra); fill: none; stroke-width: 1.8; }
.contact-detail-text strong { display: block; font-size: 0.85rem; color: var(--olive); margin-bottom: 2px; }
.contact-detail-text span { font-size: 0.9rem; color: #555; }
.contact-detail-text a { color: var(--terra); }
.contact-detail-text a:hover { text-decoration: underline; }

/* ── CONTACT FORM ── */
.contact-form-wrap {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 36px;
}
.contact-form-wrap h3 { margin-bottom: 24px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.85rem; font-weight: 600;
  color: var(--olive);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--warm-bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--terra);
  box-shadow: 0 0 0 3px rgba(196,103,58,0.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: 0.8rem; color: #888; margin-top: 12px; }
.form-success {
  display: none;
  background: rgba(107,127,94,0.12);
  border: 1px solid var(--sage);
  border-radius: var(--radius);
  padding: 16px 20px;
  color: var(--olive);
  font-size: 0.92rem;
  margin-top: 16px;
}

/* ── FAQ ── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  background: none; border: none;
  text-align: left;
  padding: 20px 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem; font-weight: 600;
  color: var(--olive);
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--terra); }
.faq-chevron {
  width: 20px; height: 20px;
  stroke: currentColor; fill: none; stroke-width: 2;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 0 0 20px;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.8;
}
.faq-item.open .faq-answer { display: block; }

/* ── CTA BAND ── */
.cta-band {
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 72px 0;
  text-align: center;
}
.cta-band h2 { margin-bottom: 16px; }
.cta-band p { max-width: 520px; margin: 0 auto 32px; color: #555; }
.cta-band .btn-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
.site-footer {
  background: var(--olive);
  color: rgba(255,255,255,0.8);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand .logo-name { color: #fff; font-size: 1.2rem; }
.footer-brand .logo-tagline { color: rgba(255,255,255,0.5); }
.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  margin-top: 16px;
  line-height: 1.7;
}
.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
  font-weight: 600;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}
.footer-bottom a { color: rgba(255,255,255,0.55); }
.footer-bottom a:hover { color: #fff; }

/* ── UTILITY ── */
.bg-cream { background: var(--cream); }
.bg-mid   { background: var(--mid-bg); }
.bg-olive { background: var(--olive); }
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-32 { margin-bottom: 32px; }

/* ── FADE-UP ANIMATION ── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .intro-split { gap: 40px; }
}

@media (max-width: 768px) {
  .nav-links, .navbar .btn { display: none; }
  .hamburger { display: flex; }
  .intro-split { grid-template-columns: 1fr; }
  .intro-split-img { order: -1; }
  .intro-split-img img { height: 300px; }
  .services-grid { grid-template-columns: 1fr; }
  .approach-grid { grid-template-columns: 1fr; }
  .workshops-grid { grid-template-columns: 1fr; }
  .about-bio { grid-template-columns: 1fr; }
  .about-bio-img img { height: 320px; }
  .values-grid { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 1fr; gap: 32px; }
  .service-detail.reverse { direction: ltr; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .trust-strip .container { gap: 24px; }
  .hero-cta-group { flex-direction: column; align-items: flex-start; }
  .site-hero { min-height: 70vh; }
  .section { padding: 56px 0; }
}

@media (max-width: 480px) {
  .top-bar .container { flex-direction: column; align-items: flex-start; gap: 6px; }
  .top-bar-sep { display: none; }
  .contact-form-wrap { padding: 28px 20px; }
}
