html {
  scroll-behavior: smooth;
  font-size: 18px;
}

body {
  font-family: 'EB Garamond', Georgia, 'Times New Roman', serif;
  background-color: #f8f6f2;
  color: #222;
  max-width: 780px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  line-height: 1.7;
}

section {
  margin-bottom: 4rem;
}

header {
  margin-bottom: 3rem;
  border-bottom: 1px solid #ddd;
  padding-bottom: 1.5rem;
  overflow: visible;
}

footer {
  font-size: 0.85rem;
  color: #666;
  border-top: 1px solid #ddd;
  padding-top: 2rem;
}

.footer-options {
  margin-top: 0.3rem;
  font-size: 0.78rem;
}

.footer-options a {
  color: #b09070;
  text-decoration: none;
  letter-spacing: 0.05em;
}

.footer-options a:hover {
  color: #8b6f47;
}

h1 {
  font-size: 3.2rem;
  letter-spacing: 0.08em;
  margin-bottom: 1.2rem;
}

h2 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: normal;
}

h3 {
  font-size: 1.2rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

nav {
  overflow: visible;
}

.nav-sep {
  color: #bbb;
  margin: 0 0.2rem;
  font-weight: 300;
  user-select: none;
}

.nav-dot {
  color: #bbb;
  margin: 0 0.15rem;
  user-select: none;
}

nav a {
  position: relative;
  margin-right: 0.45rem;
  text-decoration: none;
  color: #444;
  font-size: 0.95rem;
}

nav a:hover {
  color: #222;
  text-decoration: underline;
}

nav a.active {
  color: #222;
  text-decoration: underline;
}

/* Nav tooltips */
nav a[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  background: #3a2a18;
  color: #f5f0e6;
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 0.78rem;
  font-style: italic;
  line-height: 1.5;
  padding: 0.5rem 0.75rem;
  border: 1px solid #c4a85a;
  border-radius: 2px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
  z-index: 100;
}

nav a[data-tooltip]:hover::after {
  opacity: 1;
}

a.button {
  display: inline-block;
  padding: 0.45rem 1rem;
  background-color: #2c2c2c;
  color: #fff;
  text-decoration: none;
  border-radius: 3px;
  font-weight: normal;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  transition: background 0.2s;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

a.button:hover {
  background-color: #555;
}

blockquote {
  margin: 2rem 0;
  padding: 1rem 1.5rem;
  border-left: 3px solid #c4a85a;
  background: linear-gradient(to right, rgba(196,168,90,0.05), transparent 80%);
  color: #4a3520;
  font-style: italic;
}

blockquote p {
  margin: 0.3rem 0;
}

blockquote p:last-child {
  font-style: normal;
  font-size: 0.88rem;
  color: #7a6248;
  margin-top: 0.6rem;
}

/* Image styling */
img.profile {
  max-width: 680px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 0.5rem auto;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  filter: contrast(1.08) saturate(0.82) brightness(0.97);
}

img.white-swan {
  display: block;
  margin: 2rem auto;
  max-width: 240px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  border-radius: 3px;
}

/* Book caption */
.book-caption {
  text-align: center;
  font-size: 0.9rem;
  color: #555;
  margin-top: 0.4rem;
  margin-bottom: 2rem;
}

/* Publication list */
ul.pub-list {
  list-style: none;
  padding-left: 0;
  margin: 0 0 1rem 0;
}

ul.pub-list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 1.2rem;
}

ul.pub-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #888;
}

/* Photo credit styling */
.photo-credit {
  font-size: 0.85rem;
  color: #777;
  font-style: italic;
  text-align: center;
  margin: 0.7rem 0 2rem 0;
}

/* =============================================
   Salon de Conversation — Belle Époque Menu
   ============================================= */

.salon-menu {
  position: relative;
  background: linear-gradient(135deg, #fdfbf6 0%, #f5f0e6 50%, #fdfbf6 100%);
  border: 2px solid #b8956a;
  border-radius: 2px;
  margin: 1rem auto;
  max-width: 600px;
  box-shadow:
    0 0 0 1px #f5f0e6,
    0 0 0 3px #c9a96e,
    0 0 0 4px #f5f0e6,
    0 6px 24px rgba(0,0,0,0.08);
}

/* Corner ornaments */
.salon-menu .salon-menu-inner {
  position: relative;
}

.salon-corner {
  position: absolute;
  color: #b8956a;
  font-size: 1.8rem;
  line-height: 1;
  display: inline-block;
}

.salon-corner-tl {
  top: 0.2rem;
  left: 0.4rem;
  transform: rotate(0deg);
}

.salon-corner-tr {
  top: 0.2rem;
  right: 0.4rem;
  transform: scaleX(-1);
}

.salon-corner-bl {
  bottom: 0rem;
  left: 0.4rem;
  transform: scaleY(-1);
}

.salon-corner-br {
  bottom: 0rem;
  right: 0.4rem;
  transform: scale(-1, -1);
}

/* Ornamental top & bottom borders */
.salon-ornament-top,
.salon-ornament-bottom {
  text-align: center;
  font-size: 1.1rem;
  letter-spacing: 0.3em;
  color: #b8956a;
  padding: 0.6rem 0;
  background: linear-gradient(to right,
    transparent 5%,
    #c9a96e 5%, #c9a96e 5.5%,
    transparent 5.5%, transparent 15%,
    #d4b88a 15%, #d4b88a 85%,
    transparent 85%, transparent 94.5%,
    #c9a96e 94.5%, #c9a96e 95%,
    transparent 95%);
  background-size: 100% 1px;
  background-repeat: no-repeat;
  background-position: center;
}

.salon-ornament-top::before {
  content: "\2766 \2022 \2766";
}

.salon-ornament-bottom::before {
  content: "\2766 \2022 \2766";
}

/* Inner padding */
.salon-menu-inner {
  padding: 1.5rem 2.5rem 1rem;
}

/* Title */
.salon-title {
  text-align: center;
  font-family: 'EB Garamond', Georgia, 'Times New Roman', serif;
  font-size: 1.6rem;
  font-weight: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #3a2a18;
  margin: 0.5rem 0 0.3rem;
}

/* Subtitle */
.salon-subtitle {
  text-align: center;
  font-style: italic;
  font-size: 0.92rem;
  color: #6b5740;
  line-height: 1.6;
  margin: 0.4rem 0 1rem;
}

/* Pull quote (Marriott / Sunday Times) */
.salon-pull-quote {
  text-align: center;
  font-style: italic;
  font-size: 1rem;
  color: #4a3520;
  line-height: 1.7;
  margin: 1rem auto 1.2rem;
  max-width: 480px;
  border-top: 1px solid #c4a85a;
  border-bottom: 1px solid #c4a85a;
  padding: 0.6rem 0;
}

.salon-pull-quote-attr {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.8rem;
  font-style: normal;
  letter-spacing: 0.03em;
  color: #7a6248;
}

/* Decorative flourish (star/flower symbol) */
.salon-flourish {
  text-align: center;
  font-size: 1rem;
  color: #b8956a;
  margin: 0.5rem 0;
  letter-spacing: 0.5em;
}

/* Main divider between intro and courses */
.salon-divider {
  border: none;
  height: 1px;
  background: linear-gradient(to right,
    transparent 0%,
    #c9a96e 15%,
    #b8956a 50%,
    #c9a96e 85%,
    transparent 100%);
  margin: 1.2rem 0;
}

/* Lighter divider between courses */
.salon-divider-light {
  border: none;
  height: 1px;
  background: linear-gradient(to right,
    transparent 10%,
    #d4c4a8 30%,
    #d4c4a8 70%,
    transparent 90%);
  margin: 1rem 0;
}

/* Course section */
.salon-course {
  margin: 1rem 0;
}

/* Course heading (e.g., "To Begin", "The Carte") */
.salon-course-title {
  text-align: center;
  font-family: 'EB Garamond', Georgia, 'Times New Roman', serif;
  font-size: 1.05rem;
  font-weight: normal;
  font-style: italic;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #8b6f47;
  margin: 0 0 0.6rem;
}

/* Individual menu item */
.salon-item {
  text-align: center;
  margin-bottom: 0.5rem;
}

/* Item name (bold dish name) */
.salon-item-name {
  display: block;
  font-family: 'EB Garamond', Georgia, 'Times New Roman', serif;
  font-size: 1rem;
  font-weight: bold;
  color: #3a2a18;
  letter-spacing: 0.04em;
  margin-bottom: 0.25rem;
}

/* Item description */
.salon-item-desc {
  font-size: 0.9rem;
  color: #5a4a38;
  line-height: 1.6;
  margin: 0.2rem auto 0;
  max-width: 420px;
}

.salon-item-desc a {
  color: #8b6f47;
  text-decoration: underline;
}

.salon-item-desc a:hover {
  color: #3a2a18;
}

/* Menu-style topic list */
.salon-topic-list {
  list-style: none;
  padding: 0;
  margin: 0.6rem auto 0.2rem;
  max-width: 420px;
}

.salon-topic-list li {
  font-family: 'EB Garamond', Georgia, 'Times New Roman', serif;
  font-size: 0.9rem;
  color: #3a2a18;
  text-align: center;
  padding: 0.25rem 0;
  letter-spacing: 0.02em;
}

.salon-topic-list li + li {
  border-top: 1px dotted #d4c4a8;
}

/* Prix Fixe three-column grid */
.prix-fixe-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 1rem;
}

.prix-fixe-col {
  text-align: center;
}

.prix-fixe-title {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 0.9rem;
  font-weight: 500;
  font-style: italic;
  color: #8b6f47;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.prix-fixe-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: prix-fixe-counter;
}

.prix-fixe-list li {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 0.88rem;
  color: #3a2a18;
  padding: 0.2rem 0;
  counter-increment: prix-fixe-counter;
}

.prix-fixe-list li::before {
  content: counter(prix-fixe-counter) ". ";
  color: #8b6f47;
}

.prix-fixe-list li + li {
  border-top: 1px dotted #d4c4a8;
}

@media (max-width: 600px) {
  .prix-fixe-grid {
    grid-template-columns: 1fr;
  }
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .salon-menu-inner {
    padding: 1.2rem 1.2rem 0.8rem;
  }
  .salon-title {
    font-size: 1.3rem;
  }
  .salon-item-desc {
    max-width: 100%;
  }
}

/* =============================================
   Chalkboard — Le Grand Menu (full programme)
   ============================================= */

.chalkboard-bridge {
  text-align: center;
  font-style: italic;
  font-size: 0.85rem;
  color: #7a6248;
  letter-spacing: 0.04em;
  margin: 0 auto 1.2rem;
}

.chalkboard {
  background: linear-gradient(135deg, #c8cdb8 0%, #b6bba6 50%, #c8cdb8 100%);
  color: #2f2a18;
  padding: 3.5rem 3.5rem 3rem;
  margin: 0 auto 2.5rem;
  max-width: 820px;
  border: 2px solid #b8956a;
  border-radius: 2px;
  box-shadow:
    inset 0 0 90px rgba(60, 70, 45, 0.18),
    0 0 0 1px #f5f0e6,
    0 0 0 4px #c9a96e,
    0 0 0 5px #f5f0e6,
    0 8px 32px rgba(0,0,0,0.12);
}

.chalkboard-title {
  text-align: center;
  color: #4a4220;
  font-family: 'EB Garamond', Georgia, 'Times New Roman', serif;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin: 0 0 0.8rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(74, 66, 32, 0.3);
}

.chalkboard-subtitle {
  text-align: center;
  color: #5a5236;
  font-style: italic;
  font-size: 0.95rem;
  margin: 0 0 2.4rem;
}

.chalkboard-columns {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
}

.chalkboard-list {
  flex: 1;
  list-style: decimal;
  padding-left: 1.8rem;
  margin: 0 0 0.6rem;
}

.chalkboard-list li {
  font-family: 'EB Garamond', Georgia, 'Times New Roman', serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #3a3220;
  padding: 0.35rem 0;
  margin-bottom: 0.3rem;
}

.chalkboard-list li::marker {
  color: #6b5230;
  font-weight: 500;
}

@media (max-width: 600px) {
  .chalkboard {
    padding: 1.5rem 1.2rem;
  }
  .chalkboard-columns {
    flex-direction: column;
  }
}

/* =============================================
   Home — Hero Section (Bio + Image)
   ============================================= */

#home {
  margin-bottom: 1rem;
}

.home-bio-box {
  display: block;
  float: none;
  clear: both;
  width: 100%;
  padding: 1.4rem 1.6rem;
  background: linear-gradient(135deg, #fdfbf6 0%, #f0ebe0 100%);
  border: 2px solid #b8956a;
  border-radius: 2px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  margin-bottom: 1.5rem;
  box-sizing: border-box;
}

.home-bio-box p {
  font-size: 0.88rem;
  color: #4a3520;
  line-height: 1.75;
  margin: 0 0 0.9rem;
}

.home-bio-box p:last-child {
  margin-bottom: 0;
}

.hero-image-wrap {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
}

.hero-image-wrap img.profile {
  margin-bottom: 0;
}

.hero-testimonial {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(30, 20, 10, 0.88) 0%, rgba(30, 20, 10, 0.7) 70%, transparent 100%);
  padding: 2.5rem 2rem 1.5rem;
  margin: 0;
  border-left: none;
  text-align: center;
}

.hero-testimonial p {
  font-family: 'EB Garamond', Georgia, 'Times New Roman', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: #f5f0e6;
  line-height: 1.7;
  margin: 0 0 0.4rem;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.hero-testimonial cite {
  display: block;
  font-family: 'EB Garamond', Georgia, 'Times New Roman', serif;
  font-size: 0.85rem;
  font-style: normal;
  color: #c4a85a;
  letter-spacing: 0.04em;
}

/* Home — Scholarship Scoreboard */
.home-scoreboard {
  margin: 1.5rem 0 2rem;
}

.home-scoreboard-title {
  font-size: 0.8rem;
  font-weight: normal;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8b6f47;
  text-align: center;
  border-bottom: 1px solid #d4c4a8;
  padding-bottom: 0.4rem;
  margin-bottom: 1rem;
}

.home-results {
  margin: 0;
}

@media (max-width: 600px) {
  .hero-testimonial {
    padding: 1.5rem 1rem 1rem;
  }
  .hero-testimonial p {
    font-size: 1rem;
  }
}

/* =============================================
   Home — Calling Card (legacy)
   ============================================= */

.standfirst {
  text-align: center;
  font-size: 1.1rem;
  font-style: italic;
  color: #4a3520;
  letter-spacing: 0.01em;
  line-height: 1.85;
  margin: 0 auto 1.5rem;
  max-width: 560px;
}

.page-ornament {
  text-align: center;
  color: #c4a85a;
  font-size: 1rem;
  letter-spacing: 0.45em;
  margin: 1.8rem 0;
}

/* =============================================
   Poetry — Literary Folio
   ============================================= */

.pub-section-rule {
  border: none;
  height: 1px;
  background: linear-gradient(to right,
    transparent 0%, #d4c4a8 20%, #c4a85a 50%, #d4c4a8 80%, transparent 100%);
  margin: 2.5rem 0;
}

/* =============================================
   Music — Liner Notes
   ============================================= */

.music-panel {
  background: #18181f;
  color: #d8d0bc;
  border-radius: 2px;
  padding: 2rem 2.5rem;
  margin: 2rem 0;
  box-shadow: 0 4px 28px rgba(0,0,0,0.35);
}

.music-panel h2 {
  color: #c4a85a;
  font-size: 1rem;
  font-weight: normal;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(196,168,90,0.28);
  padding-bottom: 0.6rem;
  margin-bottom: 1.2rem;
}

.music-panel p {
  color: #b0a890;
  font-size: 0.92rem;
  line-height: 1.75;
}

.music-panel blockquote {
  border-left: 2px solid rgba(196,168,90,0.5);
  background: rgba(196,168,90,0.04);
  color: #a8a090;
  margin: 1.5rem 0;
  padding: 0.8rem 1.2rem;
}

.music-panel blockquote p:last-child {
  color: #6a6050;
}

.music-panel a.button {
  background: #c4a85a;
  color: #18181f;
  font-weight: bold;
  letter-spacing: 0.08em;
}

.music-panel a.button:hover {
  background: #d4b870;
}

/* =============================================
   Grub Street — Broadsheet
   ============================================= */

.grub-masthead {
  border-top: 2px solid #3a2a18;
  border-bottom: 1px solid #d4c4a8;
  padding: 0.8rem 0;
  margin-bottom: 2.5rem;
}

.grub-masthead h2 {
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  font-weight: normal;
  color: #3a2a18;
  margin: 0 0 0.2rem;
}

.grub-masthead p {
  font-style: italic;
  font-size: 0.85rem;
  color: #7a6248;
  margin: 0;
}

/* =============================================
   Tutoring — Academic Prospectus
   ============================================= */

.prospectus-intro {
  font-size: 1rem;
  color: #4a3520;
  line-height: 1.85;
  border-left: 3px solid #c4a85a;
  padding-left: 1.2rem;
  margin-bottom: 2rem;
}

.prospectus-section {
  margin: 2rem 0;
}

.prospectus-section h3 {
  font-size: 0.8rem;
  font-weight: normal;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8b6f47;
  border-bottom: 1px solid #d4c4a8;
  padding-bottom: 0.4rem;
  margin-bottom: 0.8rem;
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 0.8rem;
  margin: 1rem 0;
}

.result-stat {
  text-align: center;
  background: linear-gradient(135deg, #fdfbf6 0%, #f5f0e6 100%);
  border: 1px solid #d4c4a8;
  padding: 1rem 0.5rem;
  border-radius: 2px;
}

.result-stat .number {
  display: block;
  font-size: 2rem;
  font-weight: normal;
  color: #3a2a18;
  line-height: 1;
  margin-bottom: 0.3rem;
  height: 2rem;
  overflow: hidden;
}

.result-stat .number-roll {
  display: block;
  transition: transform 1.3s cubic-bezier(.45, 1.4, .4, 1);
}

.result-stat .number-roll > span {
  display: block;
  height: 2rem;
  line-height: 1;
}

.result-stat.rolling .number-roll {
  transform: translateY(-2rem);
}

@keyframes flashGold {
  0%   { background: linear-gradient(135deg, #fdfbf6 0%, #f5f0e6 100%); box-shadow: 0 0 0 rgba(201, 169, 110, 0); transform: scale(1); }
  35%  { background: linear-gradient(135deg, #fff3c8 0%, #e6c478 100%); box-shadow: 0 0 22px rgba(201, 169, 110, 0.7); transform: scale(1.05); }
  100% { background: linear-gradient(135deg, #fdfbf6 0%, #f5f0e6 100%); box-shadow: 0 0 0 rgba(201, 169, 110, 0); transform: scale(1); }
}

.result-stat.flashing {
  animation: flashGold 1.8s ease-out;
}

.result-stat .school {
  font-size: 0.75rem;
  color: #7a6248;
  font-style: italic;
}

/* Home — Recent successes box (single-line, full-width) */
.recent-success-wrap {
  margin: 1rem 0 1.25rem;
}

.recent-success-box {
  background: linear-gradient(135deg, #fff7e0 0%, #f5e6c0 100%);
  border: 1.5px solid #c9a96e;
  border-radius: 2px;
  padding: 0.6rem 1.2rem;
  box-shadow: 0 2px 10px rgba(184, 149, 106, 0.18);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0.4rem 1rem;
}

.recent-success-title {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6b5230;
}

.recent-success-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem 1.4rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: #3a2a18;
  font-style: italic;
}

.recent-success-list li {
  position: relative;
}

.recent-success-list li:not(:last-child)::after {
  content: '\00B7';
  position: absolute;
  right: -0.85rem;
  top: 0;
  color: #b8956a;
  font-style: normal;
}

@media (max-width: 600px) {
  .recent-success-list li:not(:last-child)::after {
    display: none;
  }
}

.credential-block {
  background: linear-gradient(135deg, #fdfbf6 0%, #f5f0e6 100%);
  border: 1px solid #d4c4a8;
  border-radius: 2px;
  padding: 1.2rem 1.5rem;
  margin: 1rem 0;
}

.credential-block li {
  font-size: 0.9rem;
  color: #4a3520;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

/* =============================================
   Testimonials — Graceful placeholder
   ============================================= */

.testimonials-placeholder {
  text-align: center;
  font-style: italic;
  color: #7a6248;
  font-size: 1rem;
  letter-spacing: 0.06em;
  margin: 3rem auto;
  padding: 2rem 0;
  border-top: 1px solid #d4c4a8;
  border-bottom: 1px solid #d4c4a8;
  max-width: 340px;
}

/* =============================================
   Contact — Visiting Hours
   ============================================= */

.contact-intro {
  text-align: center;
  font-style: italic;
  color: #5a4a38;
  max-width: 560px;
  margin: 1.2rem auto 2rem;
  font-size: 1rem;
  line-height: 1.7;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.6rem;
  margin: 0 auto 1.5rem;
}

.contact-card {
  background: linear-gradient(135deg, #fdfbf6 0%, #f5f0e6 50%, #fdfbf6 100%);
  border: 2px solid #b8956a;
  border-radius: 2px;
  padding: 2rem 2rem 1.8rem;
  box-shadow:
    0 0 0 1px #f5f0e6,
    0 0 0 4px #c9a96e,
    0 0 0 5px #f5f0e6,
    0 6px 22px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
}

.contact-card-eyebrow {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8b6f47;
  text-align: center;
  margin: 0 0 0.4rem;
  font-weight: 500;
}

.contact-card-title {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: #3a2a18;
  text-align: center;
  margin: 0 0 0.7rem;
  font-style: italic;
}

.contact-card-sub {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 0.95rem;
  color: #4a3520;
  text-align: center;
  margin: 0 0 1.4rem;
  line-height: 1.6;
}

.contact-card-helper {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 0.85rem;
  color: #6b5230;
  margin: 0 0 0.5rem;
  font-weight: 500;
}

.contact-card-list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 0.92rem;
  color: #4a3520;
  line-height: 1.55;
}

.contact-card-list li {
  padding: 0.25rem 0 0.25rem 1rem;
  position: relative;
}

.contact-card-list li::before {
  content: "\00B7";
  position: absolute;
  left: 0.2rem;
  color: #b8956a;
}

.contact-button {
  display: inline-block;
  padding: 0.7em 1.6em;
  border: 1.5px solid #8b6f47;
  border-radius: 4px;
  background: linear-gradient(135deg, #a08158 0%, #8b6f47 100%);
  color: #fdfbf6;
  text-decoration: none;
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 0.95em;
  letter-spacing: 0.05em;
  cursor: pointer;
  box-shadow: 0 3px 12px rgba(139, 111, 71, 0.28);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  text-align: center;
  margin-top: auto;
  align-self: center;
}

.contact-button:hover {
  background: linear-gradient(135deg, #8b6f47 0%, #6b5230 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 18px rgba(139, 111, 71, 0.38);
  color: #fdfbf6;
}

.contact-button .arrow {
  display: inline-block;
  margin-left: 0.35em;
  transition: transform 0.2s;
}

.contact-button:hover .arrow {
  transform: translateX(3px);
}

.contact-fallback {
  text-align: center;
  color: #7a6248;
  font-size: 0.85rem;
  font-style: italic;
  margin: 1.5rem 0 1rem;
}

.contact-fallback a {
  color: #8b6f47;
}

/* =============================================
   Shared CTA button + Panel — used across pages
   ============================================= */

.cta-button {
  display: inline-block;
  padding: 0.7em 1.7em;
  border: 1.5px solid #8b6f47;
  border-radius: 4px;
  background: linear-gradient(135deg, #a08158 0%, #8b6f47 100%);
  color: #fdfbf6;
  text-decoration: none;
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 0.95em;
  letter-spacing: 0.05em;
  cursor: pointer;
  box-shadow: 0 3px 12px rgba(139, 111, 71, 0.28);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.cta-button:hover {
  background: linear-gradient(135deg, #8b6f47 0%, #6b5230 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 18px rgba(139, 111, 71, 0.38);
  color: #fdfbf6;
}

.panel {
  background: linear-gradient(135deg, #fdfbf6 0%, #f5f0e6 50%, #fdfbf6 100%);
  border: 2px solid #b8956a;
  border-radius: 2px;
  padding: 2.5rem 3rem;
  margin: 2rem 0 2.5rem;
  box-shadow:
    0 0 0 1px #f5f0e6,
    0 0 0 4px #c9a96e,
    0 0 0 5px #f5f0e6,
    0 6px 22px rgba(0,0,0,0.08);
}

@media (max-width: 600px) {
  .panel {
    padding: 1.6rem 1.3rem;
  }
}

/* Tutoring — Individual Sessions services list with gold star markers */
.services-list {
  list-style: none;
  padding: 0;
  margin: 1.2em 0 0;
  columns: 2;
  column-gap: 2em;
}

.services-list li {
  position: relative;
  padding-left: 1.4em;
  margin-bottom: 0.55em;
  color: #4a3520;
  break-inside: avoid;
}

.services-list li::before {
  content: "\2726";
  position: absolute;
  left: 0;
  top: 0.1em;
  color: #b8956a;
  font-size: 0.85em;
}

@media (max-width: 600px) {
  .services-list {
    columns: 1;
  }
}

/* =============================================
   Help — Can I help you?
   ============================================= */

.help-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.help-item {
  padding: 1.4rem 0;
  border-bottom: 1px solid #d4c4a8;
}

.help-item:first-child {
  border-top: 1px solid #d4c4a8;
}

.help-title {
  display: inline-block;
  font-size: 1.15rem;
  color: #8b6f47;
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-bottom: 0.4rem;
}

.help-title:hover {
  color: #3a2a18;
}

.help-item p {
  margin: 0;
  font-size: 0.95rem;
  color: #5a4a38;
  line-height: 1.7;
}

.help-contact {
  margin-top: 2.5rem;
  font-style: italic;
  color: #7a6248;
  font-size: 0.95rem;
}

.help-contact a {
  color: #8b6f47;
}

/* Home page 'MAY I HELP YOU?' button */
.home-help-link {
  display: block;
  text-align: center;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
  text-decoration: none;
}

.home-help-btn {
  display: inline-block;
  padding: 0.7em 2em;
  background: linear-gradient(135deg, #a08158 0%, #8b6f47 100%);
  color: #fdfbf6;
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  border: 1.5px solid #8b6f47;
  border-radius: 4px;
  cursor: pointer;
  box-shadow: 0 3px 14px rgba(139, 111, 71, 0.3);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s, color 0.2s;
}

.home-help-btn:hover {
  background: linear-gradient(135deg, #8b6f47 0%, #6b5230 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 111, 71, 0.4);
  color: #fdfbf6;
}

.home-help-btn--link {
  text-decoration: none;
  text-align: center;
}

.home-cta-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 2rem 0 2.5rem;
}

.home-location {
  text-align: left;
  font-style: italic;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  color: #8b6f47;
  margin: 0.4rem 0 0;
}

/* Help page sections */
.help-section {
  margin-bottom: 2.2rem;
}

.help-section-title {
  font-size: 1rem;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.05em;
  color: #8b6f47;
  text-transform: uppercase;
  text-align: center;
  border-bottom: 1px solid #c4a85a;
  padding-bottom: 0.3rem;
  margin-bottom: 1rem;
}

@media (max-width: 600px) {
  .result-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .music-panel {
    padding: 1.5rem 1.2rem;
  }
}

/* =============================================
   Coming Soon
   ============================================= */

.coming-soon {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.coming-soon h1 {
  font-size: 3.2rem;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}

.coming-soon-sub {
  font-style: italic;
  color: #6b5740;
  font-size: 1.1rem;
  margin: 0 0 0.6rem;
}

.coming-soon-contact {
  font-size: 0.95rem;
  color: #7a6248;
  margin: 0;
}

.coming-soon-contact a {
  color: #8b6f47;
}

/* =============================================
   Salon de Conversation — Intro Modal
   ============================================= */

.salon-intro-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(30, 20, 10, 0.65);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}
.salon-intro-overlay.active {
  display: flex;
}

.salon-intro-modal {
  background: linear-gradient(135deg, #fdfbf6 0%, #f5f0e6 50%, #fdfbf6 100%);
  border: 2px solid #b8956a;
  border-radius: 2px;
  box-shadow: 0 0 0 1px #f5f0e6, 0 0 0 3px #c9a96e, 0 0 0 4px #f5f0e6, 0 12px 48px rgba(0,0,0,0.3);
  padding: 2.5rem 2.5rem 2rem;
  max-width: 480px;
  width: 100%;
  text-align: center;
  position: relative;
  animation: salonIntroFadeIn 0.35s ease;
}
@keyframes salonIntroFadeIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

.salon-intro-close {
  position: absolute;
  top: 0.5rem;
  right: 0.85rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #b8956a;
  cursor: pointer;
  font-family: 'EB Garamond', Georgia, serif;
  line-height: 1;
  padding: 0;
}
.salon-intro-close:hover {
  color: #3a2a18;
}

.salon-intro-eyebrow {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8b6f47;
  margin: 0 0 0.4rem;
  font-weight: 500;
}

.salon-intro-title {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1.55rem;
  font-weight: 500;
  color: #3a2a18;
  margin: 0 0 0.4rem;
  font-style: italic;
}

.salon-intro-divider {
  color: #b8956a;
  font-size: 0.9rem;
  letter-spacing: 0.4em;
  margin: 0.4rem 0 1.3rem;
}

.salon-intro-body {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1rem;
  color: #4a3520;
  line-height: 1.7;
  margin: 0 0 1.6rem;
}

.salon-intro-enter {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 0.95rem;
  padding: 0.5em 1.8em;
  border: 1px solid #b8956a;
  border-radius: 4px;
  background: transparent;
  color: #8b6f47;
  cursor: pointer;
  letter-spacing: 0.05em;
  transition: background 0.2s, color 0.2s;
}
.salon-intro-enter:hover {
  background: #8b6f47;
  color: #fff;
}

/* =============================================
   Le Grand Menu — Modal Overlay
   ============================================= */

.grand-menu-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(30, 20, 10, 0.7);
  z-index: 1000;
  overflow-y: auto;
  padding: 2rem 1rem 4rem;
}
.grand-menu-overlay.active {
  display: block;
  animation: grandFadeIn 0.25s ease;
}
@keyframes grandFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.grand-menu-overlay .chalkboard {
  margin: 0 auto;
  position: relative;
}

.grand-menu-close {
  position: fixed;
  top: 1rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  background: #fdfbf6;
  border: 1.5px solid #b8956a;
  border-radius: 50%;
  font-size: 1.5rem;
  color: #8b6f47;
  cursor: pointer;
  z-index: 1001;
  font-family: 'EB Garamond', Georgia, serif;
  line-height: 1;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  transition: background 0.2s, color 0.2s;
}
.grand-menu-close:hover {
  background: #8b6f47;
  color: #fff;
}

/* Le Grand Menu — instruction line above the chalkboard sessions */
.chalkboard-instruction {
  text-align: center;
  font-style: italic;
  font-size: 0.9rem;
  color: #5a4a28;
  margin: -1.4rem 0 2.4rem;
}

.chalkboard-instruction .instruction-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.2rem;
  height: 1.2rem;
  border: 1.5px solid #8b6f47;
  border-radius: 50%;
  color: #8b6f47;
  font-size: 0.9rem;
  font-weight: 600;
  font-style: normal;
  vertical-align: middle;
  margin: 0 0.1rem;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1;
}

/* Le Grand Menu — clickable session items with explicit + / ✓ affordance */
.chalkboard-list li {
  cursor: pointer;
  position: relative;
  padding: 0.4rem 2.4rem 0.4rem 0;
  transition: background 0.15s;
  border-radius: 3px;
}

.chalkboard-list li::after {
  content: "+";
  position: absolute;
  right: 0.4rem;
  top: 0.5rem;
  width: 1.4rem;
  height: 1.4rem;
  border: 1.5px solid #b8956a;
  border-radius: 50%;
  background: #fdfbf6;
  color: #b8956a;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.15s;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}

.chalkboard-list li:hover {
  background: rgba(107, 82, 48, 0.06);
}

.chalkboard-list li:hover::after {
  background: #c9a96e;
  color: #fdfbf6;
  border-color: #c9a96e;
  transform: scale(1.08);
}

.chalkboard-list li.selected {
  background: rgba(184, 149, 106, 0.18);
}

.chalkboard-list li.selected::after {
  content: "\2713";
  background: #8b6f47;
  color: #fdfbf6;
  border-color: #8b6f47;
  font-family: 'EB Garamond', Georgia, serif;
  font-weight: bold;
}

/* Le Grand Menu — selection basket */
.grand-menu-basket {
  display: none;
  position: fixed;
  top: 50%;
  right: 1.5rem;
  transform: translateY(-50%);
  width: 240px;
  max-height: 70vh;
  background: linear-gradient(135deg, #fdfbf6 0%, #f5f0e6 50%, #fdfbf6 100%);
  border: 2px solid #b8956a;
  border-radius: 2px;
  padding: 1.2rem 1rem 1rem;
  box-shadow:
    0 0 0 1px #f5f0e6,
    0 0 0 4px #c9a96e,
    0 0 0 5px #f5f0e6,
    0 8px 24px rgba(0,0,0,0.25);
  z-index: 1002;
  flex-direction: column;
  overflow: hidden;
}

.grand-menu-basket.active {
  display: flex;
  animation: basketIn 0.25s ease;
}

@keyframes basketIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.basket-title {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8b6f47;
  text-align: center;
  margin: 0 0 0.7rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #d4c4a8;
  font-weight: 500;
}

.basket-count {
  font-style: italic;
  letter-spacing: 0;
  text-transform: none;
  color: #a08864;
  margin-left: 0.3em;
}

.basket-list {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 0.88rem;
  color: #3a2a18;
  list-style: none;
  padding: 0;
  margin: 0 0 0.6rem;
  overflow-y: auto;
  flex: 1;
  min-height: 0;
}

.basket-list li {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(212, 196, 168, 0.5);
  line-height: 1.35;
}

.basket-list li:last-child {
  border-bottom: none;
}

.basket-item-num {
  color: #8b6f47;
  font-weight: 500;
  flex-shrink: 0;
}

.basket-item-text {
  flex: 1;
  font-style: italic;
}

.basket-remove {
  background: none;
  border: none;
  color: #b8956a;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  padding: 0 0.2rem;
  font-family: 'EB Garamond', Georgia, serif;
  flex-shrink: 0;
}

.basket-remove:hover {
  color: #3a2a18;
}

.basket-send {
  display: inline-block;
  margin: 0.3rem auto 0;
  padding: 0.55em 1.3em;
  background: linear-gradient(135deg, #a08158 0%, #8b6f47 100%);
  color: #fdfbf6;
  border: 1.5px solid #8b6f47;
  border-radius: 4px;
  text-decoration: none;
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 0.9em;
  letter-spacing: 0.05em;
  text-align: center;
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
}

.basket-send:hover {
  background: linear-gradient(135deg, #8b6f47 0%, #6b5230 100%);
  color: #fdfbf6;
  transform: translateY(-1px);
}

.basket-send .arrow {
  display: inline-block;
  margin-left: 0.3em;
}

@media (max-width: 900px) {
  .grand-menu-basket {
    top: auto;
    bottom: 1rem;
    right: 1rem;
    left: 1rem;
    width: auto;
    max-height: 38vh;
    transform: none;
  }
}

.grand-menu-trigger {
  display: inline-block;
  padding: 0.85em 2.2em;
  border: 1.5px solid #8b6f47;
  border-radius: 4px;
  background: linear-gradient(135deg, #a08158 0%, #8b6f47 100%);
  color: #fdfbf6;
  text-decoration: none;
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1.05em;
  letter-spacing: 0.06em;
  cursor: pointer;
  box-shadow: 0 3px 14px rgba(139, 111, 71, 0.3);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.grand-menu-trigger:hover {
  background: linear-gradient(135deg, #8b6f47 0%, #6b5230 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 111, 71, 0.4);
  color: #fdfbf6;
}

.grand-menu-trigger .arrow {
  display: inline-block;
  margin-left: 0.4em;
  transition: transform 0.2s;
}

.grand-menu-trigger:hover .arrow {
  transform: translateX(3px);
}

/* =============================================
   Testimonials — Card layout
   ============================================= */

.testimonial-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 2rem 0 3rem;
}

.testimonial-card {
  position: relative;
  background: linear-gradient(135deg, #fdfbf6 0%, #f5f0e6 50%, #fdfbf6 100%);
  border: 2px solid #b8956a;
  border-radius: 2px;
  padding: 3rem 2.4rem 1.8rem;
  box-shadow:
    0 0 0 1px #f5f0e6,
    0 0 0 4px #c9a96e,
    0 0 0 5px #f5f0e6,
    0 6px 22px rgba(0,0,0,0.08);
}

.testimonial-mark {
  position: absolute;
  top: 0.5rem;
  left: 1.4rem;
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 4.5rem;
  color: #c9a96e;
  line-height: 1;
  opacity: 0.75;
  pointer-events: none;
}

.testimonial-body {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1rem;
  font-style: italic;
  color: #3a2a18;
  line-height: 1.75;
}

.testimonial-body p {
  margin: 0 0 1rem;
}

.testimonial-body p:last-child {
  margin-bottom: 0;
}

.testimonial-attrib {
  margin-top: 1.5rem;
  text-align: center;
}

.testimonial-attrib-rule {
  width: 80px;
  height: 1px;
  background: #d4c4a8;
  margin: 0 auto 0.6rem;
}

.testimonial-attrib-text {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8b6f47;
  margin: 0;
  font-weight: 500;
  font-style: normal;
}

@media (max-width: 600px) {
  .testimonial-card {
    padding: 2.4rem 1.4rem 1.6rem;
  }
  .testimonial-mark {
    font-size: 3.5rem;
    left: 0.9rem;
  }
}

/* Mobile nav scaling — let it shrink and wrap gracefully on small phones */
@media (max-width: 600px) {
  nav {
    line-height: 2;
  }
  nav a {
    font-size: 0.88rem;
  }
}

@media (max-width: 400px) {
  nav a {
    font-size: 0.8rem;
  }
  .nav-sep, .nav-dot {
    margin: 0 0.1rem;
  }
}
