*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

body {
  font-family: 'Lato', sans-serif;
}

.container {
  margin: 0 auto;
  max-width: 1100px;
  padding: 0 2rem;
}

.site-header,
.brand-bar,
.nav-bar {
  width: 100%;
}

.brand-bar {
  background: #fff;
  border-bottom: 2px solid #e8eef6;
}

.brand-bar-inner {
  margin: 0 auto;
  max-width: 1100px;
  padding: 1rem 2rem 0.7rem;
}

.logo {
  color: #1e3a5f;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.4rem;
  letter-spacing: 0.03em;
}

.logo-sub {
  color: #c4a35a;
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 0.63rem;
  letter-spacing: 0.17em;
  margin-top: 0.12rem;
  text-transform: uppercase;
}

.nav-bar {
  background: #1e3a5f;
  border-bottom: 3px solid #c4a35a;
}

.nav-bar ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-bar ul li {
  flex: 1;
}

.nav-bar ul li a {
  color: rgba(255, 255, 255, 0.7);
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  padding: 0.55rem 0.2rem;
  text-align: center;
  text-transform: uppercase;
  transition: background 0.18s, color 0.18s;
  white-space: nowrap;
}

.nav-bar ul li a.active {
  font-weight: 700;
}

.nav-bar a:hover,
.nav-bar a.active {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.page-hero {
  overflow: hidden;
  position: relative;
}

.hero-banner-wrap {
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}

.banner-bg {
  background-size: cover;
  position: absolute;
  inset: 0;
}

.banner-overlay {
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.banner-arrow {
  align-items: center;
  background: rgba(255, 255, 255, 0.82);
  border: none;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.22);
  color: #222;
  cursor: pointer;
  display: flex;
  font-size: 0.9rem;
  height: 34px;
  justify-content: center;
  line-height: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: background 0.2s, opacity 0.2s;
  width: 34px;
  z-index: 20;
}

.banner-arrow:hover {
  background: #fff;
}

.banner-prev {
  left: 0.75rem;
}

.banner-next {
  right: 0.75rem;
}

.page-title-inner {
  position: absolute;
  z-index: 2;
}

.page-eyebrow {
  color: #c4a35a;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.page-title-inner h1 {
  color: #fff;
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: normal;
}

.page-subtitle,
.hero-sub {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
}

.btn {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.22s;
}

.btn-primary {
  background: #c4a35a;
  color: #fff;
}

.btn-primary:hover {
  background: #a8883e;
}

footer {
  background: #1e3a5f;
  padding: 2rem;
}

footer .container {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
}

footer p {
  font-size: 0.82rem;
}

footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

footer nav a {
  font-size: 0.75rem;
}

.optional-note {
  font-weight: 300;
  letter-spacing: 0;
  text-transform: none;
}

.section-label {
  color: #c4a35a;
  font-family: 'Lato', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  margin: 2.5rem 0 1rem;
  text-transform: uppercase;
}

.testimonial-block {
  background: #fff;
  border-left: 3px solid #c4a35a;
  margin-top: 0.5rem;
  padding: 1.2rem 1.5rem;
}

.testimonial-block p {
  color: #4a5a72;
  font-style: italic;
  margin-bottom: 0.8rem;
}

.testimonial-block cite {
  color: #1e3a5f;
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.pull-quote {
  border-left: 3px solid #c4a35a;
  color: #1e3a5f;
  font-family: Georgia, serif;
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.65;
  margin: 2rem 0;
  padding-left: 1rem;
}

.three-cards {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 3rem;
}

.card {
  background: #fff;
  border-top: 3px solid #1e3a5f;
  padding: 1.8rem;
}

.card h3 {
  color: #1e3a5f;
  font-family: Georgia, serif;
  font-size: 1.15rem;
  margin-bottom: 0.7rem;
}

.card p {
  color: #4a5a72;
  font-size: 0.9rem;
}

.home-page {
  background: #f4f4f2;
  color: #333;
  line-height: 1.7;
}

.home-page .hero-banner-wrap {
  height: 320px;
}

.home-page .banner-bg {
  background-position: center 30%;
}

.home-page .banner-overlay {
  background: linear-gradient(to top, rgba(30, 58, 95, 0.88) 0%, rgba(30, 58, 95, 0.18) 65%);
}

.home-page .page-title-inner {
  bottom: 0;
  left: 0;
  padding: 2rem clamp(2rem, calc(50vw - 550px + 2rem), 5rem) 2.5rem;
  right: 0;
}

.home-page .page-title-inner h1 {
  font-size: clamp(1.8rem, 3.8vw, 3rem);
  margin-bottom: 0.4rem;
}

.home-page .btn {
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  padding: 0.8rem 1.8rem;
}

.home-page .btn-secondary {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #fff;
}

.home-page .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.24);
}

.intro {
  padding: 4rem 2rem;
}

.intro .container {
  align-items: start;
  display: grid;
  gap: 4rem;
  grid-template-columns: 2fr 1fr;
}

.intro-main h2,
.services-label,
.bio-text h2 {
  color: #1e3a5f;
  font-family: Georgia, 'Times New Roman', serif;
}

.intro-main h2 {
  border-bottom: 2px solid #c4a35a;
  font-size: 1.75rem;
  margin-bottom: 1rem;
  padding-bottom: 0.7rem;
}

.intro-main p,
.bio-text p {
  color: #555;
}

.intro-main p {
  margin-bottom: 1rem;
}

.sidebar {
  background: #fff;
  border-top: 4px solid #1e3a5f;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  display: block;
  padding: 1.8rem;
}

.sidebar h4 {
  color: #1e3a5f;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.sidebar ul {
  list-style: disc;
  padding-left: 1.2rem;
}

.sidebar ul li {
  color: #555;
  font-size: 0.86rem;
  margin-bottom: 0.5rem;
}

.sidebar ul li a {
  color: #1e3a5f;
}

.sidebar ul li a:hover {
  color: #c4a35a;
  text-decoration: underline;
}

.services {
  background: #fff;
  border-top: 1px solid #e0e0e0;
  padding: 3rem 2rem 4rem;
}

.services-label {
  border-bottom: 2px solid #c4a35a;
  font-size: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 0.5rem;
}

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

.service-card {
  border-left: 4px solid #c4a35a;
  padding: 0.5rem 0 0.5rem 1.5rem;
}

.service-card h3 {
  color: #1e3a5f;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}

.service-card p {
  color: #666;
  font-size: 0.86rem;
  margin-bottom: 1.2rem;
}

.service-card .btn,
.home-page .bio-text .btn {
  background: #1e3a5f;
  color: #fff;
}

.service-card .btn {
  font-size: 0.72rem;
  padding: 0.5rem 1.2rem;
}

.service-card .btn:hover,
.home-page .bio-text .btn:hover {
  background: #c4a35a;
}

.bio-teaser {
  padding: 4rem 2rem;
}

.bio-teaser-inner {
  align-items: center;
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr 1fr;
}

.home-page .bio-text h2 {
  font-size: 1.65rem;
  margin-bottom: 0.8rem;
}

.home-page .bio-text p {
  margin-bottom: 1.5rem;
}

.home-page .bio-text .btn {
  padding: 0.75rem 1.8rem;
}

.bio-image img {
  width: 100%;
}

.home-page footer p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
}

.home-page footer nav a {
  color: rgba(255, 255, 255, 0.44);
}

.home-page footer nav a:hover {
  color: #c4a35a;
}

.biography-page {
  background: #f4f4f2;
  color: #333;
  line-height: 1.75;
}

.biography-page .hero-banner-wrap {
  height: 320px;
}

.biography-page .banner-bg {
  background-position: center 60%;
}

.biography-page .banner-overlay {
  background: linear-gradient(to top, rgba(30, 58, 95, 0.8) 0%, rgba(30, 58, 95, 0.15) 60%);
}

.biography-page .page-title-inner {
  bottom: 0;
  left: 0;
  padding: 2rem clamp(2rem, calc(50vw - 550px + 2rem), 5rem) 2.5rem;
  right: 0;
}

.biography-page .page-title-inner h1 {
  font-size: clamp(1.8rem, 3.8vw, 3rem);
  margin-bottom: 0.4rem;
}

.bio-main {
  background: #fff;
  padding: 4rem 2rem;
}

.bio-grid {
  align-items: start;
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr 280px;
}

.bio-section {
  margin-bottom: 2.5rem;
}

.bio-section h2,
.milestones h2,
.contact-info h2,
.children-text h2,
.adults-text h2,
.rsi-text h2 {
  border-bottom: 2px solid #c4a35a;
  color: #1e3a5f;
  font-family: Georgia, 'Times New Roman', serif;
}

.bio-section h2 {
  font-size: 1.35rem;
  margin-bottom: 0.8rem;
  padding-bottom: 0.5rem;
}

.bio-section p {
  color: #555;
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
}

.bio-portrait-col {
  position: sticky;
  top: 2rem;
}

.bio-portrait-col img {
  border: 1px solid #e0e0e0;
  margin-bottom: 1.5rem;
  width: 100%;
}

.bio-facts {
  background: #f4f4f2;
  border-top: 4px solid #1e3a5f;
  padding: 1.5rem;
}

.bio-facts h4 {
  color: #1e3a5f;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.bio-facts ul {
  list-style: disc;
  padding-left: 1.1rem;
}

.bio-facts ul li {
  color: #555;
  font-size: 0.82rem;
  margin-bottom: 0.4rem;
}

.bio-facts ul li span {
  color: #c4a35a;
  font-size: 0.72rem;
}

.venues-bar {
  background: #f4f4f2;
  border-bottom: 1px solid #e0e0e0;
  border-top: 1px solid #e0e0e0;
  padding: 2rem;
  text-align: center;
}

.venues-bar p {
  color: #888;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 0.94rem;
  font-style: italic;
}

.venues-label {
  color: #c4a35a;
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.milestones {
  background: #fff;
  border-top: 1px solid #e0e0e0;
  padding: 4rem 2rem;
}

.milestones h2 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 0.5rem;
}

.milestone-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.milestone {
  border-left: 4px solid #c4a35a;
  padding: 0.5rem 0 0.5rem 1.2rem;
}

.milestone .year {
  color: #1e3a5f;
  display: block;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
}

.milestone p {
  color: #666;
  font-size: 0.82rem;
}

.philosophy {
  background: #f4f4f2;
  padding: 4rem 2rem;
  text-align: center;
}

.philosophy blockquote {
  color: #1e3a5f;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.65rem);
  font-style: italic;
  line-height: 1.55;
  margin: 0 auto;
  max-width: 780px;
}

.philosophy cite {
  color: #c4a35a;
  display: block;
  font-size: 0.7rem;
  font-style: normal;
  letter-spacing: 0.18em;
  margin-top: 1.2rem;
  text-transform: uppercase;
}

.biography-page footer p {
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.8rem;
}

.biography-page footer nav a {
  color: rgba(255, 255, 255, 0.4);
}

.biography-page footer nav a:hover {
  color: #c4a35a;
}

.teaching-page {
  background: #f4f6f9;
  color: #1e3a5f;
  line-height: 1.7;
}

.teaching-page .hero-banner-wrap {
  height: 220px;
}

.teaching-page .banner-bg {
  background-position: center 30%;
}

.teaching-page .banner-overlay {
  background: linear-gradient(to right, rgba(30, 58, 95, 0.8) 0%, rgba(30, 58, 95, 0.25) 60%);
}

.teaching-page .page-title-inner {
  display: flex;
  flex-direction: column;
  inset: 0;
  justify-content: center;
  padding: 2rem clamp(2rem, calc(50vw - 550px + 2rem), 5rem);
}

.teaching-page .page-title-inner h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.teaching-section {
  padding: 4rem 2rem 6rem;
}

.teaching-tabs {
  border: 1px solid #c8d4e4;
  display: flex;
  margin-bottom: 3rem;
}

.tab-btn {
  background: #fff;
  border: none;
  border-right: 1px solid #c8d4e4;
  color: #6a7a90;
  cursor: pointer;
  flex: 1;
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  padding: 0.85rem 1rem;
  text-transform: uppercase;
  transition: all 0.22s;
}

.tab-btn:last-child {
  border-right: none;
}

.tab-btn.active {
  background: #1e3a5f;
  color: #fff;
  font-weight: 700;
}

.tab-btn:hover:not(.active) {
  background: #eef2f8;
}

.tab-panel {
  display: none;
}

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

.adults-layout {
  align-items: start;
  display: grid;
  gap: 4rem;
  grid-template-columns: 1.5fr 1fr;
}

.children-layout {
  align-items: start;
  display: grid;
  gap: 4rem;
  grid-template-columns: 1.5fr 1fr;
}

.adults-text h2,
.children-text h2 {
  font-size: 1.9rem;
  margin-bottom: 1rem;
  padding-bottom: 0.7rem;
}

.adults-text p,
.children-text p,
.schools-list li {
  color: #4a5a72;
}

.adults-text p,
.children-text p {
  margin-bottom: 1.2rem;
}

.adults-image,
.rsi-image {
  border-left: 3px solid #c4a35a;
}

.adults-image img,
.rsi-image img {
  width: 100%;
}

.children-text {
  margin-bottom: 0;
}

.gallery {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(3, 1fr);
}

.children-layout .gallery {
  grid-template-columns: 1fr;
}

.gallery-item {
  border: 3px solid #1e3a5f;
  height: 190px;
  overflow: hidden;
}

.gallery-item img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.schools-list {
  list-style: none;
  padding: 0;
}

.schools-list li {
  border-bottom: 1px solid #dde4ee;
  font-family: 'Lato', sans-serif;
  font-size: 0.88rem;
  padding: 0.3rem 0;
}

.testimonial-block cite {
  letter-spacing: 0.08em;
}

.teaching-page footer p,
.rsi-page footer p,
.contact-page footer p {
  color: rgba(255, 255, 255, 0.3);
}

.teaching-page footer nav a,
.rsi-page footer nav a,
.contact-page footer nav a {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.teaching-page footer nav a:hover,
.rsi-page footer nav a:hover,
.contact-page footer nav a:hover {
  color: #c4a35a;
}

.contact-page {
  background: #f4f6f9;
  color: #1e3a5f;
  line-height: 1.7;
}

.contact-section {
  padding: 4rem 2rem 6rem;
}

.contact-wrap {
  align-items: start;
  display: grid;
  gap: 4rem;
  grid-template-columns: 1fr 1.6fr;
  margin: 0 auto;
  max-width: 1000px;
}

.contact-info {
  border-left: 3px solid #c4a35a;
  padding-left: 1.8rem;
}

.contact-info h2 {
  font-size: 1.9rem;
  margin-bottom: 1rem;
}

.contact-info p {
  color: #4a5a72;
  margin-bottom: 1.6rem;
}

.contact-detail {
  color: #6a7a90;
  font-size: 0.84rem;
  margin-bottom: 0.4rem;
}

.contact-detail strong {
  color: #1e3a5f;
}

.contact-image {
  margin-top: 2rem;
}

.contact-image img {
  width: 100%;
}

.form-group {
  margin-bottom: 1.1rem;
}

.form-group label {
  color: #6a7a90;
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  margin-bottom: 0.35rem;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: #fff;
  border: 1px solid #c8d4e4;
  border-bottom: 2px solid #c8d4e4;
  border-radius: 3px;
  color: #1e3a5f;
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  outline: none;
  padding: 0.65rem 0.85rem;
  transition: border-color 0.2s;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-bottom-color: #c4a35a;
  border-color: #1e3a5f;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-note {
  color: #8a9ab0;
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  line-height: 1.6;
  margin-bottom: 1.4rem;
}

.contact-honeypot {
  left: -9999px;
  position: absolute;
}

.form-status {
  font-size: 0.85rem;
  margin: 0 0 1rem;
  min-height: 1.4rem;
}

.form-status.is-success {
  color: #2f6b3b;
}

.form-status.is-error {
  color: #a33b2b;
}

.btn-submit {
  background: #1e3a5f;
  border: 2px solid #1e3a5f;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  padding: 0.85rem 2.4rem;
  text-transform: uppercase;
  transition: all 0.22s;
}

.btn-submit:hover {
  background: #c4a35a;
  border-color: #c4a35a;
}

.btn-submit:disabled {
  cursor: wait;
  opacity: 0.7;
}

.rsi-page {
  background: #f4f6f9;
  color: #1e3a5f;
  line-height: 1.7;
}

.rsi-page .page-hero {
  height: 130px;
}

.rsi-page .banner-bg {
  background-position: center 40%;
}

.rsi-page .banner-overlay {
  background: linear-gradient(to right, rgba(30, 58, 95, 0.82) 0%, rgba(30, 58, 95, 0.25) 60%);
}

.rsi-page .page-title-inner {
  display: flex;
  flex-direction: column;
  inset: 0;
  justify-content: center;
  padding: 2rem clamp(2rem, calc(50vw - 550px + 2rem), 5rem);
}

.rsi-section {
  padding: 0 2rem 2rem;
}

.rsi-intro {
  align-items: start;
  display: grid;
  gap: 4rem;
  grid-template-columns: 1.5fr 1fr;
  margin-bottom: 4rem;
}

.rsi-text h2 {
  font-size: 1.9rem;
  margin-bottom: 1rem;
  padding-bottom: 0.7rem;
}

.rsi-text p {
  color: #4a5a72;
  margin-bottom: 1.2rem;
}

.rsi-text-narrow {
  margin: 4rem auto 0;
  max-width: 780px;
}

.cta-bar {
  margin-top: 3.5rem;
  text-align: center;
}

.rsi-page .btn {
  background: #1e3a5f;
  border: 2px solid #1e3a5f;
  color: #fff;
  padding: 0.85rem 2.2rem;
}

.rsi-page .btn:hover {
  background: #c4a35a;
  border-color: #c4a35a;
}

@media (max-width: 800px) {
  .intro .container,
  .bio-teaser-inner,
  .bio-grid,
  .adults-layout,
  .children-layout,
  .contact-wrap,
  .rsi-intro {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .three-cards {
    grid-template-columns: 1fr;
  }

  .bio-portrait-col {
    order: -1;
    position: static;
  }

  .milestone-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-info {
    border-left: none;
    padding-left: 0;
  }
}

@media (max-width: 480px) {
  .brand-bar-inner {
    padding: 0.8rem 1.2rem 0.5rem;
  }

  .nav-bar ul li a {
    font-size: 0.58rem;
    letter-spacing: 0.06em;
    padding: 0.5rem 0.1rem;
  }

  .teaching-section,
  .contact-section,
  .rsi-section {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }

  .teaching-section,
  .contact-section {
    padding-bottom: 4rem;
    padding-top: 3rem;
  }

  .rsi-section {
    padding-bottom: 4rem;
    padding-top: 3rem;
  }

  .gallery {
    grid-template-columns: 1fr 1fr;
  }

  .children-layout .gallery {
    grid-template-columns: 1fr 1fr;
  }

  .milestone-grid {
    grid-template-columns: 1fr;
  }
}
