/* ============================================================
   Oak Cliff Mahj — Mahjong with Sarah
   Quiet luxury. Editorial. Clean. OCSM-inspired structure.
   ============================================================ */

:root {
  --cream:        #F7F3ED;
  --ivory:        #FDFAF6;
  --white:        #FFFFFF;
  --navy:         #1A2B3C;
  --navy-mid:     #2C3E50;
  --gold:         #B89A5E;
  --gold-light:   #D4B87A;
  --sage:         #4A7260;
  --sage-light:   #6B9B87;
  --lavender:     #8B7DB5;
  --lavender-mid: #A898C8;
  --lavender-lt:  #C8C0DC;
  --text:         #1A2B3C;
  --text-mid:     #4A5568;
  --text-light:   #8896A6;
  --border:       rgba(26,43,60,0.10);
  --border-mid:   rgba(26,43,60,0.18);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', system-ui, sans-serif;

  --max-w: 1120px;
  --section-pad: 7rem 0;
  --nav-h: 72px;
}

/* Dark mode */
@media (prefers-color-scheme: dark) {
  :root {
    --cream:      #131A23;
    --ivory:      #1C2530;
    --white:      #1C2530;
    --text:       #E8E2D6;
    --text-mid:   #9BAAB8;
    --text-light: #5A6A7A;
    --border:     rgba(232,226,214,0.09);
    --border-mid: rgba(232,226,214,0.18);
  }
  .logo-light  { display: none !important; }
  .logo-dark   { display: block !important; }
}
@media (prefers-color-scheme: light) {
  .logo-dark   { display: none !important; }
  .logo-light  { display: block !important; }
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text);
  background: var(--ivory);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; }

/* ---- Utility ---- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-label {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-light);
}

.divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem 0;
}

/* ---- NAV ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  background: var(--cream);
  border-bottom: 3px solid var(--cream);
  box-shadow: 0 2px 0 var(--navy);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.nav-logo img { height: 40px; width: auto; }
.nav-logo { text-decoration: none; }

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.25rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

.nav-cta {
  padding: 0.5rem 1.4rem !important;
  border: 1px solid var(--navy) !important;
  color: var(--navy) !important;
  transition: background 0.2s, color 0.2s, border-color 0.2s !important;
}
.nav-cta:hover {
  background: var(--gold) !important;
  color: #fff !important;
  border-color: var(--gold) !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--navy);
  padding: 0.25rem;
}

/* Nav icon - single icon for cream nav bar */
.nav .nav-icon { display: block !important; border-radius: 4px; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.9rem 2.25rem;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}
.btn-dark {
  background: var(--navy);
  color: var(--ivory);
}
.btn-dark:hover { background: var(--gold); color: var(--navy); }

.btn-sage {
  background: var(--sage);
  color: #fff;
  border: 1px solid var(--sage);
}
.btn-sage:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-mid);
}
.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(184,154,94,0.06);
}

/* ---- HERO ---- */
.hero {
  min-height: calc(100vh - var(--nav-h));
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.hero-left {
  padding: 5rem 4rem 5rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 580px;
  margin: 0 auto 0 auto;
  width: 100%;
  background: var(--navy);
}

.hero-logo {
  width: 340px;
  margin-bottom: 2.5rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.04em;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 4.5vw, 5rem);
  font-weight: 300;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 1.5rem;
}
.hero-title em { font-style: italic; color: var(--lavender-lt); }

.hero-body {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.85;
  max-width: 440px;
  margin-bottom: 1rem;
}

.hero-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--lavender-lt);
  margin-bottom: 2.5rem;
}

.hero-right {
  height: calc(100vh - var(--nav-h));
  position: relative;
  overflow: hidden;
}

.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-right::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--ivory) 0%, transparent 8%);
}

/* ---- INTRO PILLARS ---- */
.pillars {
  padding: var(--section-pad);
  background: #2A6B7C;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  color: #fff;
}

.pillars-header {
  text-align: center;
  margin-bottom: 4rem;
}

.pillars-header .eyebrow { color: var(--gold-light); }

.pillars-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 300;
  color: #fff;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid rgba(255,255,255,0.18);
}

.pillar {
  padding: 2.75rem 2.25rem;
  border-right: 1px solid rgba(255,255,255,0.18);
}
.pillar:last-child { border-right: none; }

.pillar-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: rgba(255,255,255,0.2);
  line-height: 1;
  margin-bottom: 1.25rem;
}

.pillar h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 0.75rem;
}

.pillar p {
  font-size: 0.93rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.8;
}

/* ---- SPLIT SECTION (photo + copy) ---- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

.split-img {
  overflow: hidden;
  position: relative;
}
.split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.split-img img.rotate-cw-90 {
  transform: rotate(90deg);
  transform-origin: center center;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.split-img img.portrait-rotate {
  transform: rotate(90deg);
  transform-origin: center center;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.split-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 4rem;
}

.split-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 1.25rem;
}
.split-copy h2 em { font-style: italic; color: var(--sage); }

.split-copy p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 1.25rem;
  max-width: 460px;
}

.split-copy p:last-of-type { margin-bottom: 2rem; }

.split-reverse { direction: rtl; }
.split-reverse > * { direction: ltr; }

/* ---- PHOTO STRIP ---- */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 360px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.photo-strip-item {
  overflow: hidden;
  position: relative;
}

.photo-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.photo-strip-item:hover img { transform: scale(1.04); }

.photo-strip-item img.rotate-90 {
  transform: rotate(90deg);
  object-fit: cover;
}
.photo-strip-item:hover img.rotate-90 { transform: rotate(90deg) scale(1.04); }

/* ---- INSTAGRAM CTA ---- */
.insta-section {
  padding: var(--section-pad);
  text-align: center;
  background: var(--lavender);
  color: #fff;
}

.insta-section .eyebrow { color: var(--lavender-lt); }

.insta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  font-weight: 300;
  margin-bottom: 0.75rem;
  color: #fff;
}

.insta-section p { font-size: 1rem; color: rgba(255,255,255,0.82); margin-bottom: 2rem; }

.insta-handle {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.5);
  padding-bottom: 2px;
  margin: 0 1rem;
  transition: border-color 0.2s, opacity 0.2s;
}
.insta-handle:hover { opacity: 0.8; border-color: #fff; }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  padding: 6rem 0 4.5rem;
  background: var(--navy);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.page-hero-inner { max-width: 700px; }
.page-hero .eyebrow { color: var(--gold-light); }

.page-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 1.25rem;
}
.page-title em { font-style: italic; color: var(--lavender-lt); }

.page-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  max-width: 560px;
}

/* ---- ABOUT PAGE ---- */
.about-body { padding: var(--section-pad); }

.about-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 6rem;
  align-items: start;
}

.about-lead {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.55;
  color: var(--lavender-mid);
  margin-bottom: 1.75rem;
  border-left: 3px solid var(--lavender-mid);
  padding-left: 1.25rem;
}

.about-copy p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 1.25rem;
}
.about-copy em { color: var(--text); font-style: italic; }

.about-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--lavender);
  margin-top: 2rem !important;
  margin-bottom: 2.5rem !important;
}

.about-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
/* About page sidebar image */
.about-sidebar-img {
  width: 480px;
  height: auto;
  display: block;
  transform: rotate(-90deg);
  transform-origin: center center;
}

.sidebar-photo {
  overflow: visible;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 530px;
}
.sidebar-photo img { width: 100%; object-fit: cover; object-position: center 20%; }

.sidebar-logo-wrap {
  border: 1px solid var(--border);
  padding: 2rem;
  text-align: center;
  background: var(--cream);
}
.sidebar-logo-wrap img { max-width: 200px; margin: 0 auto; }

.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.stat-item {
  background: var(--ivory);
  padding: 1.5rem 1.25rem;
  text-align: center;
}

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.35rem;
}
@media (prefers-color-scheme: dark) {
  .stat-num { color: var(--gold-light); }
}

.stat-label {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
}

.about-photo-full {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  object-position: center 70%;
  display: block;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* ---- LESSONS PAGE ---- */
.lessons-intro { padding: 4rem 0 2rem; }

.lessons-lead {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--text-mid);
  max-width: 780px;
}

.pricing-section { padding: 4rem 0 5rem; }

.section-title {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 300;
  color: var(--text);
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 3rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 4rem;
}

.pricing-card {
  background: var(--ivory);
  padding: 2.75rem 2.25rem;
  display: flex;
  flex-direction: column;
}

.pricing-card.featured { background: var(--cream); }

.pricing-tag {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.pricing-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--text);
  line-height: 1;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.pricing-from {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-light);
  font-family: var(--font-body);
}

.pricing-unit { font-size: 1rem; color: var(--text-light); }

.pricing-inquire {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-mid);
  font-family: var(--font-display);
  font-weight: 300;
}

.pricing-card p {
  font-size: 0.93rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  flex: 1;
}

.tier-list {
  list-style: none;
  margin-bottom: 1.5rem;
}
.tier-list li {
  display: flex;
  justify-content: space-between;
  font-size: 0.87rem;
  color: var(--text-mid);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}

.lessons-photo-pair {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  background: transparent;
  height: 480px;
  margin-bottom: 5rem;
}
.lessons-photo-pair .photo-wrap { overflow: hidden; }
.lessons-photo-pair .photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}




/* Lessons — What's Included: 3 photos + 1 green text box, all equal width */
.accent-strip-combined {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  height: 320px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.accent-photos-col {
  display: contents;
}
.accent-photos-col .photo-strip-item {
  overflow: hidden;
}
.accent-photos-col .photo-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.accent-photos-col .photo-strip-item:hover img {
  transform: scale(1.04);
}
.accent-text-col {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--sage);
  color: #fff;
}
.accent-text-col .eyebrow { color: rgba(255,255,255,0.6); margin-bottom: 0.75rem; }
.accent-text-col h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 300;
  color: #fff;
  margin-bottom: 0.75rem;
}
.accent-text-col p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.75;
}
@media (max-width: 960px) {
  .accent-strip-combined {
    grid-template-columns: 1fr 1fr;
    height: auto;
  }
  .accent-text-col { grid-column: 1 / -1; padding: 2rem; }
}

.logistics-section {
  padding: 3rem 0;
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.logistics-inner { padding: 4rem 0; }

.logistics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 5rem;
}

.logistics-item h4 {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.logistics-item p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.8;
}

/* accent strip for pink table photo */
.accent-strip {
  display: grid;
  grid-template-columns: 1fr 2fr;
  min-height: 320px;
  border-top: 1px solid var(--border);
}
.accent-strip.accent-no-img {
  grid-template-columns: 1fr;
}
.accent-copy-full {
  padding: 3.5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--sage);
  color: #fff;
}
.accent-strip .accent-img { overflow: hidden; }
.accent-strip .accent-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.accent-strip .accent-copy {
  padding: 3.5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--sage);
  color: #fff;
}
.accent-strip .accent-copy .eyebrow { color: rgba(255,255,255,0.6); }
.accent-strip .accent-copy h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 300;
  color: #fff;
  margin-bottom: 1rem;
}
.accent-strip .accent-copy p {
  font-size: 1rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.85;
  max-width: 500px;
}

/* ---- OCSM PAGE ---- */
.ocsm-body { padding: var(--section-pad); }

.ocsm-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 6rem;
  align-items: start;
}

.ocsm-lead {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 300;
  line-height: 1.55;
  color: #2A6B7C;
  margin-bottom: 1.75rem;
}

.ocsm-copy p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 1.25rem;
}
.ocsm-copy strong { font-weight: 500; color: var(--text); }

.league-card {
  border: 1px solid var(--border);
  padding: 2rem 1.75rem;
  margin-bottom: 1.25rem;
  position: relative;
  overflow: hidden;
}
.league-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 100%;
  background: var(--gold);
}
.league-card.social::before { background: var(--lavender); }

.league-badge {
  display: inline-block;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.2rem 0.65rem;
  background: var(--gold);
  color: #fff;
  margin-bottom: 0.75rem;
}
.league-badge.social-badge {
  background: var(--lavender);
}

.league-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.league-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.ocsm-follow {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.ocsm-follow .section-label { display: block; margin-bottom: 0.75rem; }

.ig-link {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--sage);
  text-decoration: none;
  border-bottom: 1px solid var(--sage);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.ig-link:hover { color: var(--gold); border-color: var(--gold); }

.ocsm-group-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  margin-top: 6rem;
  border-top: 1px solid var(--border);
}
.ocsm-group-photos .gphoto {
  overflow: hidden;
  height: 400px;
}
.ocsm-group-photos .gphoto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}
.ocsm-group-photos .gphoto:hover img { transform: scale(1.03); }
/* Left photo - center on faces */
.ocsm-group-photos .gphoto:first-child img {
  object-position: center 60%;
}
/* Right photo - natural landscape orientation */
.ocsm-group-photos .gphoto:last-child img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ---- CONTACT PAGE ---- */
.contact-body { padding: var(--section-pad); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 6rem;
  align-items: start;
}

.contact-aside p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.contact-email-link {
  color: var(--sage);
  text-decoration: none;
  border-bottom: 1px solid var(--sage);
  font-size: 0.9rem;
  transition: color 0.2s, border-color 0.2s;
}
.contact-email-link:hover { color: var(--gold); border-color: var(--gold); }

.contact-form { display: flex; flex-direction: column; gap: 1.5rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-group label {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mid);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.95rem;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border-mid);
  background: transparent;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 120px; }

.btn-submit { align-self: flex-start; margin-top: 0.5rem; }

/* ---- FOOTER ---- */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 5rem 0 3rem;
  color: rgba(255,255,255,0.8);
}

/* always show light logo in footer */
.footer .logo-dark  { display: none !important; }
.footer .logo-light { display: block !important; }

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 2rem;
}

.footer-brand img { height: 204px; width: auto; margin-bottom: 1.25rem; }

.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--lavender-lt);
  margin-bottom: 0.5rem;
}

.footer-sub {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.footer-col h4 {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.25rem;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }

.footer-col ul li a,
.footer-col p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold-light); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.3); }

/* ---- RESPONSIVE ---- */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; }
  .hero-left { padding: 3rem 1.5rem 2rem; max-width: 100%; }
  .hero-right { height: 50vw; min-height: 320px; }
  .hero-right::after { background: linear-gradient(to bottom, var(--ivory) 0%, transparent 12%); }

  .pillars-grid { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid var(--border); }
  .pillar:last-child { border-bottom: none; }

  .split { grid-template-columns: 1fr; }
  .split-img { height: 320px; }
  .split-copy { padding: 3rem 1.5rem; }
  .split-reverse { direction: ltr; }

  .photo-strip { grid-template-columns: 1fr 1fr; height: auto; }
  .photo-strip-item { height: 240px; }

  .about-grid,
  .ocsm-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }

  .pricing-grid { grid-template-columns: 1fr; }
  .lessons-photo-pair { grid-template-columns: 1fr; height: auto; }
  .lessons-photo-pair .photo-wrap { height: 300px; }
  .accent-strip { grid-template-columns: 1fr; }
  .accent-strip .accent-img { height: 280px; }

  .ocsm-group-photos { grid-template-columns: 1fr; }
  .ocsm-group-photos .gphoto { height: 300px; }

  .form-row { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }

  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--cream); border-bottom: 3px solid var(--navy); padding: 1.5rem 2rem; gap: 1.25rem; z-index: 199; }
  .nav-links.open { display: flex; }
  .nav { position: relative; }
  .nav-toggle { display: block; }
}
