/* ─── RVAC Shared Stylesheet ─── */

  :root {
    --clay: #C4693A;
    --clay-light: #D4845A;
    --clay-dark: #9B4E25;
    --sage: #6B7E5A;
    --sage-light: #8A9E78;
    --sage-dark: #4A5C3A;
    --cream: #F5EFE0;
    --warm-white: #FBF7EF;
    --bark: #3D2E1E;
    --bark-light: #5C4535;
    --gold: #C8962A;
    --gold-light: #E5B84A;
    --linen: #EDE3CE;
    --terracotta-bg: #F0E8D8;
  }

  * {
    margin: 0; padding: 0; box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--warm-white);
    color: var(--bark);
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  button {
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
  }

  input, select, textarea {
    font-size: 16px;
  }

  /* ─── MOBILE MENU ─── */
  .nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.4rem;
    z-index: 102;
  }
  .nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--bark);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
  }
  .nav-hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-hamburger.open span:nth-child(2) {
    opacity: 0;
  }
  .nav-hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .mobile-menu {
    position: fixed;
    top: 125px;
    left: 0; right: 0;
    background: var(--warm-white);
    border-bottom: 1px solid rgba(61,46,30,0.1);
    z-index: 99;
    display: flex;
    flex-direction: column;
    padding: 0;
    box-shadow: 0 8px 32px rgba(61,46,30,0.12);
    transform: translateY(-150%);
    transition: transform 0.35s ease;
    visibility: hidden;
  }
  .mobile-menu.open {
    transform: translateY(0);
    visibility: visible;
  }
  .mobile-menu-inner {
    display: flex;
    flex-direction: column;
    padding: 1.5rem 2rem 2rem;
    gap: 0;
  }
  .mobile-menu a {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--bark);
    text-decoration: none;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(61,46,30,0.07);
    letter-spacing: 0.02em;
    transition: color 0.2s;
  }
  .mobile-menu a:hover { color: var(--clay); }
  .mobile-menu a:last-child { border-bottom: none; }
  .mobile-menu-cta {
    margin-top: 1.5rem;
    background: var(--clay);
    color: white !important;
    padding: 1rem 2rem;
    border-radius: 2px;
    text-align: center;
    font-weight: 500 !important;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 0.9rem !important;
    border-bottom: none !important;
  }
  .mobile-menu-cta:hover { background: var(--clay-dark) !important; color: white !important; }

  @media (max-width: 900px) {
    .nav-hamburger { display: flex; }
  }

  /* ─── SUBPAGE TOP SPACER ─── */
  .page-top-spacer {
    height: 25px;
    width: 100%;
  }

  /* Offset page content below fixed nav (50px) + announcement banner (50px) + spacer (25px) */
  .subpage-content {
    padding-top: 125px;
  }

  @media (max-width: 600px) {
    .subpage-content { padding-top: 131px; }
  }

  /* ─── NAV ─── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.2rem 3rem;
    background: rgba(251,247,239,0.92);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(61,46,30,0.1);
  }
  .nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--bark);
    letter-spacing: 0.02em;
    line-height: 1.2;
  }
  .nav-logo span { color: var(--clay); display: block; font-size: 0.65rem; font-family: 'DM Sans', sans-serif; font-weight: 300; letter-spacing: 0.18em; text-transform: uppercase; }
  .nav-links { display: flex; gap: 2rem; align-items: center; }
  .nav-links a {
    font-size: 0.85rem; font-weight: 400; color: var(--bark-light);
    text-decoration: none; letter-spacing: 0.04em;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--clay); }
  .nav-cta {
    background: var(--clay); color: white !important;
    padding: 0.55rem 1.4rem; border-radius: 2px;
    font-weight: 500 !important;
    transition: background 0.2s !important;
  }
  .nav-cta:hover { background: var(--clay-dark) !important; }

  /* ─── HERO ─── */
  #hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 5rem;
    position: relative;
    overflow: hidden;
  }
  .hero-texture {
    position: absolute; inset: 0;
    background-image:
      radial-gradient(ellipse 80% 60% at 70% 40%, rgba(196,105,58,0.08) 0%, transparent 60%),
      radial-gradient(ellipse 50% 80% at 20% 80%, rgba(107,126,90,0.1) 0%, transparent 60%);
    pointer-events: none;
  }
  /* organic blob shapes */
  .blob {
    position: absolute; border-radius: 60% 40% 70% 30% / 50% 60% 40% 70%;
    opacity: 0.07;
    animation: morph 12s ease-in-out infinite alternate;
  }
  .blob-1 { width: 500px; height: 500px; background: var(--clay); top: -100px; right: -100px; }
  .blob-2 { width: 380px; height: 380px; background: var(--sage); bottom: -80px; left: 40%; animation-delay: -4s; border-radius: 40% 60% 30% 70% / 60% 40% 70% 30%; }
  @keyframes morph {
    0% { border-radius: 60% 40% 70% 30% / 50% 60% 40% 70%; }
    100% { border-radius: 30% 70% 40% 60% / 70% 30% 60% 40%; }
  }
  .hero-left {
    display: flex; flex-direction: column; justify-content: center;
    padding: 6rem 4rem 6rem 5rem;
    position: relative; z-index: 2;
  }
  .hero-eyebrow {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem; font-weight: 500;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--clay); margin-bottom: 1.5rem;
    display: flex; align-items: center; gap: 0.75rem;
  }
  .hero-eyebrow::before {
    content: '';
    display: inline-block; width: 2.5rem; height: 1px;
    background: var(--clay);
  }
  .hero-h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 5vw, 5.5rem);
    font-weight: 900;
    line-height: 1.0;
    color: var(--bark);
    margin-bottom: 1rem;
  }
  .hero-h1 em {
    font-style: italic;
    color: var(--clay);
  }
  .hero-sub {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.05rem;
    font-style: italic;
    color: var(--bark-light);
    margin-bottom: 0.75rem;
    line-height: 1.6;
  }
  .hero-desc {
    font-size: 0.95rem;
    color: var(--bark-light);
    line-height: 1.75;
    max-width: 440px;
    margin-bottom: 2.5rem;
  }
  .hero-actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
  .btn-primary {
    background: var(--clay); color: white;
    padding: 0.9rem 2.2rem; border: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem; font-weight: 500;
    letter-spacing: 0.06em; text-transform: uppercase;
    cursor: pointer; border-radius: 2px;
    text-decoration: none;
    transition: background 0.25s, transform 0.15s;
    display: inline-block;
  }
  .btn-primary:hover { background: var(--clay-dark); transform: translateY(-1px); }
  .btn-outline {
    background: transparent; color: var(--bark);
    padding: 0.9rem 2rem;
    border: 1.5px solid var(--bark);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem; font-weight: 400;
    letter-spacing: 0.06em; text-transform: uppercase;
    cursor: pointer; border-radius: 2px;
    text-decoration: none;
    transition: all 0.25s;
    display: inline-block;
  }
  .btn-outline:hover { background: var(--bark); color: white; }
  .hero-right {
    display: flex; align-items: center; justify-content: center;
    padding: 6rem 4rem;
    position: relative; z-index: 2;
  }
  .hero-card-stack {
    position: relative;
    width: 340px; height: 420px;
  }
  .hero-card {
    position: absolute;
    border-radius: 4px;
    overflow: hidden;
  }
  .hero-card-bg {
    width: 300px; height: 380px;
    top: 20px; left: 20px;
    background: var(--linen);
    border: 1px solid rgba(61,46,30,0.1);
    transform: rotate(3deg);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 2rem;
  }
  .hero-card-main {
    width: 300px; height: 380px;
    top: 0; left: 0;
    background: var(--bark);
    display: flex; flex-direction: column;
    justify-content: space-between;
    padding: 2.5rem;
  }
  .card-tag {
    font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold-light); font-weight: 500;
  }
  .card-quote {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem; font-style: italic;
    color: white; line-height: 1.3;
  }
  .card-byline {
    font-size: 0.78rem; color: rgba(255,255,255,0.5);
    letter-spacing: 0.08em;
  }
  .card-stat {
    position: absolute;
    bottom: -20px; right: -20px;
    background: var(--clay);
    color: white;
    padding: 1.2rem 1.5rem;
    border-radius: 4px;
    text-align: center;
  }
  .card-stat strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2rem; font-weight: 700;
  }
  .card-stat span { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.85; }
  .hero-region {
    margin-top: 3rem;
    display: flex; align-items: center; gap: 1rem;
    font-size: 0.8rem; color: var(--bark-light);
  }
  .region-dot {
    width: 8px; height: 8px; background: var(--sage);
    border-radius: 50%; flex-shrink: 0;
  }

  /* ─── SECTION SHARED ─── */
  section { padding: 6rem 5rem; }
  .section-label {
    font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--clay); font-weight: 500;
    display: flex; align-items: center; gap: 0.75rem;
    margin-bottom: 1rem;
  }
  .section-label::after {
    content: ''; flex: 1; max-width: 40px; height: 1px; background: var(--clay);
  }
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 700; line-height: 1.15;
    color: var(--bark);
    margin-bottom: 1.5rem;
  }
  .section-title em { font-style: italic; color: var(--clay); }
  .section-body {
    font-size: 0.95rem;
    color: var(--bark-light);
    line-height: 1.8; max-width: 600px;
  }

  /* ─── MISSION ─── */
  #mission {
    background: var(--warm-white);
    padding: 7rem 5rem;
    position: relative;
    overflow: hidden;
  }
  #mission::before {
    content: '"';
    font-family: 'Playfair Display', serif;
    font-size: 28rem;
    color: rgba(196,105,58,0.06);
    position: absolute;
    top: -6rem; left: 2rem;
    line-height: 1;
    pointer-events: none;
  }
  .mission-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative; z-index: 2;
  }
  .mission-statement {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.4rem, 2.2vw, 2rem);
    font-style: italic;
    line-height: 1.55;
    color: var(--bark);
  }
  .mission-statement strong { font-style: normal; color: var(--clay); }
  .mission-pillars {
    display: flex; flex-direction: column; gap: 1.5rem;
  }
  .pillar {
    display: flex; gap: 1.25rem; align-items: flex-start;
  }
  .pillar-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    background: white;
    border: 1px solid rgba(196,105,58,0.2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
  }
  .pillar-text h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem; font-weight: 700;
    margin-bottom: 0.3rem;
    color: var(--bark);
  }
  .pillar-text p {
    font-size: 0.88rem;
    color: var(--bark-light);
    line-height: 1.65;
  }

  /* ─── STUDIO CAFÉ ─── */
  #studio-cafe {
    background: var(--terracotta-bg);
    padding: 7rem 5rem;
    position: relative;
    overflow: hidden;
  }
  #studio-cafe::before {
    content: '☕';
    font-size: 32rem;
    position: absolute;
    top: -4rem; right: -3rem;
    opacity: 0.04;
    pointer-events: none;
    line-height: 1;
  }
  .cafe-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }
  .cafe-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: end;
    margin-bottom: 5rem;
  }
  .cafe-tagline-block {
    background: var(--bark);
    color: white;
    padding: 2.5rem;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .cafe-tagline-label {
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-light);
    font-weight: 500;
  }
  .cafe-tagline-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-style: italic;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
  }
  .cafe-tagline-text strong { color: var(--clay-light); font-style: normal; }
  .cafe-price-note {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.45);
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1rem;
    margin-top: 0.5rem;
  }
  .cafe-how {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    background: rgba(61,46,30,0.1);
    border: 1.5px solid rgba(61,46,30,0.1);
    margin-bottom: 3rem;
  }
  .cafe-step {
    background: var(--warm-white);
    padding: 2rem 1.75rem;
    position: relative;
  }
  .cafe-step-num {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(196,105,58,0.12);
    line-height: 1;
    margin-bottom: 0.75rem;
  }
  .cafe-step-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--bark);
    margin-bottom: 0.5rem;
  }
  .cafe-step-desc {
    font-size: 0.83rem;
    color: var(--bark-light);
    line-height: 1.65;
  }
  .cafe-kits-label {
    font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--bark-light); font-weight: 500;
    margin-bottom: 1.5rem;
    display: flex; align-items: center; gap: 0.75rem;
  }
  .cafe-kits-label::after {
    content: ''; flex: 1; height: 1px; background: rgba(61,46,30,0.15);
  }
  .cafe-kit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  .cafe-kit-grid-2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 3.5rem;
  }
  .cafe-kit-card {
    background: white;
    border: 1px solid rgba(61,46,30,0.1);
    border-radius: 4px;
    padding: 1.75rem 1.5rem;
    position: relative;
    overflow: hidden;
    cursor: default;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  }
  .cafe-kit-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(61,46,30,0.1);
    border-color: var(--clay);
  }
  .cafe-kit-swatch {
    width: 36px; height: 36px;
    border-radius: 50%;
    margin-bottom: 1rem;
  }
  .swatch-watercolor { background: linear-gradient(135deg, #B5D4F4, #85B7EB, #c2e4f5); }
  .swatch-acrylic    { background: linear-gradient(135deg, #F5C4B3, #D4845A, #C4693A); }
  .swatch-charcoal   { background: linear-gradient(135deg, #B4B2A9, #5F5E5A, #2C2C2A); }
  .swatch-pastel     { background: linear-gradient(135deg, #F4C0D1, #ED93B1, #fde7c2); }
  .swatch-ink        { background: linear-gradient(135deg, #3D2E1E, #5C4535, #888780); }
  .swatch-collage    { background: linear-gradient(135deg, #C0DD97, #639922, #E5B84A); }
  .swatch-mixed      { background: linear-gradient(135deg, #9FE1CB, #1D9E75, #C4693A); }
  .swatch-fiber      { background: linear-gradient(135deg, #FAC775, #BA7517, #EDE3CE); }
  .cafe-kit-name {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--bark);
    margin-bottom: 0.4rem;
    line-height: 1.25;
  }
  .cafe-kit-contents {
    font-size: 0.78rem;
    color: var(--bark-light);
    line-height: 1.6;
    margin-bottom: 0.85rem;
  }
  .cafe-kit-level {
    font-size: 0.65rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 500;
    padding: 0.2rem 0.6rem;
    border-radius: 2px;
    display: inline-block;
  }
  .level-all     { background: rgba(107,126,90,0.12); color: var(--sage); }
  .level-beginner{ background: rgba(200,150,42,0.12); color: var(--gold); }
  .level-any     { background: rgba(196,105,58,0.12); color: var(--clay); }
  .cafe-details {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: start;
  }
  .cafe-detail-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(61,46,30,0.08);
    border: 1px solid rgba(61,46,30,0.08);
  }
  .cafe-detail-item {
    background: var(--warm-white);
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
  }
  .cafe-detail-icon { font-size: 1.25rem; flex-shrink: 0; margin-top: 1px; }
  .cafe-detail-item h5 {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--bark);
    margin-bottom: 0.25rem;
  }
  .cafe-detail-item p {
    font-size: 0.8rem;
    color: var(--bark-light);
    line-height: 1.6;
  }
  .cafe-cta-block {
    background: var(--clay);
    color: white;
    padding: 2.5rem;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }
  .cafe-cta-eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    font-weight: 500;
  }
  .cafe-cta-headline {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 900;
    line-height: 1.2;
    color: white;
  }
  .cafe-cta-desc {
    font-size: 0.83rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
  }
  .cafe-cta-btn {
    display: inline-block;
    background: white;
    color: var(--clay);
    padding: 0.85rem 1.75rem;
    border-radius: 2px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s;
    cursor: pointer;
    border: none;
    text-align: center;
  }
  .cafe-cta-btn:hover { background: var(--linen); }
  .cafe-member-note {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
  }
  @media (max-width: 900px) {
    #studio-cafe { padding: 4rem 2rem; }
    .cafe-header { grid-template-columns: 1fr; gap: 2.5rem; }
    .cafe-how { grid-template-columns: 1fr; }
    .cafe-kit-grid, .cafe-kit-grid-2 { grid-template-columns: 1fr 1fr; }
    .cafe-details { grid-template-columns: 1fr; }
    .cafe-detail-list { grid-template-columns: 1fr; }
  }
  @media (max-width: 480px) {
    .cafe-kit-grid, .cafe-kit-grid-2 { grid-template-columns: 1fr; }
  }

  /* ─── CONSULTATIONS ─── */
  #consultations {
    background: var(--warm-white);
    padding: 7rem 5rem;
  }
  .consultations-inner {
    max-width: 1200px; margin: 0 auto;
  }
  .consultations-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
  }
  .consult-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
  }
  .consult-card {
    background: white;
    border: 1px solid rgba(61,46,30,0.1);
    border-radius: 4px;
    padding: 2.25rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .consult-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(61,46,30,0.1);
  }
  .consult-card::before {
    content: '';
    position: absolute; top: 0; left: 0;
    width: 3px; height: 100%;
    background: var(--clay);
  }
  .consult-card.dark {
    background: var(--bark);
  }
  .consult-card.dark::before { background: var(--gold); }
  .consult-tag {
    font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--sage); font-weight: 500; margin-bottom: 1rem;
  }
  .consult-card.dark .consult-tag { color: var(--gold-light); }
  .consult-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem; font-weight: 700;
    color: var(--bark); margin-bottom: 0.75rem;
    line-height: 1.3;
  }
  .consult-card.dark .consult-title { color: white; }
  .consult-desc {
    font-size: 0.85rem;
    color: var(--bark-light);
    line-height: 1.7;
  }
  .consult-card.dark .consult-desc { color: rgba(255,255,255,0.6); }
  .consult-advisors {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(61,46,30,0.08);
    display: flex; align-items: center; gap: 0.6rem;
  }
  .consult-card.dark .consult-advisors { border-color: rgba(255,255,255,0.1); }
  .consult-advisor-avatars {
    display: flex;
  }
  .consult-avatar {
    width: 28px; height: 28px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 0.65rem; font-weight: 700;
    border: 2px solid white;
    margin-right: -6px;
  }
  .consult-card.dark .consult-avatar { border-color: var(--bark); }
  .ca-sh { background: var(--clay); color: white; }
  .ca-gk { background: var(--sage); color: white; }
  .consult-advisor-label {
    font-size: 0.75rem; color: var(--bark-light);
    margin-left: 0.75rem;
  }
  .consult-card.dark .consult-advisor-label { color: rgba(255,255,255,0.5); }
  .consult-note {
    max-width: 1200px; margin: 0 auto;
    text-align: center;
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
    font-size: 0.9rem;
    color: var(--bark-light);
  }
  @media (max-width: 900px) {
    .consult-grid { grid-template-columns: 1fr; }
    .consultations-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  }

  /* ─── PROGRAMS ─── */
  #programs {
    background: var(--warm-white);
    padding: 7rem 5rem;
  }
  .programs-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
  .programs-header .section-body { margin-top: 1rem; }
  .workshop-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5px;
    background: rgba(61,46,30,0.08);
    border: 1.5px solid rgba(61,46,30,0.08);
    max-width: 1200px;
    margin: 0 auto 4rem;
  }
  .workshop-card {
    background: var(--warm-white);
    padding: 2rem 1.75rem;
    cursor: default;
    transition: background 0.25s;
    position: relative;
    overflow: hidden;
  }
  .workshop-card::after {
    content: '';
    position: absolute; bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--clay);
    transition: width 0.35s ease;
  }
  .workshop-card:hover { background: var(--linen); }
  .workshop-card:hover::after { width: 100%; }
  .wc-tag {
    font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--sage); font-weight: 500;
    margin-bottom: 1rem;
    display: flex; align-items: center; gap: 0.5rem;
  }
  .wc-tag-dot {
    width: 5px; height: 5px; background: var(--sage);
    border-radius: 50;
  }
  .wc-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem; font-weight: 700;
    color: var(--bark);
    margin-bottom: 0.75rem;
    line-height: 1.3;
  }
  .wc-desc {
    font-size: 0.83rem;
    color: var(--bark-light);
    line-height: 1.65;
  }
  .classes-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5px;
    background: rgba(61,46,30,0.08);
    border: 1.5px solid rgba(61,46,30,0.08);
    max-width: 1200px;
    margin: 0 auto;
  }
  .class-card {
    background: var(--bark);
    padding: 2.5rem 2.25rem;
    color: white;
    transition: background 0.25s;
  }
  .class-card:hover { background: var(--bark-light); }
  .cc-freq {
    font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold-light); margin-bottom: 1rem;
  }
  .cc-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem; font-weight: 700;
    margin-bottom: 0.75rem;
  }
  .cc-desc {
    font-size: 0.85rem; color: rgba(255,255,255,0.65);
    line-height: 1.7;
  }
  .programs-note {
    max-width: 1200px; margin: 3rem auto 0;
    text-align: center;
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
    font-size: 0.9rem;
    color: var(--bark-light);
  }

  /* ─── MEMBERSHIP ─── */
  #membership {
    background: var(--warm-white);
    padding: 7rem 5rem;
  }
  .membership-inner { max-width: 1200px; margin: 0 auto; }
  .membership-header { margin-bottom: 4rem; }
  .membership-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  .mem-card {
    background: white;
    border: 1px solid rgba(61,46,30,0.1);
    border-radius: 4px;
    padding: 2.5rem;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .mem-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(61,46,30,0.1);
  }
  .mem-card.featured {
    background: var(--bark);
    color: white;
    border-color: var(--bark);
  }
  .mem-badge {
    position: absolute; top: -12px; left: 2rem;
    background: var(--clay); color: white;
    font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase;
    padding: 0.3rem 0.9rem; border-radius: 2px; font-weight: 500;
  }
  .mem-type {
    font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--sage); font-weight: 500; margin-bottom: 0.75rem;
  }
  .mem-card.featured .mem-type { color: var(--gold-light); }
  .mem-price {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem; font-weight: 900;
    color: var(--bark); margin-bottom: 0.25rem;
    line-height: 1;
  }
  .mem-card.featured .mem-price { color: white; }
  .mem-price-sub {
    font-size: 0.8rem; color: var(--bark-light);
    margin-bottom: 1.75rem;
  }
  .mem-card.featured .mem-price-sub { color: rgba(255,255,255,0.55); }
  .mem-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem; font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--bark);
  }
  .mem-card.featured .mem-name { color: white; }
  .mem-features { list-style: none; margin-bottom: 2rem; }
  .mem-features li {
    font-size: 0.875rem;
    color: var(--bark-light);
    padding: 0.55rem 0;
    border-bottom: 1px solid rgba(61,46,30,0.07);
    display: flex; gap: 0.75rem; align-items: flex-start;
  }
  .mem-card.featured .mem-features li { color: rgba(255,255,255,0.75); border-color: rgba(255,255,255,0.1); }
  .mem-features li::before {
    content: '↗';
    color: var(--clay); font-size: 0.75rem; flex-shrink: 0; margin-top: 1px;
  }
  .mem-card.featured .mem-features li::before { color: var(--gold-light); }
  .mem-cta {
    width: 100%;
    padding: 0.9rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem; font-weight: 500;
    letter-spacing: 0.08em; text-transform: uppercase;
    cursor: pointer; border-radius: 2px;
    border: 1.5px solid var(--clay);
    background: transparent; color: var(--clay);
    transition: all 0.2s;
  }
  .mem-cta:hover { background: var(--clay); color: white; }
  .mem-card.featured .mem-cta {
    background: var(--clay); color: white; border-color: var(--clay);
  }
  .mem-card.featured .mem-cta:hover { background: var(--clay-light); }

  /* ─── GALLERY ─── */
  #gallery {
    background: var(--warm-white);
    padding: 7rem 5rem;
    overflow: hidden;
  }
  .gallery-inner { max-width: 1200px; margin: 0 auto; }
  .gallery-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: end;
    margin-bottom: 4rem;
  }
  .gallery-mosaic {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 280px 200px;
    gap: 8px;
    max-width: 1200px; margin: 0 auto 3rem;
  }
  .gallery-cell {
    border-radius: 3px;
    overflow: hidden;
    position: relative;
  }
  .gallery-cell:first-child { grid-row: 1 / 3; }
  .gallery-cell-inner {
    width: 100%; height: 100%;
    display: flex; align-items: flex-end;
    padding: 1.5rem;
    transition: transform 0.4s ease;
  }
  .gallery-cell:hover .gallery-cell-inner { transform: scale(1.03); }
  /* placeholder art using CSS gradients */
  .gc-1 { background: linear-gradient(135deg, #8B6352 0%, #C4693A 40%, #D4A044 100%); }
  .gc-2 { background: linear-gradient(160deg, #3D6B4F 0%, #6B7E5A 60%, #8A9E78 100%); }
  .gc-3 { background: linear-gradient(200deg, #6B4E3D 0%, #9B7355 50%, #C8962A 100%); }
  .gc-4 { background: linear-gradient(120deg, #2C4A3E 0%, #4B7B6A 100%); }
  .gc-5 { background: linear-gradient(180deg, #7A5C3D 0%, #C4963A 100%); }
  .gallery-label {
    font-size: 0.75rem; color: rgba(255,255,255,0.85);
    letter-spacing: 0.08em; font-weight: 400;
    background: rgba(0,0,0,0.3);
    padding: 0.4rem 0.75rem; border-radius: 2px;
  }
  .gallery-note {
    text-align: center;
    max-width: 500px; margin: 0 auto;
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
    color: var(--bark-light); font-size: 0.9rem;
    line-height: 1.7;
  }
  .gallery-note a {
    color: var(--clay); text-decoration: underline;
    text-decoration-color: rgba(196,105,58,0.4);
  }

  /* ─── TEAM ─── */
  #team {
    background: var(--bark);
    padding: 7rem 5rem;
    color: white;
  }
  .team-inner { max-width: 1200px; margin: 0 auto; }
  .team-header { margin-bottom: 4rem; }
  .team-header .section-label { color: var(--gold-light); }
  .team-header .section-label::after { background: var(--gold-light); }
  .team-header .section-title { color: white; }
  .team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .team-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 4px;
    padding: 2.5rem;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: start;
    transition: background 0.25s;
  }
  .team-card:hover { background: rgba(255,255,255,0.08); }
  .team-avatar {
    width: 80px; height: 80px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem; font-weight: 700;
    flex-shrink: 0;
  }
  .av-sk { background: var(--clay); color: white; }
  .av-gk { background: var(--sage); color: white; }
  .av-rvac { background: rgba(200,150,42,0.2); color: var(--gold-light); }
  .av-sbdc { background: rgba(107,126,90,0.3); color: var(--sage-light); }
  .team-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem; font-weight: 700;
    color: white; margin-bottom: 0.3rem;
  }
  .team-role {
    font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--gold-light); font-weight: 500; margin-bottom: 1rem;
  }
  .team-bio {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.75;
  }
  .team-artsmarts {
    margin-top: 4rem;
    background: var(--warm-white);
    border: 1px solid rgba(61,46,30,0.12);
    border-radius: 4px;
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }
  .artsmarts-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem; font-weight: 900;
    color: var(--clay);
    margin-bottom: 0.5rem;
  }
  .artsmarts-logo span { color: var(--gold); }
  .artsmarts-sub {
    font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--bark-light); margin-bottom: 1.5rem;
  }
  .artsmarts-desc {
    font-size: 0.9rem; color: var(--bark-light); line-height: 1.75;
  }
  .artsmarts-items {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .artsmarts-item {
    background: rgba(196,105,58,0.08);
    border-radius: 3px;
    padding: 1.2rem 1.25rem;
    font-size: 0.83rem;
    color: var(--bark-light);
  }
  .artsmarts-item strong {
    display: block;
    color: var(--clay);
    font-weight: 500;
    margin-bottom: 0.25rem;
    font-size: 0.8rem;
  }

  /* ─── JOIN CTA ─── */
  #join {
    background: var(--clay);
    padding: 6rem 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  #join::before {
    content: 'JOIN';
    font-family: 'Playfair Display', serif;
    font-size: 22rem;
    font-weight: 900;
    color: rgba(255,255,255,0.06);
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    pointer-events: none;
  }
  .join-inner { position: relative; z-index: 2; }
  .join-eyebrow {
    font-size: 0.72rem; letter-spacing: 0.25em; text-transform: uppercase;
    color: rgba(255,255,255,0.7); margin-bottom: 1.5rem;
    font-weight: 500;
  }
  .join-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 900; color: white;
    line-height: 1.1; margin-bottom: 1.5rem;
  }
  .join-desc {
    font-size: 1rem; color: rgba(255,255,255,0.8);
    max-width: 540px; margin: 0 auto 3rem;
    line-height: 1.75;
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
  }
  .join-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
  .btn-white {
    background: white; color: var(--clay);
    padding: 0.95rem 2.5rem; border: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem; font-weight: 500;
    letter-spacing: 0.08em; text-transform: uppercase;
    cursor: pointer; border-radius: 2px;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block;
  }
  .btn-white:hover { background: var(--linen); transform: translateY(-1px); }
  .btn-outline-white {
    background: transparent; color: white;
    padding: 0.95rem 2.2rem;
    border: 1.5px solid rgba(255,255,255,0.6);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem; font-weight: 400;
    letter-spacing: 0.08em; text-transform: uppercase;
    cursor: pointer; border-radius: 2px;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block;
  }
  .btn-outline-white:hover { border-color: white; background: rgba(255,255,255,0.1); }

  /* ─── FOOTER ─── */
  footer {
    background: var(--bark);
    padding: 4rem 5rem 3rem;
    color: rgba(255,255,255,0.5);
  }
  .footer-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
  }
  .footer-brand .nav-logo { color: white; font-size: 1.2rem; margin-bottom: 1rem; }
  .footer-tagline {
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.65;
    max-width: 260px;
    margin-bottom: 1.5rem;
  }
  .footer-region {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.3);
    letter-spacing: 0.05em;
  }
  .footer-col h5 {
    font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: rgba(255,255,255,0.4); font-weight: 500;
    margin-bottom: 1.25rem;
  }
  .footer-col a {
    display: block;
    font-size: 0.87rem;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    margin-bottom: 0.65rem;
    transition: color 0.2s;
  }
  .footer-col a:hover { color: var(--clay-light); }
  .footer-bottom {
    max-width: 1200px; margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.07);
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.78rem;
  }
  .footer-bottom a { color: var(--clay-light); text-decoration: none; }

  /* ─── ANNOUNCEMENT BANNER ─── */
  #announcement-bar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 101;
    background: var(--bark);
    border-bottom: 1px solid rgba(196,105,58,0.3);
  }
  .announcement-inner {
    display: flex; align-items: center; justify-content: center;
    gap: 1rem;
    padding: 1rem 4rem;
    position: relative;
  }
  .announcement-dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: var(--clay);
    flex-shrink: 0;
    animation: pulse 1.8s ease-in-out infinite;
  }
  .announcement-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.02em;
    text-align: center;
    line-height: 1.5;
  }
  .announcement-text strong {
    color: white;
    font-weight: 500;
  }
  .announcement-close {
    position: absolute; right: 1.5rem;
    background: none; border: none;
    color: rgba(255,255,255,0.4);
    font-size: 0.9rem; cursor: pointer;
    padding: 0.25rem 0.5rem;
    transition: color 0.2s;
    line-height: 1;
  }
  .announcement-close:hover { color: white; }

  /* Push nav down when banner is visible */
  nav {
    top: 50px;
  }
  #hero {
    padding-top: calc(5rem + 50px);
  }

  @media (max-width: 600px) {
    .announcement-inner { padding: 0.85rem 2.5rem 0.85rem 1rem; }
    .announcement-text { font-size: 0.88rem; }
    nav { top: 56px; }
    #hero { padding-top: calc(5rem + 56px); }
  }

  /* ─── COMING SOON ─── */
  .coming-soon-banner {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: var(--gold); color: var(--bark);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.68rem; font-weight: 700;
    letter-spacing: 0.18em; text-transform: uppercase;
    padding: 0.35rem 0.9rem; border-radius: 2px;
    margin-bottom: 1.25rem;
  }
  .coming-soon-banner::before {
    content: '◉';
    font-size: 0.6rem;
    animation: pulse 1.8s ease-in-out infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
  }
  .coming-soon-overlay {
    position: relative;
  }
  .coming-soon-overlay::after {
    content: '';
    position: absolute; inset: 0;
    background: rgba(251,247,239,0.55);
    pointer-events: none;
    border-radius: 3px;
  }
  .mem-card .coming-soon-badge {
    position: absolute; top: -12px; right: 1.5rem;
    background: var(--gold); color: var(--bark);
    font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase;
    padding: 0.28rem 0.75rem; border-radius: 2px; font-weight: 700;
  }

  /* ─── SCROLL ANIMATIONS ─── */
  .fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .fade-up.visible { opacity: 1; transform: translateY(0); }
  .fade-up:nth-child(2) { transition-delay: 0.1s; }
  .fade-up:nth-child(3) { transition-delay: 0.2s; }
  .fade-up:nth-child(4) { transition-delay: 0.3s; }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 900px) {
    #hero { grid-template-columns: 1fr; }
    .hero-right { display: none; }
    .hero-left { padding: 5rem 2rem 3rem; }
    section { padding: 4rem 2rem; }
    nav { padding: 1rem 1.5rem; }
    .nav-links { display: none; }
    .mission-inner { grid-template-columns: 1fr; gap: 3rem; }
    .workshop-grid { grid-template-columns: 1fr 1fr; }
    .membership-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .team-artsmarts { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .gallery-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
    .gallery-cell:first-child { grid-row: auto; }
    .gallery-header { grid-template-columns: 1fr; gap: 1rem; }
    .programs-header { flex-direction: column; align-items: flex-start; }
  }

  @media (max-width: 480px) {
    .workshop-grid { grid-template-columns: 1fr; }
    .classes-row { grid-template-columns: 1fr; }
    .artsmarts-items { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
    .hero-actions { flex-direction: column; }
    .btn-primary, .btn-outline { width: 100%; text-align: center; }
    .join-actions { flex-direction: column; align-items: center; }
    .btn-white, .btn-outline-white { width: 100%; max-width: 280px; text-align: center; }
    .gallery-mosaic { grid-template-columns: 1fr; }
    .team-card { grid-template-columns: 1fr; }
    .team-avatar { margin: 0 auto; }
    #join::before { font-size: 12rem; }
    #mission::before { font-size: 16rem; }
  }



/* ─── CONSULTATIONS (new) ─── */
block into your site's existing <style> or stylesheet.
  Paste the <section> block wherever you want it in <body>.
  Depends on the RVAC CSS variables already defined in the main stylesheet:
  --clay, --clay-light, --bark, --bark-light, --sage, --sage-dark,
  --gold-light, --terracotta-bg, --warm-white, --linen
  and the .section-label / .section-title / .section-body / .fade-up classes.
-->

<!-- ─── CONSULTATION STYLES ─── -->
<style>
  /* ─── CONSULTATIONS ─── */
  #consultations {
    background: var(--terracotta-bg);
    padding: 7rem 5rem;
    position: relative;
    overflow: hidden;
  }
  #consultations::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
      radial-gradient(ellipse 60% 50% at 90% 10%, rgba(196,105,58,0.09) 0%, transparent 60%),
      radial-gradient(ellipse 40% 60% at 5% 80%, rgba(107,126,90,0.07) 0%, transparent 60%);
    pointer-events: none;
  }
  .consult-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 2; }
  .consult-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: end;
    margin-bottom: 4rem;
  }
  .consult-header .section-body { margin-top: 1rem; }

  /* Type cards */
  .consult-type-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
  }
  .consult-type-card {
    border: 2px solid rgba(61,46,30,0.1);
    border-radius: 3px;
    padding: 1.75rem 1.5rem 1.5rem;
    background: white;
    display: flex; flex-direction: column;
    transition: all 0.2s;
    position: relative;
    overflow: hidden;
  }
  .consult-type-card::after {
    content: '';
    position: absolute; bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--clay);
    transition: width 0.35s ease;
  }
  .consult-type-card:hover { border-color: rgba(196,105,58,0.3); box-shadow: 0 6px 24px rgba(61,46,30,0.08); }
  .consult-type-card:hover::after { width: 100%; }
  .ctc-icon { font-size: 1.5rem; margin-bottom: 0.9rem; }
  .ctc-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem; font-weight: 700;
    color: var(--bark); margin-bottom: 0.5rem;
    line-height: 1.25;
  }
  .ctc-desc {
    font-size: 0.82rem; color: var(--bark-light);
    line-height: 1.65; flex: 1; margin-bottom: 1.25rem;
  }
  .ctc-meta {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(61,46,30,0.07);
  }
  .ctc-price {
    font-size: 0.78rem; font-weight: 600;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--clay);
  }
  .ctc-duration {
    font-size: 0.75rem; color: var(--bark-light);
  }
  .ctc-book-btn {
    display: block; width: 100%;
    padding: 0.75rem 1rem; text-align: center;
    background: var(--bark); color: var(--gold-light);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem; font-weight: 500;
    letter-spacing: 0.08em; text-transform: uppercase;
    text-decoration: none; border-radius: 2px;
    transition: background 0.2s;
  }
  .ctc-book-btn:hover { background: var(--bark-light); }
  .ctc-book-btn.free { background: var(--sage); color: white; }
  .ctc-book-btn.free:hover { background: var(--sage-dark); }

  /* How it works strip */
  .consult-how {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 0;
    background: var(--bark);
    border-radius: 4px;
    overflow: hidden;
    margin-top: 3rem;
  }
  .consult-how-step {
    padding: 2rem 2.25rem;
    border-right: 1px solid rgba(255,255,255,0.07);
    display: flex; gap: 1.25rem; align-items: flex-start;
  }
  .consult-how-step:last-child { border-right: none; }
  .chs-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem; font-weight: 900;
    color: var(--clay); line-height: 1;
    flex-shrink: 0;
  }
  .chs-title {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem; font-weight: 700;
    color: white; margin-bottom: 0.35rem;
  }
  .chs-desc { font-size: 0.8rem; color: rgba(255,255,255,0.5); line-height: 1.6; }

  @media (max-width: 900px) {
    #consultations { padding: 5rem 2rem; }
    .consult-header { grid-template-columns: 1fr; gap: 1.5rem; }
    .consult-type-grid { grid-template-columns: 1fr 1fr; }
    .consult-how { grid-template-columns: 1fr; }
    .consult-how-step { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
    .consult-how-step:last-child { border-bottom: none; }
  }
  @media (max-width: 480px) {
    .consult-type-grid { grid-template-columns: 1fr; }
  }

/* ─── ARTSMARTS PAGE ─── */
/* ─── ARTSMARTS PAGE SPECIFIC ─── */
  .as-hero {
    background: var(--bark);
    padding: 8rem 5rem 6rem;
    position: relative;
    overflow: hidden;
  }
  .as-hero::before {
    content: 'ARTSMARTS';
    font-family: 'Playfair Display', serif;
    font-size: 14rem;
    font-weight: 900;
    color: rgba(255,255,255,0.03);
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    pointer-events: none;
    letter-spacing: -0.02em;
  }
  .as-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }
  .as-hero-logo {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .as-hero-logo img {
    width: 100%;
    max-width: 360px;
    border-radius: 4px;
  }
  .as-hero-tag {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--clay-light);
    font-weight: 500;
  }
  .as-hero-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .as-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 3.5vw, 3.5rem);
    font-weight: 900;
    color: white;
    line-height: 1.1;
  }
  .as-hero-title em {
    font-style: italic;
    color: var(--clay-light);
  }
  .as-hero-desc {
    font-family: 'Libre Baskerville', serif;
    font-size: 1rem;
    font-style: italic;
    color: rgba(255,255,255,0.65);
    line-height: 1.75;
  }
  .as-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--clay);
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 2px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    width: fit-content;
  }
  .as-hero-cta:hover { background: var(--clay-dark); transform: translateY(-1px); }

  /* ─── TABS ─── */
  .as-tabs-section {
    background: var(--warm-white);
    padding: 5rem 5rem 7rem;
  }
  .as-tabs-inner {
    max-width: 1200px;
    margin: 0 auto;
  }
  .as-tab-nav {
    display: flex;
    gap: 0;
    border-bottom: 2px solid rgba(61,46,30,0.1);
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
  }
  .as-tab-btn {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--bark-light);
    background: none;
    border: none;
    padding: 1rem 1.75rem;
    cursor: pointer;
    position: relative;
    transition: color 0.2s;
    white-space: nowrap;
  }
  .as-tab-btn::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0; right: 0;
    height: 2px;
    background: var(--clay);
    transform: scaleX(0);
    transition: transform 0.25s ease;
  }
  .as-tab-btn:hover { color: var(--bark); }
  .as-tab-btn.active {
    color: var(--clay);
  }
  .as-tab-btn.active::after {
    transform: scaleX(1);
  }

  /* ─── TAB PANELS ─── */
  .as-tab-panel {
    display: none;
  }
  .as-tab-panel.active {
    display: block;
    animation: fadeInTab 0.3s ease;
  }
  @keyframes fadeInTab {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* About panel */
  .as-about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: start;
  }
  .as-about-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 2.5vw, 2.5rem);
    font-weight: 700;
    color: var(--bark);
    line-height: 1.2;
    margin-bottom: 1.5rem;
  }
  .as-about-headline em { font-style: italic; color: var(--clay); }
  .as-about-body {
    font-size: 0.95rem;
    color: var(--bark-light);
    line-height: 1.85;
    margin-bottom: 1.5rem;
  }
  .as-about-quote {
    border-left: 3px solid var(--clay);
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    background: var(--linen);
    border-radius: 0 4px 4px 0;
  }
  .as-about-quote p {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.05rem;
    color: var(--bark);
    line-height: 1.6;
  }
  .as-about-quote cite {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--clay);
    margin-top: 0.75rem;
    font-style: normal;
    font-family: 'DM Sans', sans-serif;
  }
  .as-about-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }
  .as-fact-card {
    background: white;
    border: 1px solid rgba(61,46,30,0.1);
    border-radius: 4px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
  }
  .as-fact-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px; height: 100%;
    background: var(--clay);
  }
  .as-fact-label {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--sage);
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-family: 'DM Sans', sans-serif;
  }
  .as-fact-value {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--bark);
    line-height: 1.4;
  }
  .as-fact-sub {
    font-size: 0.8rem;
    color: var(--bark-light);
    margin-top: 0.3rem;
    line-height: 1.5;
  }
  .as-visit-btn {
    display: block;
    text-align: center;
    background: var(--bark);
    color: white;
    padding: 1rem;
    border-radius: 2px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s;
    margin-top: 0.5rem;
  }
  .as-visit-btn:hover { background: var(--bark-light); }

  /* ─── PARTNERSHIP STRIP ─── */
  .as-partnership {
    background: var(--bark);
    padding: 4rem 5rem;
  }
  .as-partnership-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
  }
  .as-partnership-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
  }
  .as-partnership-text p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.65;
    max-width: 500px;
  }
  .as-partnership-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    flex-shrink: 0;
  }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 900px) {
    .as-hero { padding: 7rem 2rem 4rem; }
    .as-hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .as-tabs-section { padding: 4rem 2rem 5rem; }
    .as-about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .as-partnership { padding: 3rem 2rem; }
    .as-partnership-inner { flex-direction: column; align-items: flex-start; }
  }
  @media (max-width: 480px) {
    .as-hero::before { font-size: 5rem; }
    .as-tab-btn { padding: 0.75rem 1rem; font-size: 0.78rem; }
  }

/* ─── VERA AGENT STYLES ─── */

  /* Floating button */
  #vera-fab {
    position: fixed; bottom: 2rem; right: 2rem; z-index: 999;
    width: 60px; height: 60px; border-radius: 50%;
    background: var(--bark);
    border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(61,46,30,0.35);
    transition: transform 0.2s, box-shadow 0.2s;
  }
  #vera-fab:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(61,46,30,0.4); }
  #vera-fab svg { width: 26px; height: 26px; fill: none; stroke: var(--gold-light); stroke-width: 1.8; }
  #vera-fab-label {
    position: fixed; bottom: 5rem; right: 2rem; z-index: 999;
    background: var(--bark); color: var(--gold-light);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
    padding: 0.3rem 0.75rem; border-radius: 2px;
    pointer-events: none;
    opacity: 1; transition: opacity 0.3s;
  }
  #vera-fab-label.hidden { opacity: 0; }

  /* Chat panel */
  #vera-panel {
    position: fixed; bottom: 2rem; right: 2rem; z-index: 998;
    width: 400px; max-width: calc(100vw - 2rem);
    height: 600px; max-height: calc(100vh - 4rem);
    background: var(--warm-white);
    border: 1px solid rgba(61,46,30,0.12);
    border-radius: 6px;
    box-shadow: 0 16px 60px rgba(61,46,30,0.2);
    display: none; flex-direction: column;
    overflow: hidden;
    font-family: 'DM Sans', sans-serif;
  }
  #vera-panel.open { display: flex; }

  /* Panel header */
  .vera-header {
    background: var(--bark);
    padding: 1.1rem 1.25rem;
    display: flex; align-items: center; gap: 0.85rem;
    flex-shrink: 0;
  }
  .vera-avatar {
    width: 38px; height: 38px; border-radius: 50%;
    background: var(--clay); color: white;
    font-family: 'Playfair Display', serif;
    font-size: 1rem; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .vera-header-info { flex: 1; }
  .vera-name {
    font-family: 'Playfair Display', serif;
    font-size: 1rem; font-weight: 700; color: white;
  }
  .vera-status {
    font-size: 0.7rem; color: rgba(255,255,255,0.5);
    letter-spacing: 0.08em; display: flex; align-items: center; gap: 0.4rem;
  }
  .vera-status-dot { width: 6px; height: 6px; background: var(--sage-light); border-radius: 50%; }
  .vera-header-btns { display: flex; gap: 0.5rem; }
  .vera-btn {
    background: rgba(255,255,255,0.1); border: none; color: rgba(255,255,255,0.6);
    width: 28px; height: 28px; border-radius: 2px;
    cursor: pointer; font-size: 0.8rem;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.15s;
  }
  .vera-btn:hover { background: rgba(255,255,255,0.18); color: white; }

  /* Onboarding */
  #vera-onboarding {
    flex: 1; overflow-y: auto;
    padding: 1.5rem;
    display: flex; flex-direction: column; gap: 1.25rem;
  }
  .vera-onboard-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem; font-weight: 700; color: var(--bark);
    line-height: 1.3;
  }
  .vera-onboard-sub {
    font-size: 0.83rem; color: var(--bark-light); line-height: 1.6;
    font-family: 'Libre Baskerville', serif; font-style: italic;
    margin-top: -0.5rem;
  }
  .vera-field-label {
    font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--clay); font-weight: 500; margin-bottom: 0.5rem;
  }
  .vera-input {
    width: 100%; padding: 0.7rem 0.9rem;
    border: 1.5px solid rgba(61,46,30,0.15);
    border-radius: 2px; background: white;
    font-family: 'DM Sans', sans-serif; font-size: 0.9rem;
    color: var(--bark); outline: none;
    transition: border-color 0.2s;
  }
  .vera-input:focus { border-color: var(--clay); }
  .vera-disciplines {
    display: flex; flex-wrap: wrap; gap: 0.5rem;
  }
  .vera-disc-btn {
    padding: 0.4rem 0.85rem;
    border-radius: 2px;
    border: 1.5px solid rgba(61,46,30,0.15);
    background: white; color: var(--bark-light);
    font-size: 0.8rem; cursor: pointer;
    transition: all 0.15s;
    font-family: 'DM Sans', sans-serif;
  }
  .vera-disc-btn.selected {
    background: var(--bark); color: var(--gold-light);
    border-color: var(--bark);
  }
  .vera-start-btn {
    width: 100%; padding: 0.85rem;
    background: var(--clay); color: white; border: none;
    font-family: 'DM Sans', sans-serif; font-size: 0.88rem;
    font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
    cursor: pointer; border-radius: 2px;
    transition: background 0.2s;
    -webkit-appearance: none; appearance: none;
  }
  .vera-start-btn:hover { background: var(--clay-dark); }
  .vera-start-btn:disabled { background: rgba(61,46,30,0.2); cursor: not-allowed; }

  /* Chat area */
  #vera-chat { display: none; flex-direction: column; flex: 1; overflow: hidden; }
  #vera-chat.active { display: flex; }
  #vera-messages {
    flex: 1; overflow-y: auto;
    padding: 1.25rem 1rem;
    display: flex; flex-direction: column; gap: 0.85rem;
    scroll-behavior: smooth;
  }
  .vera-msg {
    max-width: 86%; display: flex; flex-direction: column; gap: 0.25rem;
  }
  .vera-msg.user { align-self: flex-end; align-items: flex-end; }
  .vera-msg.agent { align-self: flex-start; align-items: flex-start; }
  .vera-bubble {
    padding: 0.7rem 0.95rem;
    border-radius: 3px;
    font-size: 0.86rem; line-height: 1.65;
  }
  .vera-msg.user .vera-bubble {
    background: var(--bark); color: white;
  }
  .vera-msg.agent .vera-bubble {
    background: white;
    border: 1px solid rgba(61,46,30,0.1);
    color: var(--bark);
  }
  .vera-bubble a { color: var(--clay); text-decoration: underline; text-decoration-color: rgba(196,105,58,0.4); }
  .vera-typing {
    display: flex; gap: 4px; padding: 0.75rem 0.95rem;
    background: white; border: 1px solid rgba(61,46,30,0.1);
    border-radius: 3px; width: fit-content;
  }
  .vera-typing span {
    width: 6px; height: 6px; background: var(--bark-light);
    border-radius: 50%; animation: typingDot 1.2s infinite;
  }
  .vera-typing span:nth-child(2) { animation-delay: 0.2s; }
  .vera-typing span:nth-child(3) { animation-delay: 0.4s; }
  @keyframes typingDot {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
    30% { transform: translateY(-4px); opacity: 1; }
  }

  /* Suggested prompts */
  #vera-prompts {
    padding: 0 1rem 0.75rem;
    display: flex; flex-wrap: wrap; gap: 0.4rem;
    flex-shrink: 0;
  }
  .vera-prompt-chip {
    padding: 0.35rem 0.75rem;
    border: 1px solid rgba(196,105,58,0.3);
    border-radius: 2px; background: transparent;
    font-size: 0.75rem; color: var(--clay);
    cursor: pointer; font-family: 'DM Sans', sans-serif;
    transition: all 0.15s;
    -webkit-appearance: none; appearance: none;
  }
  .vera-prompt-chip:hover { background: var(--clay); color: white; border-color: var(--clay); }

  /* Input bar */
  .vera-input-row {
    display: flex; gap: 0.5rem;
    padding: 0.85rem 1rem;
    border-top: 1px solid rgba(61,46,30,0.08);
    background: white; flex-shrink: 0;
  }
  #vera-text-input {
    flex: 1; padding: 0.65rem 0.85rem;
    border: 1.5px solid rgba(61,46,30,0.15);
    border-radius: 2px; background: var(--warm-white);
    font-family: 'DM Sans', sans-serif; font-size: 0.88rem;
    color: var(--bark); outline: none; resize: none;
    transition: border-color 0.2s;
  }
  #vera-text-input:focus { border-color: var(--clay); }
  #vera-send-btn {
    background: var(--clay); color: white; border: none;
    padding: 0.65rem 1rem; border-radius: 2px;
    cursor: pointer; font-size: 0.85rem;
    transition: background 0.2s;
    -webkit-appearance: none; appearance: none;
    flex-shrink: 0;
  }
  #vera-send-btn:hover { background: var(--clay-dark); }
  #vera-send-btn:disabled { background: rgba(61,46,30,0.2); cursor: not-allowed; }

  @media (max-width: 480px) {
    #vera-panel { bottom: 0; right: 0; width: 100vw; max-width: 100vw; height: 100dvh; max-height: 100dvh; border-radius: 0; }
    #vera-fab { bottom: 1.25rem; right: 1.25rem; }
    #vera-fab-label { bottom: 4.5rem; right: 1.25rem; }
  }
