/* ============================================================
   AMALIA STUDIO — Shared Stylesheet
   ============================================================ */

/* ---- 1. Variables ---------------------------------------- */
:root {
  --bg: #F5F0E8;
  --navy: #1B2B5E;
  --navy-dark: #12203F;
  --navy-mid: #253560;
  --tan: #8B6F47;
  --body: #3a3a5a;
  --card-bg: #ffffff;
  --card-border: #d4cbbf;
  --pill-bg: #EEF1F8;
  --placeholder: #d4cbbf;
  --nav-link: #c8d4e8;
  --credential: #a8b8d8;
  --muted-navy: #8B9FD0;
  --max-w: 1280px;
}

/* ---- 2. Reset & Base ------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--body);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ---- 3. Typography --------------------------------------- */
h1, h2, h3, h4 {
  font-family: 'Bodoni Moda', serif;
  font-weight: 400;
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: clamp(28px, 4vw, 48px); }
h2 { font-size: clamp(24px, 3vw, 38px); }
h3 { font-size: clamp(20px, 2.5vw, 28px); }

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.45;
  display: block;
  margin-bottom: 10px;
}

.italic-accent {
  font-style: italic;
  color: var(--tan);
}

p { line-height: 1.75; }

/* ---- 4. Announcement Bar --------------------------------- */
.announcement-bar {
  background: var(--tan);
  color: #fff;
  text-align: center;
  padding: 8px 24px;
  font-size: 12px;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.08em;
}

/* ---- 5. Navigation (Desktop) ----------------------------- */
.site-nav {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 0.5px solid rgba(255,255,255,0.07);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}

.nav-logo-name {
  font-family: 'Bodoni Moda', serif;
  font-size: 26px;
  color: #F5F0E8;
  font-weight: 400;
}

.nav-logo-sub {
  font-family: 'Work Sans', sans-serif;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--nav-link);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--nav-link);
  transition: color 0.15s;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link:hover { color: #fff; }

.nav-has-dropdown { position: relative; }

.nav-dropdown-btn {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--nav-link);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.15s;
  padding: 4px 0;
}

.nav-dropdown-btn:hover { color: #fff; }

.nav-chevron {
  transition: transform 0.2s;
  opacity: 0.6;
}

.nav-dropdown-btn[aria-expanded="true"] .nav-chevron {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: -16px;
  background: var(--navy-dark);
  border: 0.5px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 8px 0;
  min-width: 200px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.15s, transform 0.15s;
  z-index: 200;
}

.nav-dropdown.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.nav-dropdown-item {
  display: block;
  padding: 10px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--nav-link);
  transition: color 0.12s, background 0.12s;
}

.nav-dropdown-item:hover {
  color: #fff;
  background: rgba(255,255,255,0.06);
}

.nav-location {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--nav-link);
  opacity: 0.45;
  white-space: nowrap;
}

.nav-cta {
  background: #F5F0E8;
  color: var(--navy);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 20px;
  padding: 8px 18px;
  font-weight: 500;
  transition: background 0.15s, color 0.15s;
  flex-shrink: 0;
}

.nav-cta:hover {
  background: #fff;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-right: -8px;
}

.hamburger-line {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--nav-link);
  border-radius: 2px;
  transition: background 0.15s;
}

/* ---- 6. Mobile Navigation Overlay ----------------------- */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 500;
  display: flex;
  flex-direction: column;
  padding: 0;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.mobile-nav-overlay.open {
  transform: translateX(0);
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 0.5px solid rgba(255,255,255,0.1);
}

.mobile-nav-close {
  font-size: 28px;
  color: var(--nav-link);
  line-height: 1;
  padding: 8px;
  margin-right: -8px;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  transition: color 0.15s;
}

.mobile-nav-close:hover { color: #fff; }

.mobile-nav-links {
  padding: 16px 24px 40px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav-link {
  font-family: 'Bodoni Moda', serif;
  font-size: 26px;
  color: #F5F0E8;
  font-weight: 400;
  padding: 10px 0;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.15s;
  border-bottom: 0.5px solid rgba(255,255,255,0.06);
  text-align: left;
  width: 100%;
}

.mobile-nav-link:hover { color: var(--nav-link); }

.mobile-nav-group { display: flex; flex-direction: column; }

.mobile-nav-sub {
  display: none;
  flex-direction: column;
  padding-left: 16px;
  padding-bottom: 8px;
}

.mobile-nav-sub.open { display: flex; }

.mobile-nav-sublink {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--nav-link);
  padding: 8px 0;
  min-height: 44px;
  display: flex;
  align-items: center;
  transition: color 0.15s;
}

.mobile-nav-sublink:hover { color: #fff; }

.mobile-nav-cta {
  display: inline-block;
  margin-top: 24px;
  background: #F5F0E8;
  color: var(--navy);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 22px;
  padding: 14px 28px;
  font-weight: 500;
  text-align: center;
}

/* ---- 7. Buttons ------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 22px;
  padding: 11px 22px;
  transition: all 0.15s;
  cursor: pointer;
  min-height: 40px;
  white-space: nowrap;
}

.btn-primary {
  background: var(--navy);
  color: #F5F0E8;
  border: 1.5px solid var(--navy);
}
.btn-primary:hover {
  background: #243671;
  border-color: #243671;
}

.btn-secondary {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-secondary:hover {
  background: var(--navy);
  color: #F5F0E8;
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1px solid rgba(27,43,94,0.3);
}
.btn-ghost:hover {
  border-color: var(--navy);
  background: rgba(27,43,94,0.04);
}

.btn-ghost-light {
  background: transparent;
  color: #c8d4e8;
  border: 0.5px solid rgba(255,255,255,0.3);
}
.btn-ghost-light:hover {
  border-color: rgba(255,255,255,0.6);
  color: #fff;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* ---- 8. Layout ------------------------------------------- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.section-pad {
  padding: 48px 24px;
}

/* ---- 9. Placeholder images ------------------------------- */
.ph {
  background: var(--placeholder);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 220px;
}

.ph span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(27,43,94,0.35);
  font-family: 'Inter', sans-serif;
}

/* ---- 10. Hero (Homepage) ---------------------------------- */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 400px;
}

.hero-image {
  background: var(--navy-mid);
  min-height: 340px;
  overflow: hidden;
  position: relative;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.hero-content {
  background: var(--bg);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.hero-content h1 { color: var(--navy); }

.hero-subline {
  font-size: 14px;
  opacity: 0.5;
  margin-top: -12px;
}

.hero-body {
  font-size: 15px;
  color: var(--body);
  line-height: 1.75;
  max-width: 420px;
}

/* ---- 11. Info Band --------------------------------------- */
.info-band {
  background: var(--navy);
  padding: 12px 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.info-band-item {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--nav-link);
  display: flex;
  align-items: center;
  gap: 0;
}

.info-band-dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #8B9FD0;
  margin: 0 14px;
  flex-shrink: 0;
}

/* ---- 12. Video Strip ------------------------------------- */
.video-strip {
  height: 33vw;
  max-height: 420px;
  overflow: hidden;
  position: relative;
  background: var(--navy-mid);
}

.video-strip video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-strip-fallback {
  display: none;
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  color: var(--nav-link);
}

.video-strip-fallback.show {
  display: flex;
}

.video-strip-fallback span {
  font-family: 'Bodoni Moda', serif;
  font-style: italic;
  font-size: 22px;
}

/* ---- 13. Classes Section --------------------------------- */
.classes-section {
  padding: 48px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-header {
  margin-bottom: 32px;
}

.class-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 16px;
  overflow: hidden;
  border: 0.5px solid var(--card-border);
  margin-bottom: 16px;
}

.class-row.reverse .class-video-panel { order: 2; }
.class-row.reverse .class-info-panel { order: 1; }

.class-video-panel {
  background: var(--navy-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  position: relative;
  overflow: hidden;
}

.class-video-panel iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-ph {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  height: 100%;
  min-height: 260px;
}

.play-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 0 7px 13px;
  border-color: transparent transparent transparent rgba(255,255,255,0.6);
  margin-left: 3px;
}

.video-ph-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.3);
  font-family: 'Inter', sans-serif;
}

.class-info-panel {
  background: var(--card-bg);
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-left: 0.5px solid var(--card-border);
}

.class-row.reverse .class-info-panel {
  border-left: none;
  border-right: 0.5px solid var(--card-border);
}

.age-pill {
  display: inline-block;
  background: var(--navy);
  color: var(--muted-navy);
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 12px;
  padding: 4px 12px;
  align-self: flex-start;
}

.class-title {
  font-family: 'Bodoni Moda', serif;
  font-size: 26px;
  color: var(--navy);
  font-weight: 400;
}

.class-desc {
  font-size: 14px;
  color: var(--body);
  line-height: 1.8;
}

.class-bullets {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.class-bullets li {
  font-size: 13px;
  color: var(--body);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.class-bullets li::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--tan);
  flex-shrink: 0;
  margin-top: 6px;
}

.dates-pill {
  display: inline-block;
  background: var(--pill-bg);
  color: var(--navy);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  border-radius: 8px;
  padding: 8px 12px;
  align-self: flex-start;
}

.class-meta {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: var(--tan);
}

/* ---- 14. Photo Band -------------------------------------- */
.photo-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 180px;
  border-top: 0.5px solid var(--card-border);
}

.photo-band-cell {
  position: relative;
  overflow: hidden;
}

.photo-band-cell:not(:last-child) {
  border-right: 0.5px solid var(--card-border);
}

.photo-band-cell .ph {
  height: 180px;
  min-height: unset;
}

.photo-band-cell:nth-child(1) .ph { background: #d4cbbf; }
.photo-band-cell:nth-child(2) .ph { background: #ccc4b8; }
.photo-band-cell:nth-child(3) .ph { background: #d8d0c4; }
.photo-band-cell:nth-child(4) .ph { background: #c8c0b4; }

/* ---- 15. Services Section -------------------------------- */
.services-section {
  padding: 0 24px 32px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.services-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.5;
  padding-top: 32px;
  padding-bottom: 16px;
  display: block;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.service-card {
  background: var(--card-bg);
  border: 0.5px solid var(--card-border);
  border-radius: 14px;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  cursor: pointer;
  transition: transform 0.15s;
  text-decoration: none;
  color: inherit;
}

.service-card:hover { transform: translateY(-2px); }

.service-icon {
  width: 38px;
  height: 38px;
  background: var(--pill-bg);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-icon svg { color: var(--navy); }

.service-title {
  font-family: 'Bodoni Moda', serif;
  font-size: 17px;
  color: var(--navy);
}

.service-body {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #6a6a8a;
  line-height: 1.6;
}

/* ---- 16. About Panel ------------------------------------- */
.about-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--navy);
  margin: 32px 24px;
  border-radius: 20px;
  overflow: hidden;
  max-width: calc(var(--max-w) - 48px);
  margin-left: auto;
  margin-right: auto;
}

.about-photo {
  background: var(--navy-mid);
  min-height: 280px;
  position: relative;
  overflow: hidden;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.about-content {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.about-content .eyebrow {
  color: var(--muted-navy);
  opacity: 1;
  letter-spacing: 0.15em;
}

.about-content h2 {
  color: #F5F0E8;
  font-size: clamp(20px, 2.5vw, 28px);
}

.about-content h2 .italic-accent { color: #c4a882; }

.about-body {
  font-size: 13px;
  color: var(--muted-navy);
  line-height: 1.8;
}

.credentials {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.credential-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  color: var(--credential);
  font-family: 'Inter', sans-serif;
  line-height: 1.5;
}

.credential-dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--tan);
  flex-shrink: 0;
  margin-top: 6px;
}

/* ---- 17. Reviews Carousel -------------------------------- */
.reviews-section {
  background: var(--bg);
  border-top: 0.5px solid var(--card-border);
  padding: 8px 0 36px;
}

.reviews-header {
  padding: 32px 24px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.reviews-title {
  font-family: 'Bodoni Moda', serif;
  font-size: 24px;
  color: var(--navy);
}

.carousel-outer {
  position: relative;
  overflow: hidden;
  padding: 0 24px;
}

.carousel-track {
  display: flex;
  gap: 12px;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.review-card {
  background: var(--card-bg);
  border: 0.5px solid var(--card-border);
  border-radius: 14px;
  padding: 22px 20px;
  flex: 0 0 calc(33.333% - 8px);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.review-quote {
  font-family: 'Bodoni Moda', serif;
  font-style: italic;
  font-size: 15px;
  color: #2a2a3a;
  line-height: 1.75;
  flex: 1;
}

.review-author {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--tan);
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.carousel-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(27,43,94,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: all 0.15s;
  background: #fff;
}

.carousel-btn:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.carousel-btn:disabled {
  opacity: 0.3;
  cursor: default;
}

.carousel-dots {
  display: flex;
  gap: 6px;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--card-border);
  transition: background 0.15s;
  border: none;
  padding: 0;
  cursor: pointer;
}

.dot.active { background: var(--navy); }

/* ---- 18. Social Strip ------------------------------------ */
.social-strip {
  background: var(--navy);
  padding: 28px 32px;
}

.social-strip-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.social-strip-text .label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-navy);
  display: block;
  margin-bottom: 4px;
}

.social-handle {
  font-family: 'Bodoni Moda', serif;
  font-style: italic;
  font-size: 22px;
  color: #F5F0E8;
  display: block;
  margin-bottom: 4px;
}

.social-desc {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--muted-navy);
}

.social-btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

/* ---- 19. Footer ------------------------------------------ */
.site-footer {
  background: var(--navy-dark);
  padding: 20px 32px;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-logo-name {
  font-family: 'Bodoni Moda', serif;
  font-size: 18px;
  color: #F5F0E8;
  display: block;
}

.footer-logo-sub {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #6B7BA0;
  display: block;
  margin-top: 2px;
}

.footer-contact a {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #6B7BA0;
  transition: color 0.15s;
}

.footer-contact a:hover { color: var(--nav-link); }

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6B7BA0;
  transition: color 0.15s;
}

.footer-links a:hover { color: var(--nav-link); }

.casting-email-link {
  font-family: 'Bodoni Moda', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--navy);
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 3px;
  transition: text-decoration-color 0.15s;
}

.casting-email-link:hover {
  text-decoration-color: var(--navy);
}

/* ---- Contact page ---------------------------------------- */
.contact-email {
  display: block;
  font-family: 'Bodoni Moda', serif;
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 400;
  color: var(--navy);
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
  transition: text-decoration-color 0.15s;
  margin-top: 6px;
  word-break: break-all;
}

.contact-email:hover {
  text-decoration-color: var(--navy);
}

.contact-social-link {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  transition: opacity 0.15s;
}

.contact-social-link:hover { opacity: 0.7; }

.contact-social-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--pill-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--navy);
}

/* ---- 20. Page Heroes ------------------------------------- */
.page-hero {
  background: var(--navy);
  padding: 64px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(27,43,94,0.5);
  z-index: 1;
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero-eyebrow {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-navy);
  margin-bottom: 12px;
  opacity: 0.85;
}

.page-hero h1 {
  color: #F5F0E8;
  font-size: clamp(26px, 4vw, 44px);
  margin-bottom: 12px;
}

.page-hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--nav-link);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ---- 21. Content Sections -------------------------------- */
.content-section {
  padding: 52px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.content-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.content-body {
  font-size: 15px;
  color: var(--body);
  line-height: 1.8;
}

.content-body p + p { margin-top: 16px; }

.content-bullets {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin: 16px 0;
}

.content-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
}

.content-bullets li::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--tan);
  flex-shrink: 0;
  margin-top: 7px;
}

.term-info-box {
  background: var(--pill-bg);
  border-radius: 12px;
  padding: 20px;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.term-info-row {
  display: flex;
  gap: 8px;
  font-size: 13px;
  color: var(--navy);
  font-family: 'Inter', sans-serif;
}

.term-info-label {
  font-weight: 500;
  color: var(--muted-navy);
  min-width: 60px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pull-quote {
  font-family: 'Bodoni Moda', serif;
  font-style: italic;
  font-size: 17px;
  color: var(--body);
  line-height: 1.75;
  margin-top: 20px;
  padding: 16px 20px;
  border-left: 2px solid var(--tan);
  background: rgba(139,111,71,0.05);
  border-radius: 0 8px 8px 0;
}

.pull-quote cite {
  display: block;
  font-style: normal;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--tan);
  margin-top: 8px;
}

.section-divider {
  border: none;
  border-top: 0.5px solid var(--card-border);
  margin: 40px 0;
}

/* ---- 22. Forms ------------------------------------------- */
.form-section {
  background: var(--bg);
  padding: 48px 24px;
}

.form-section-header {
  max-width: 680px;
  margin: 0 auto 28px;
}

.form-section-header h2 { color: var(--navy); }

.form-section-header p {
  font-size: 14px;
  color: var(--body);
  margin-top: 8px;
  line-height: 1.7;
}

.form-card {
  background: var(--card-bg);
  border: 0.5px solid var(--card-border);
  border-radius: 16px;
  padding: 36px;
  max-width: 680px;
  margin: 0 auto;
}

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

.form-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--body);
  margin-bottom: 7px;
  font-weight: 500;
}

.form-label .optional {
  font-weight: 400;
  opacity: 0.5;
  font-size: 11px;
  margin-left: 4px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--body);
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 10px 14px;
  transition: border-color 0.15s, box-shadow 0.15s;
  appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27,43,94,0.08);
}

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

.form-input.field-error,
.form-select.field-error,
.form-textarea.field-error {
  border-color: #c94040;
  background: #fff7f7;
  box-shadow: 0 0 0 3px rgba(201,64,64,0.1);
}

input[type="checkbox"].field-error,
input[type="radio"].field-error {
  outline: 2px solid #c94040;
  outline-offset: 3px;
}

input[type="checkbox"].field-error + label,
input[type="radio"].field-error + label {
  color: #c94040;
}

.form-hint {
  font-size: 11px;
  color: #8a8aaa;
  margin-top: 5px;
  font-family: 'Inter', sans-serif;
}

.form-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}

.form-checkbox-group input[type="checkbox"] {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: var(--navy);
  cursor: pointer;
}

.form-checkbox-group label {
  font-size: 13px;
  color: var(--body);
  line-height: 1.6;
  cursor: pointer;
}

.form-radio-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-radio-option {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.form-radio-option input[type="radio"] {
  accent-color: var(--navy);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.form-radio-option span {
  font-size: 14px;
  color: var(--body);
}

.form-section-title {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-navy);
  margin: 28px 0 16px;
}

.payment-block {
  background: var(--bg);
  border: 0.5px solid var(--card-border);
  border-radius: 10px;
  padding: 16px 18px;
  margin-bottom: 16px;
}

.payment-block-label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 11px;
}

.bank-details {
  background: #fff;
  border: 0.5px solid var(--card-border);
  border-radius: 8px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.bank-details-text {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--navy);
}

.bank-details-acct {
  font-weight: 500;
  letter-spacing: 0.03em;
}

.copy-btn {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--tan);
  border: 1px solid rgba(139,111,71,0.3);
  border-radius: 6px;
  padding: 5px 10px;
  transition: all 0.15s;
  flex-shrink: 0;
}

.copy-btn:hover { background: rgba(139,111,71,0.08); }

.payment-note {
  font-size: 12px;
  color: #8a8aaa;
  font-family: 'Inter', sans-serif;
  margin-top: 6px;
  line-height: 1.5;
}

.form-submit-area {
  margin-top: 24px;
}

.form-submit-area .btn {
  width: 100%;
  font-size: 12px;
  padding: 14px;
}

.form-error {
  display: none;
  background: #fde8e8;
  border: 0.5px solid #f5c6c6;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 13px;
  color: #8b2020;
  margin-bottom: 16px;
  font-family: 'Inter', sans-serif;
}

.form-success {
  display: none;
  background: #e8f5e9;
  border: 0.5px solid #c8e6c9;
  border-radius: 12px;
  padding: 28px 24px;
  font-size: 15px;
  color: #1b4d1e;
  text-align: center;
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  max-width: 680px;
  margin: 0 auto;
}

.policies-link-line {
  text-align: center;
  font-size: 13px;
  color: var(--body);
  font-family: 'Inter', sans-serif;
  margin-top: 16px;
  opacity: 0.7;
}

.policies-link-line a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ---- 23. About Page -------------------------------------- */
.about-hero {
  min-height: 360px;
}

.about-hero h1 {
  font-style: italic;
  font-size: 48px;
  color: #F5F0E8;
}

.about-hero .page-hero-sub {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

/* ---- 24. Location Page ----------------------------------- */
.map-container {
  width: 100%;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  border: 0.5px solid var(--card-border);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.location-block h3 {
  font-size: 16px;
  margin-bottom: 6px;
}

.location-block p {
  font-size: 14px;
  color: var(--body);
  line-height: 1.7;
}

/* ---- 25. Policies Page ----------------------------------- */
.policies-page {
  background: var(--bg);
  min-height: 100vh;
}

.policies-nav {
  background: var(--navy);
  padding: 16px 32px;
}

.policies-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 2px;
  width: fit-content;
}

.policies-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 52px 24px 80px;
}

.policies-content h1 {
  font-size: 36px;
  margin-bottom: 8px;
}

.policies-intro {
  font-size: 14px;
  color: var(--body);
  margin-bottom: 40px;
  opacity: 0.7;
}

.policy-section {
  margin-bottom: 40px;
}

.policy-section h2 {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 0.5px solid var(--card-border);
}

.policy-section p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--body);
  margin-bottom: 10px;
}

.policy-section ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 8px 0 12px;
}

.policy-section ul li {
  font-size: 14px;
  color: var(--body);
  line-height: 1.7;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.policy-section ul li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--tan);
  flex-shrink: 0;
  margin-top: 8px;
}

.policies-footer {
  text-align: center;
  padding: 20px 32px;
  background: var(--navy-dark);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #6B7BA0;
}

/* ---- 26. Gallery Grid ------------------------------------ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.gallery-cell {
  border-radius: 10px;
  overflow: hidden;
}

.gallery-cell .ph { min-height: 160px; }

/* ---- 27. Photo rows (class pages) ----------------------- */
.photo-row-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.photo-row-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.photo-row-3 > div,
.photo-row-2 > div {
  overflow: hidden;
}

@media (max-width: 768px) {
  .photo-row-3,
  .photo-row-2 {
    grid-template-columns: 1fr;
  }
}

/* ---- 29. Utility classes --------------------------------- */
.text-center { text-align: center; }
.text-muted { opacity: 0.6; }
.mb-4 { margin-bottom: 4px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }

/* ---- 28. Focus states (accessibility) -------------------- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 2px;
}

/* ---- 29. Responsive (768px) ------------------------------ */
@media (max-width: 768px) {
  /* Nav */
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav-inner { padding: 0 20px; }

  /* Hero */
  .hero { grid-template-columns: 1fr; }
  .hero-image { min-height: 280px; }
  .hero-content { padding: 32px 24px; }
  .hero-content h1 { font-size: 28px; }

  /* Info band */
  .info-band { gap: 4px 0; justify-content: center; }

  /* Video strip */
  .video-strip { height: 56vw; max-height: 280px; }

  /* Classes */
  .class-row { grid-template-columns: 1fr; }
  .class-row.reverse .class-video-panel { order: 0; }
  .class-row.reverse .class-info-panel { order: 1; }
  .class-row.reverse .class-info-panel { border-right: none; border-top: 0.5px solid var(--card-border); }
  .class-info-panel { border-left: none; border-top: 0.5px solid var(--card-border); padding: 24px 20px; }
  .class-video-panel { min-height: 200px; }

  /* Photo band */
  .photo-band { grid-template-columns: 1fr 1fr; height: auto; }
  .photo-band-cell .ph { height: 140px; }
  .photo-band-cell:nth-child(2) { border-right: none; }

  /* Services */
  .services-grid { grid-template-columns: 1fr 1fr; }

  /* About panel */
  .about-panel { grid-template-columns: 1fr; margin: 24px 16px; }
  .about-photo { min-height: 240px; }
  .about-content { padding: 28px 24px; }

  /* Reviews carousel */
  .review-card { flex: 0 0 calc(100% - 0px); }

  /* Social strip */
  .social-strip { padding: 24px 20px; }
  .social-strip-inner { flex-direction: column; align-items: flex-start; }
  .social-btns { flex-direction: column; width: 100%; }
  .social-btns .btn { width: 100%; justify-content: center; }

  /* Footer */
  .site-footer { padding: 16px 20px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 10px; }

  /* Content sections */
  .content-2col { grid-template-columns: 1fr; gap: 28px; }
  .content-section { padding: 36px 20px; }

  /* Forms */
  .form-card { padding: 24px 20px; }

  /* Page hero */
  .page-hero { padding: 48px 20px; min-height: 220px; }
  .page-hero h1 { font-size: 28px; }

  /* General */
  .classes-section { padding: 32px 16px; }
  .services-section { padding: 0 16px 24px; }

  /* Btn group stack under 400px */
  .btn-group { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 400px) {
  .btn-group { flex-direction: column; width: 100%; }
  .btn-group .btn { width: 100%; justify-content: center; }
}
