/* ============================================================
   Studio Traya V3.1 — Shared Stylesheet
   Palette : #FDF8F0 cream · #2E3A4E navy · #B45F3B terracotta · #C9A87C gold
   Fonts   : Playfair Display (headings) · Inter (body)
   ============================================================ */

/* ── Custom Properties ── */
:root {
  --bg:          #FDF8F0;
  --bg-alt:      #F5EFE3;
  --bg-deep:     #EDE3D6;
  --navy:        #2E3A4E;
  --navy-mid:    #4A5B6E;
  --navy-light:  #7A8FA6;
  --terra:       #B45F3B;
  --terra-dark:  #8E4729;
  --gold:        #C9A87C;
  --white:       #FFFFFF;
  --shadow-sm:   0 2px 8px rgba(46,58,78,0.08);
  --shadow-md:   0 8px 24px rgba(46,58,78,0.10);
  --shadow-lg:   0 20px 56px rgba(46,58,78,0.13);
  --radius-sm:   10px;
  --radius-md:   18px;
  --radius-lg:   28px;
  --radius-pill: 40px;
}

/* ── Reset ── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
img { display:block; max-width:100%; }
ul { list-style:none; }
a { text-decoration:none; }

/* ── Base ── */
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--navy);
  line-height: 1.65;
  scroll-behavior: smooth;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.25; }

p { color: var(--navy-mid); }

/* ── Container (safe-area aware for notched phones) ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: max(24px, env(safe-area-inset-left, 0px));
  padding-right: max(24px, env(safe-area-inset-right, 0px));
}
.container--narrow {
  max-width: 860px;
  margin: 0 auto;
  padding-left: max(24px, env(safe-area-inset-left, 0px));
  padding-right: max(24px, env(safe-area-inset-right, 0px));
}

/* ════════════════════════════════
   HEADER & NAVIGATION
   ════════════════════════════════ */
header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(253,248,240,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(46,58,78,0.10);
  padding: 14px 0;
  padding-left: env(safe-area-inset-left, 0px);
  padding-right: env(safe-area-inset-right, 0px);
}

.header-flex {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

/* Logo */
.logo img { height: 50px; width: auto; }

/* Nav links */
#primary-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}

#primary-nav a {
  color: var(--navy);
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: 0.92rem;
  padding: 6px 10px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}

#primary-nav a:hover { color: var(--terra); }
#primary-nav a.active { color: var(--terra); border-bottom: 2px solid var(--terra); }

.nav-divider {
  width: 1px;
  height: 18px;
  background: rgba(46,58,78,0.18);
  margin: 0 6px;
}

#primary-nav a.nav-util {
  font-size: 0.85rem;
  color: var(--navy-mid);
  font-family: 'Inter', sans-serif;
}

#primary-nav .btn-nav-cta {
  margin-left: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  padding: 9px 20px;
  background: var(--terra);
  color: var(--white) !important;
  border-radius: var(--radius-pill);
  font-weight: 600;
  transition: background 0.2s, transform 0.2s;
}
#primary-nav .btn-nav-cta:hover { background: var(--terra-dark); transform: translateY(-1px); border-bottom: none; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.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); }

/* ════════════════════════════════
   BUTTONS
   ════════════════════════════════ */
.btn-primary {
  display: inline-block;
  background: var(--terra);
  color: var(--white);
  padding: 13px 32px;
  border-radius: var(--radius-pill);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover { background: var(--terra-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--terra);
  border: 1.5px solid var(--terra);
  padding: 12px 32px;
  border-radius: var(--radius-pill);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
}
.btn-secondary:hover { background: var(--terra); color: var(--white); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--terra);
  text-decoration: none;
  padding: 8px 20px;
  border-radius: 40px;
  font-weight: 500;
  border: 1.5px solid var(--terra);
  transition: all 0.2s;
  font-size: 0.85rem;
}
.btn-outline:hover { background: var(--terra); color: white; }

.btn-ghost {
  display: inline-block;
  color: var(--terra);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 6px 0;
  border-bottom: 1.5px solid currentColor;
  transition: color 0.2s;
}
.btn-ghost:hover { color: var(--terra-dark); }

.btn-group { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.btn-group--center { justify-content: center; }

/* ════════════════════════════════
   HOME HERO
   ════════════════════════════════ */
.home-hero {
  text-align: center;
  padding: 80px 0 64px;
  background: linear-gradient(135deg, #fff8f0 0%, #fef5ea 100%);
}

.home-hero__tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--terra);
  font-size: 1.15rem;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.home-hero h1 {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -1px;
  margin-bottom: 20px;
  line-height: 1.15;
}

.home-hero__sub {
  font-size: 1.2rem;
  max-width: 640px;
  margin: 0 auto 36px;
  color: var(--navy-mid);
  line-height: 1.7;
}

/* ════════════════════════════════
   PAGE HERO (inner pages)
   ════════════════════════════════ */
.page-hero {
  background: linear-gradient(150deg, var(--bg-deep) 0%, var(--bg-alt) 100%);
  padding: 56px 0 48px;
  text-align: center;
  border-bottom: 1px solid rgba(46,58,78,0.08);
}

.page-hero h1 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--terra);
  margin-bottom: 16px;
}

.page-hero__sub {
  font-size: 1.1rem;
  max-width: 680px;
  margin: 0 auto;
  color: var(--navy-mid);
  line-height: 1.75;
}

.page-hero__body {
  font-size: 1rem;
  max-width: 760px;
  margin: 20px auto 0;
  color: var(--navy-mid);
  line-height: 1.75;
}

/* ════════════════════════════════
   SECTIONS
   ════════════════════════════════ */
section {
  padding: 72px 0;
  border-bottom: 1px solid rgba(46,58,78,0.07);
}

section.alt { background: var(--bg-alt); }
section.deep { background: var(--bg-deep); }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  font-weight: 600;
  color: var(--navy);
  text-align: center;
  margin-bottom: 12px;
}

.section-sub {
  text-align: center;
  color: var(--navy-mid);
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.section-title + .section-sub { margin-top: 12px; }

/* ════════════════════════════════
   USP / WHY CARDS
   ════════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.why-card .icon { font-size: 2rem; margin-bottom: 12px; }
.why-card h3 { font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.why-card p { font-size: 0.9rem; color: var(--navy-mid); }

/* Positioning callout */
.positioning-box {
  background: var(--bg-deep);
  border-left: 4px solid var(--terra);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 28px 32px;
  margin: 40px 0 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.positioning-box h3 {
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 16px;
}
.positioning-box ul { margin-left: 8px; }
.positioning-box li {
  padding: 6px 0;
  color: var(--navy-mid);
  font-size: 0.98rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.positioning-box li::before {
  content: '✦';
  color: var(--terra);
  font-size: 0.75rem;
  margin-top: 4px;
  flex-shrink: 0;
}

/* ════════════════════════════════
   ACTIVITY GRID
   ════════════════════════════════ */
.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.activity-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}
.activity-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.activity-card .activity-icon { font-size: 2rem; margin-bottom: 12px; }
.activity-card h3 { font-size: 1rem; color: var(--navy); margin-bottom: 8px; font-family: 'Inter', sans-serif; font-weight: 600; }
.activity-card p { font-size: 0.88rem; color: var(--navy-mid); line-height: 1.6; }

/* ════════════════════════════════
   ART FORM CARDS (arts.html)
   ════════════════════════════════ */
.art-section {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 48px;
  align-items: start;
  padding: 48px 0;
  border-bottom: 1px solid rgba(46,58,78,0.07);
}
.art-section:last-of-type { border-bottom: none; }
.art-section.reverse { direction: rtl; }
.art-section.reverse > * { direction: ltr; }

.art-img-placeholder {
  background: var(--bg-deep);
  border: 2px dashed var(--gold);
  border-radius: var(--radius-lg);
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-mid);
  font-style: italic;
  font-size: 0.9rem;
  text-align: center;
  padding: 24px;
}

.art-tag {
  display: inline-block;
  background: var(--bg-deep);
  color: var(--terra);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}

.art-content h2 {
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.art-content .origin {
  font-size: 0.9rem;
  color: var(--navy-light);
  margin-bottom: 16px;
  font-style: italic;
}

.art-content p {
  margin-bottom: 16px;
  font-size: 0.97rem;
  line-height: 1.75;
}

.art-audience {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 16px 0;
}
.audience-tag {
  background: var(--bg-alt);
  border: 1px solid var(--gold);
  color: var(--navy-mid);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
}

/* ════════════════════════════════
   WORKSHOP CARDS (workshops.html)
   ════════════════════════════════ */
.cards-grid,
.workshops-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin: 48px 0;
}

.workshop-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}

.workshop-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.1);
}

.card-img {
  background: #d9cbb8;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b5a48;
  font-size: 2rem;
}

.card-content {
  padding: 24px;
}

.card-level {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 30px;
  margin-bottom: 12px;
}

.level-basic {
  background: #e0f0e8;
  color: #2f6b47;
}

.level-advanced {
  background: #f0e0d4;
  color: var(--terra);
}

.workshop-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--navy);
}

.workshop-card p {
  color: #5a6a78;
  font-size: 0.9rem;
  margin-bottom: 16px;
  line-height: 1.5;
}

.card-duration {
  font-size: 0.8rem;
  color: var(--terra);
  font-weight: 500;
  margin-bottom: 16px;
}

.card-price {
  font-size: 0.85rem;
  color: #2f6b47;
  font-weight: 600;
  margin-bottom: 16px;
}

.workshop-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0;
  font-size: 0.8rem;
  color: #6b7a8a;
}

.workshop-card__meta span {
  background: #f0e8e0;
  padding: 4px 10px;
  border-radius: 20px;
}

/* ════════════════════════════════
   TESTIMONIALS
   ════════════════════════════════ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: -8px;
  opacity: 0.7;
}

.testimonial-card__quote {
  font-size: 0.95rem;
  color: var(--navy-mid);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-card__name {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
}
.testimonial-card__role {
  font-size: 0.82rem;
  color: var(--navy-light);
  margin-top: 4px;
}

/* ════════════════════════════════
   TRUST BAR
   ════════════════════════════════ */
.trust-bar {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  padding: 20px 0;
  text-align: center;
  font-size: 0.88rem;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-bar span { display: flex; align-items: center; gap: 8px; }
.trust-bar strong { color: var(--white); }

/* ════════════════════════════════
   BLEND SECTION
   ════════════════════════════════ */
.blend-teaser {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
  text-align: center;
  padding: 72px 0;
  border-bottom: none;
}
.blend-teaser h2 { color: var(--white); font-size: 2.4rem; margin-bottom: 16px; }
.blend-teaser p { color: rgba(255,255,255,0.8); max-width: 600px; margin: 0 auto 32px; font-size: 1.1rem; }

.blend-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.blend-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--terra);
  transition: transform 0.2s, box-shadow 0.2s;
}
.blend-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blend-card__audience {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--terra);
  margin-bottom: 12px;
}
.blend-card h3 { font-size: 1.15rem; color: var(--navy); margin-bottom: 14px; }
.blend-card p { font-size: 0.9rem; color: var(--navy-mid); line-height: 1.7; }

/* ════════════════════════════════
   AUDIENCE TABS (Wellness page)
   ════════════════════════════════ */
.tabs-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 36px;
}

.tab-btn {
  background: var(--white);
  border: 1.5px solid rgba(46,58,78,0.15);
  color: var(--navy-mid);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.tab-btn:hover { border-color: var(--terra); color: var(--terra); }
.tab-btn.active {
  background: var(--terra);
  border-color: var(--terra);
  color: var(--white);
}

.tab-panel { display: none; }
.tab-panel.active { display: block; }

.audience-panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  box-shadow: var(--shadow-md);
  border-left: 5px solid var(--terra);
}

.audience-panel h3 {
  font-size: 1.7rem;
  color: var(--navy);
  margin-bottom: 16px;
}
.audience-panel > p {
  font-size: 1rem;
  color: var(--navy-mid);
  line-height: 1.8;
  margin-bottom: 28px;
}

.outcomes-list {
  margin-bottom: 24px;
}
.outcomes-list h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--navy-light);
  margin-bottom: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}
.outcomes-list ul { display: flex; flex-direction: column; gap: 8px; }
.outcomes-list li {
  font-size: 0.95rem;
  color: var(--navy-mid);
  padding-left: 20px;
  position: relative;
}
.outcomes-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--terra);
  font-weight: 700;
}

.panel-approach {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-alt);
  border-radius: var(--radius-pill);
  padding: 8px 20px;
  font-size: 0.85rem;
  color: var(--navy-mid);
  font-weight: 500;
  margin-top: 8px;
}
.panel-approach strong { color: var(--terra); }

/* ════════════════════════════════
   SERVICES GRID (Wellness)
   ════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--gold);
}
.service-card h3 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.service-card h3 .svc-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px; height: 30px;
  background: var(--terra);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.85rem;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  flex-shrink: 0;
}
.service-card ul { display: flex; flex-direction: column; gap: 10px; }
.service-card li {
  font-size: 0.92rem;
  color: var(--navy-mid);
  padding-left: 16px;
  position: relative;
  line-height: 1.6;
}
.service-card li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--gold);
}
.service-card li strong { color: var(--navy); font-weight: 600; }

/* ════════════════════════════════
   TABLES (Outcomes, Approaches, Kolam Styles)
   ════════════════════════════════ */
.tbl-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  background:
    linear-gradient(to right, var(--bg) 0%, transparent 12px) left center / 24px 100% no-repeat,
    linear-gradient(to left, var(--bg) 0%, transparent 12px) right center / 24px 100% no-repeat;
}

.styled-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  min-width: 560px;
}
.styled-table th {
  background: var(--navy);
  color: var(--white);
  text-align: left;
  padding: 14px 18px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.3px;
}
.styled-table th:first-child { border-radius: var(--radius-sm) 0 0 0; }
.styled-table th:last-child  { border-radius: 0 var(--radius-sm) 0 0; }

.styled-table td {
  padding: 14px 18px;
  color: var(--navy-mid);
  line-height: 1.65;
  vertical-align: top;
  border-bottom: 1px solid rgba(46,58,78,0.07);
}
.styled-table tr:nth-child(even) td { background: var(--bg-alt); }
.styled-table tr:hover td { background: var(--bg-deep); }

.styled-table td:first-child { font-weight: 600; color: var(--navy); }

/* ════════════════════════════════
   KOLAM GUIDE
   ════════════════════════════════ */
.kolam-section {
  margin-bottom: 48px;
}
.kolam-section h2 {
  font-size: 1.6rem;
  color: var(--terra);
  margin-bottom: 24px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--bg-deep);
}
.kolam-entry {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 26px 28px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--gold);
}
.kolam-entry h3 { font-size: 1.05rem; color: var(--navy); margin-bottom: 10px; }
.kolam-entry p { font-size: 0.93rem; color: var(--navy-mid); line-height: 1.75; }

.learning-path {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 24px 0;
}
.path-step {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px 18px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.path-step__num {
  width: 36px; height: 36px;
  background: var(--terra);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  margin: 0 auto 12px;
}
.path-step h3 { font-size: 1rem; color: var(--navy); margin-bottom: 6px; }
.path-step p { font-size: 0.84rem; color: var(--navy-mid); }

/* ════════════════════════════════
   PROFILE / INSTRUCTOR (about.html)
   ════════════════════════════════ */
.profile-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  align-items: start;
}
.profile-img-wrap {
  text-align: center;
}
.profile-img-wrap img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--gold);
  box-shadow: var(--shadow-md);
  margin: 0 auto;
}
.profile-img-placeholder {
  width: 200px; height: 200px;
  border-radius: 50%;
  background: var(--bg-deep);
  border: 3px dashed var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  color: var(--navy-mid);
  font-style: italic;
  text-align: center;
  padding: 16px;
  margin: 0 auto;
}
.profile-name {
  font-size: 1.8rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.profile-title {
  font-size: 0.9rem;
  color: var(--terra);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  font-family: 'Inter', sans-serif;
}
.profile-bio p {
  font-size: 0.97rem;
  color: var(--navy-mid);
  line-height: 1.8;
  margin-bottom: 16px;
}
.founder-quote {
  border-left: 4px solid var(--gold);
  padding: 12px 20px;
  margin-top: 20px;
  font-style: italic;
  color: var(--navy-mid);
  font-size: 0.97rem;
  line-height: 1.75;
  background: var(--bg-alt);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* ════════════════════════════════
   CONTACT PAGE
   ════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
}
.contact-info-card h3 {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 16px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.93rem;
  color: var(--navy-mid);
}
.contact-item .ci-icon { font-size: 1.1rem; margin-top: 2px; }
.contact-item a { color: var(--terra); }
.contact-item a:hover { text-decoration: underline; }

/* ════════════════════════════════
   FORMS
   ════════════════════════════════ */
.form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 36px;
  box-shadow: var(--shadow-md);
}

.form-group { margin-bottom: 22px; }

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--navy);
}

input, select, textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid rgba(46,58,78,0.18);
  border-radius: var(--radius-md);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--navy);
  background: #FEFCF8;
  transition: border-color 0.2s, box-shadow 0.2s;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--terra);
  box-shadow: 0 0 0 3px rgba(180,95,59,0.15);
}
textarea { resize: vertical; min-height: 110px; }

.form-note {
  margin-top: 14px;
  font-size: 0.8rem;
  color: var(--navy-light);
  text-align: center;
}
.form-note a { color: var(--terra); }

.form-feedback {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 500;
  display: none;
  text-align: center;
}
.form-feedback.success { display: block; background: #EAF7EF; color: #2C6B3A; border: 1px solid #B3DFBF; }
.form-feedback.error   { display: block; background: #FFF0EE; color: #8B2E1A; border: 1px solid #F5B8B0; }

/* ════════════════════════════════
   CTA SECTION
   ════════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 64px 0;
  text-align: center;
  border-bottom: none;
  border-radius: 28px;
  margin: 48px auto;
}
.cta-section h2 { color: var(--white); font-size: 2rem; margin-bottom: 14px; }
.cta-section p { color: rgba(255,255,255,0.78); max-width: 560px; margin: 0 auto 36px; font-size: 1rem; }
.cta-section .btn-primary { background: var(--terra); }
.cta-section .btn-secondary { border-color: rgba(255,255,255,0.5); color: var(--white); }
.cta-section .btn-secondary:hover { background: rgba(255,255,255,0.15); }

/* ════════════════════════════════
   FOOTER
   ════════════════════════════════ */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.78);
  padding: 56px 0 calc(32px + env(safe-area-inset-bottom, 0px));
  margin-top: 48px;
  padding-left: env(safe-area-inset-left, 0px);
  padding-right: env(safe-area-inset-right, 0px);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 28px;
}

.footer-logo img { height: 44px; margin-bottom: 16px; filter: brightness(0) invert(1); opacity: 0.9; }

.footer-tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

footer h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-nav ul { display: flex; flex-direction: column; gap: 8px; }
.footer-nav a {
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--white); }

.footer-contact p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
  line-height: 1.5;
}
.footer-contact a { color: var(--gold); transition: color 0.2s; }
.footer-contact a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}
.footer-bottom a { color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-bottom a:hover { color: rgba(255,255,255,0.7); }

/* ════════════════════════════════
   UTILITY / HELPER CLASSES
   ════════════════════════════════ */
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-8  { margin-bottom: 8px; }
.mb-24 { margin-bottom: 24px; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  z-index: 300;
  padding: 12px 20px;
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
  border-radius: var(--radius-sm);
}
.skip-link:focus {
  left: max(16px, env(safe-area-inset-left, 0px));
  top: 12px;
}

body.nav-open { overflow: hidden; }

.link-terra { color: var(--terra); font-weight: 600; }
.link-terra:hover { color: var(--terra-dark); }

.subheading-sm {
  font-size: 1rem;
  color: var(--navy);
  margin: 20px 0 12px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
}
.subheading-sm--lg {
  font-size: 1.05rem;
  margin-bottom: 14px;
}

.hamburger:focus-visible {
  outline: 2px solid var(--terra);
  outline-offset: 2px;
}

.divider {
  border: none;
  border-top: 1px solid rgba(46,58,78,0.1);
  margin: 32px 0;
}

.highlight-box {
  background: var(--bg-deep);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  margin: 32px 0;
}

/* ════════════════════════════════
   RESPONSIVE
   ════════════════════════════════ */
@media (max-width: 960px) {
  /* Hamburger on */
  .hamburger { display: flex; }
  #primary-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(253,248,240,0.98);
    backdrop-filter: blur(8px);
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 24px 24px;
    box-shadow: var(--shadow-md);
    border-top: 1px solid rgba(46,58,78,0.1);
    gap: 0;
    z-index: 199;
  }
  #primary-nav.open { display: flex; }
  #primary-nav a {
    width: 100%;
    padding: 13px 0;
    border-bottom: 1px solid rgba(46,58,78,0.07);
    font-size: 1rem;
    border-radius: 0;
  }
  #primary-nav a.active { border-bottom-color: var(--terra); }
  .nav-divider { width: 100%; height: 1px; margin: 4px 0; }
  #primary-nav .btn-nav-cta {
    margin: 16px 0 0;
    width: 100%;
    text-align: center;
    padding: 13px;
  }

  /* Art section */
  .art-section { grid-template-columns: 1fr; }
  .art-section.reverse { direction: ltr; }

  /* Profile */
  .profile-grid { grid-template-columns: 1fr; }
  .profile-img-wrap { margin-bottom: 8px; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr 1fr; }

  /* Blend / Learning Path */
  .learning-path { grid-template-columns: 1fr; }
  
  /* CTA Section */
  .cta-section { margin: 32px auto; }
}

@media (max-width: 640px) {
  .container,
  .container--narrow {
    padding-left: max(16px, env(safe-area-inset-left, 0px));
    padding-right: max(16px, env(safe-area-inset-right, 0px));
  }
  .home-hero { padding: 56px 0 48px; }
  section { padding: 52px 0; }
  .section-title { font-size: 1.7rem; }
  .page-hero { padding: 40px 0 36px; }
  .page-hero h1 { font-size: 1.8rem; }
  .audience-panel { padding: 28px 22px; }
  .form-wrap { padding: 24px 20px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .trust-bar { gap: 20px; font-size: 0.82rem; }
  .blend-teaser h2 { font-size: 1.8rem; }
  .cards-grid,
  .workshops-grid { grid-template-columns: 1fr; }
  .cta-section {
    border-radius: 16px;
    margin: 24px max(16px, env(safe-area-inset-right, 0px)) 24px max(16px, env(safe-area-inset-left, 0px));
    padding: 48px max(16px, env(safe-area-inset-left, 0px));
  }
}