﻿@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --navy:#0f1d46;
  --navy2:#071025;
  --blue:#2f7fc1;
  --blue-bright:#188fe2;
  --blue-soft:#eef7ff;
  --blue-mid:#78aee0;
  --green:#14b85c;
  --ink:#172033;
  --muted:#667085;
  --line:#dbe7f3;
  --white:#fff;
  --soft:#f4f8fc;
  --shadow:0 20px 60px rgba(17,28,69,.14);
  --radius:28px;
}

*{box-sizing:border-box}

html{
  scroll-behavior:smooth;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  text-rendering:optimizeLegibility;
}

body{
  margin:0;
  font-family:"Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color:var(--ink);
  background:#fff;
}

a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}

.container{
  width:min(1140px,calc(100% - 40px));
  margin:0 auto;
}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(14px);
  border-bottom:1px solid var(--line);
}

.nav-wrap,
.header-inner{
  min-height:104px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:56px;
}

.brand{
  display:flex;
  align-items:center;
  flex:0 0 auto;
}

.brand img{
  width:190px;
  margin-bottom:6px;
  background:transparent;
}

.site-nav{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:24px;
  font-weight:700;
  font-size:.9rem;
  text-transform:uppercase;
  letter-spacing:-0.01em;
  color:var(--navy);
  margin-left:72px;
  flex:1 1 auto;
}

.nav-link{
  position:relative;
  line-height:1;
  white-space:nowrap;
}

.nav-link.active,
.nav-link:hover{
  color:var(--blue);
}

.nav-button,
.nav-cta{
  background:linear-gradient(135deg,var(--blue),var(--navy));
  color:#fff!important;
  padding:13px 22px;
  border-radius:999px;
  box-shadow:0 10px 26px rgba(47,127,193,.22);
  font-weight:700;
  letter-spacing:-0.01em;
  white-space:nowrap;
}

.nav-toggle,
.menu-toggle{
  display:none;
  border:0;
  background:transparent;
  width:42px;
  height:42px;
  padding:8px;
}

.nav-toggle span,
.menu-toggle span{
  display:block;
  height:2px;
  background:var(--navy);
  margin:7px 0;
}

.hero{
  min-height:690px;
  display:flex;
  align-items:center;
  background:radial-gradient(circle at 82% 18%,rgba(120,174,224,.36),transparent 30%),linear-gradient(135deg,#f8fbff 0%,#edf6ff 44%,#fff 100%);
  overflow:hidden;
  padding-top:18px;
}

.hero-grid{
  display:grid;
  grid-template-columns:1fr .92fr;
  gap:62px;
  align-items:center;
}

.page-hero{
  padding:48px 0 34px;
  background:radial-gradient(circle at 85% 15%,rgba(120,174,224,.30),transparent 30%),linear-gradient(135deg,#f8fbff 0%,#edf6ff 50%,#fff 100%);
  border-bottom:1px solid var(--line);
}

.section{
  padding:52px 0;
}

.page-hero + .section{
  padding-top:38px;
}

.section-soft{background:var(--soft)}
.section-blue{background:linear-gradient(135deg,var(--navy),#18366f);color:#fff}

.split{
  display:grid;
  grid-template-columns:.9fr 1fr;
  gap:62px;
  align-items:center;
}

.contact-grid{
  display:grid;
  grid-template-columns:.82fr 1fr;
  gap:62px;
  align-items:start;
}

.card-grid{
  display:grid;
  gap:22px;
}

.card-grid.three{
  grid-template-columns:repeat(3,1fr);
}

.eyebrow{
  margin:0 0 12px;
  color:var(--blue);
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-size:.78rem;
}

.eyebrow.light{color:#9fd0ff}

h1,h2,h3,p{margin-top:0}

h1{
  font-size:clamp(2.35rem,4.6vw,4.35rem);
  line-height:1;
  letter-spacing:-.055em;
  color:var(--navy);
  margin-bottom:20px;
  font-weight:800;
}

h2{
  font-size:clamp(2rem,4vw,3.45rem);
  line-height:1;
  letter-spacing:-.045em;
  color:var(--navy);
  margin-bottom:20px;
  font-weight:800;
}

h3{
  font-size:1.36rem;
  color:var(--navy);
  margin-bottom:12px;
  font-weight:800;
}

.section-blue h2,
.section-blue h3{
  color:#fff;
}

.lead,
.rich p,
.info-card p,
.section-heading p,
.site-footer p,
.contact-note p{
  font-size:1.08rem;
  line-height:1.75;
  color:var(--muted);
  font-weight:400;
}

.page-hero .lead{
  font-size:1rem;
  line-height:1.58;
  margin-bottom:10px;
}

.page-hero .lead:last-child{
  margin-bottom:0;
}

.rich-light p{
  font-size:1.12rem;
  line-height:1.8;
  color:rgba(255,255,255,.78);
  font-weight:400;
}

.narrow{max-width:720px}
.center{text-align:center}

.center .narrow,
.center .lead{
  margin-left:auto;
  margin-right:auto;
}

.button-row{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:34px;
}

.center-row{justify-content:center}

.btn{
  display:inline-flex;
  justify-content:center;
  align-items:center;
  min-height:54px;
  padding:0 24px;
  border-radius:999px;
  font-weight:800;
  border:0;
  cursor:pointer;
  transition:transform .2s ease,box-shadow .2s ease;
  letter-spacing:-0.01em;
}

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

.btn-primary{
  color:#fff;
  background:linear-gradient(135deg,var(--blue),var(--navy));
  box-shadow:0 12px 30px rgba(47,127,193,.28);
}

.btn-light{
  color:var(--navy);
  background:#fff;
  border:1px solid var(--line);
}

.pill-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:28px;
}

.pill-row.big{
  margin-top:38px;
}

.pill-row span{
  display:inline-flex;
  align-items:center;
  border-radius:999px;
  background:#fff;
  color:var(--navy);
  border:1px solid var(--line);
  padding:10px 14px;
  font-weight:700;
  font-size:.9rem;
  letter-spacing:-0.01em;
}

.hero-panel{
  position:relative;
  border-radius:var(--radius);
  background:var(--navy);
  color:#fff;
  padding:46px;
  min-height:420px;
  box-shadow:var(--shadow);
  overflow:hidden;
}

.hero-panel:after{
  content:"";
  position:absolute;
  right:-90px;
  bottom:-90px;
  width:230px;
  height:230px;
  border-radius:999px;
  background:rgba(120,174,224,.22);
}

.hero-panel h2{
  color:#fff;
  font-size:clamp(2rem,3.4vw,3.3rem);
}

.hero-panel p{
  color:rgba(255,255,255,.82);
  font-size:1.08rem;
  line-height:1.75;
}

.note-mark{
  font-size:6rem;
  line-height:1;
  color:var(--blue-mid);
  margin-bottom:26px;
}

.info-card,
.contact-form,
.price-card,
.contact-note{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:0 14px 40px rgba(17,28,69,.08);
}

.info-card{
  padding:32px;
}

.info-card a{
  display:inline-block;
  margin-top:10px;
  color:var(--blue);
  font-weight:800;
}

.contact-note{
  padding:28px;
  margin-top:28px;
}

/* Pricing cards */
.pricing-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(280px,430px));
  justify-content:center;
  align-items:stretch;
  gap:46px;
  margin-top:18px;
}

.price-card{
  position:relative;
  overflow:visible;
  padding-bottom:34px;
  text-align:left;
  display:flex;
  flex-direction:column;
  height:100%;
  min-height:470px;
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.price-card:hover{
  transform:translateY(-6px);
  box-shadow:0 24px 70px rgba(17,28,69,.16);
  border-color:rgba(47,127,193,.28);
}

.price-card:first-child::before{
  content:"Popular Option";
  position:absolute;
  top:-16px;
  right:24px;
  z-index:5;
  background:#fff;
  color:var(--green);
  border:2px solid var(--green);
  border-radius:999px;
  padding:8px 14px;
  font-size:.78rem;
  line-height:1;
  font-weight:800;
  letter-spacing:-0.01em;
  box-shadow:0 12px 30px rgba(17,28,69,.12);
}

.price-head{
  background:var(--navy);
  color:#fff;
  text-align:center;
  padding:36px 26px 70px;
  border-radius:var(--radius) var(--radius) 0 0;
}

.price-head h3{
  color:#fff;
  text-transform:uppercase;
  letter-spacing:.06em;
  font-size:1.5rem;
  margin-bottom:6px;
  font-weight:800;
}

.price-head p{
  margin:0;
  color:rgba(255,255,255,.68);
  text-transform:uppercase;
  letter-spacing:.08em;
  font-weight:700;
}

.price-ribbon{
  margin:-44px -18px 0;
  min-height:86px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  color:#fff;
  font-weight:800;
  position:relative;
  z-index:2;
  clip-path:polygon(0 0,96% 0,100% 50%,96% 100%,0 100%,4% 50%);
}

.price-amount{
  font-size:2.65rem;
  line-height:1;
}

.price-period{
  max-width:104px;
  font-size:.78rem;
  line-height:1.15;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:rgba(255,255,255,.86);
  text-align:left;
}
.price-copy{
  display:flex;
  flex-direction:column;
  gap:5px;
}

.price-billing{
  max-width:132px;
  font-size:.68rem;
  line-height:1.2;
  font-weight:800;
  letter-spacing:.04em;
  color:rgba(255,255,255,.88);
  text-align:left;
}

.price-ribbon.blue,
.price-ribbon.green{
  background:linear-gradient(135deg,#1ed473,#08a950);
}

.price-card ul{
  list-style:none;
  padding:34px 44px 18px;
  margin:0;
  flex:1;
}

.price-card li{
  color:var(--muted);
  font-weight:600;
  line-height:1.5;
  margin-bottom:16px;
  position:relative;
  padding-left:26px;
}

.price-card li span{
  position:absolute;
  left:0;
  top:4px;
  width:14px;
  height:14px;
  color:transparent;
  font-size:0;
}

.price-card li span::before{
  content:"";
  position:absolute;
  left:2px;
  top:0;
  width:6px;
  height:11px;
  border-right:2px solid #1bbf82;
  border-bottom:2px solid #1bbf82;
  transform:rotate(45deg);
}

.agreement-link{
  margin:0 34px 22px;
  padding:16px 18px;
  border:1px solid var(--line);
  background:#fff;
}

.agreement-link p{
  margin:0 0 8px;
  color:var(--muted);
  font-size:.9rem;
  line-height:1.45;
  font-weight:650;
}

.agreement-link a{
  color:var(--blue);
  font-size:.92rem;
  font-weight:900;
}

.price-cta{
  display:flex;
  align-items:center;
  justify-content:center;
  width:fit-content;
  margin:18px auto 0;
  background:linear-gradient(135deg,var(--blue),var(--navy));
  color:#fff;
  min-height:48px;
  padding:0 28px;
  border-radius:999px;
  font-weight:800;
  letter-spacing:-0.01em;
}

.raised{
  transform:none;
}

.contact-form{
  padding:34px;
}

.form-row{
  display:grid;
  gap:8px;
  margin-bottom:18px;
}

label{
  color:var(--navy);
  font-weight:700;
}

input,
select,
textarea{
  width:100%;
  border:1px solid var(--line);
  border-radius:16px;
  padding:15px 16px;
  font:inherit;
  color:var(--ink);
  background:#fff;
}

textarea{
  resize:vertical;
}

input:focus,
select:focus,
textarea:focus{
  outline:3px solid rgba(47,127,193,.18);
  border-color:var(--blue);
}

.form-submit{
  width:100%;
  margin-top:6px;
}

.form-status{
  margin:14px 0 0;
  font-weight:700;
}

.hp-field{
  position:absolute;
  left:-9999px;
}

.site-footer{
  background:#071025;
  color:#fff;
  padding:52px 0 24px;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.25fr 1fr 1fr 1fr;
  gap:34px;
}

.footer-logo{
  width:190px;
  background:transparent;
  margin-bottom:18px;
}

.site-footer h3{
  color:#fff;
  font-size:1rem;
  margin-bottom:12px;
  font-weight:800;
}

.site-footer p,
.site-footer a{
  color:rgba(255,255,255,.70);
  line-height:1.7;
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,.12);
  margin-top:34px;
  padding-top:18px;
}

.footer-bottom p{
  font-size:.92rem;
  margin:0;
  color:rgba(255,255,255,.55);
}

@media (max-width: 960px){
  .nav-toggle,
  .menu-toggle{
    display:block;
  }

  .site-nav{
    position:absolute;
    top:104px;
    left:20px;
    right:20px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    background:#fff;
    padding:22px;
    border:1px solid var(--line);
    border-radius:22px;
    box-shadow:var(--shadow);
    margin-left:0;
    gap:18px;
  }

  .site-nav.open{
    display:flex;
  }

  .brand img{
    width:180px;
  }

  .hero-grid,
  .split,
  .contact-grid,
  .card-grid.three,
  .pricing-grid,
  .footer-grid{
    grid-template-columns:1fr;
  }

  .page-hero{
    padding:42px 0 30px;
  }

  .page-hero + .section{
    padding-top:34px;
  }

  .price-card{
    min-height:auto;
  }

  .price-card:hover{
    transform:translateY(-4px);
  }

  .price-card:first-child::before{
    top:-16px;
    right:18px;
  }

  .raised{
    transform:none;
  }

  .hero,
  .section{
    padding:56px 0;
    min-height:auto;
  }

  h1{
    font-size:clamp(2.25rem,11vw,3.75rem);
  }
}

.nav-phone,
.footer-phone,
.contact-phone a{
  display:inline-flex;
  align-items:center;
  gap:7px;
  font-weight:800;
  white-space:nowrap;
}

.nav-phone{
  color:var(--blue);
}

.phone-icon{
  font-size:1rem;
  line-height:1;
}

.contact-phone{
  margin-top:14px;
}

.contact-phone a{
  color:var(--blue);
}

.hours-title{
  margin-top:24px;
}

.hours-list{
  display:grid;
  gap:9px;
  margin:12px 0 0;
}

.hours-list div{
  display:grid;
  grid-template-columns:minmax(92px, .7fr) 1fr;
  gap:14px;
  align-items:baseline;
}

.hours-list dt{
  color:var(--navy);
  font-weight:800;
}

.hours-list dd{
  margin:0;
  color:var(--muted);
}

@media (max-width: 960px){
  .nav-phone{
    justify-content:center;
  }
}




.footer-address{
  display:flex;
  gap:8px;
  align-items:flex-start;
}

.pin-icon{
  line-height:1.45;
}

.footer-link-list{
  display:grid;
  gap:8px;
  list-style:none;
  margin:0;
  padding:0;
}

.footer-link-list li{
  position:relative;
  padding-left:16px;
}

.footer-link-list li::before{
  content:">";
  position:absolute;
  left:0;
  top:0;
  color:var(--blue-mid);
  font-weight:900;
}

.footer-link-list a{
  color:rgba(255,255,255,.70);
}

.footer-link-list a:hover{
  color:#fff;
}


.contact-address{
  display:flex;
  gap:8px;
  align-items:flex-start;
}


/* Footer resource layout */
.nav-phone,
.footer-phone-text,
.contact-phone a{
  display:inline-flex;
  align-items:center;
  gap:7px;
  font-weight:800;
  white-space:nowrap;
}

.nav-phone{
  color:var(--blue);
}

.footer-phone-text{
  margin-top:12px;
  color:rgba(255,255,255,.70);
  line-height:1.7;
}

.footer-grid{
  align-items:start;
}

.footer-hours-row{
  border-top:1px solid rgba(255,255,255,.12);
  margin-top:34px;
  padding-top:24px;
}

.footer-hours-row h3{
  margin-bottom:14px;
}


.social-icons{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:18px;
}


.narrow-page{
  max-width:880px;
}

.page-card{
  padding:34px;
}

.page-card h2 + p,
.page-card p + p,
.page-card p + .btn{
  margin-top:16px;
}

.empty-page{
  min-height:180px;
  display:flex;
  align-items:center;
}


/* Footer map, social logos, and hours table */
.footer-map{
  position:relative;
  display:block;
  min-height:136px;
  border:1px solid rgba(255,255,255,.16);
  border-radius:14px;
  overflow:hidden;
  background:
    linear-gradient(90deg, rgba(255,255,255,.10) 1px, transparent 1px) 0 0/32px 32px,
    linear-gradient(0deg, rgba(255,255,255,.08) 1px, transparent 1px) 0 0/32px 32px,
    linear-gradient(135deg, rgba(103,161,216,.35), rgba(255,255,255,.06));
  box-shadow:0 16px 34px rgba(0,0,0,.16);
}

.footer-map::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(110deg, transparent 0 42%, rgba(255,255,255,.16) 43% 49%, transparent 50%),
    linear-gradient(25deg, transparent 0 58%, rgba(103,161,216,.34) 59% 64%, transparent 65%);
}

.footer-map .map-pin{
  position:absolute;
  left:50%;
  top:38%;
  transform:translate(-50%,-50%);
  width:36px;
  height:36px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:#fff;
  box-shadow:0 8px 20px rgba(0,0,0,.24);
}

.footer-map .map-label{
  position:absolute;
  left:12px;
  right:12px;
  bottom:12px;
  padding:8px 10px;
  border-radius:10px;
  background:rgba(7,16,37,.80);
  color:#fff;
  font-size:.82rem;
  font-weight:800;
  text-align:center;
}

.social-icons{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:18px;
}

.social-icon{
  width:34px;
  height:34px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:#fff;
  box-shadow:0 8px 18px rgba(0,0,0,.12);
}

.social-icon svg{
  width:34px;
  height:34px;
  display:block;
}

.social-icons a.social-icon:hover{
  transform:translateY(-1px);
}

.footer-hours-table{
  width:100%;
  border-collapse:collapse;
  color:rgba(255,255,255,.72);
  font-size:.95rem;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  border-radius:12px;
}

.footer-hours-table tr{
  border-top:1px solid rgba(255,255,255,.10);
}

.footer-hours-table tr:first-child{
  border-top:0;
}

.footer-hours-table th,
.footer-hours-table td{
  padding:10px 12px;
  text-align:left;
  vertical-align:top;
}

.footer-hours-table th{
  width:34%;
  color:#fff;
  font-weight:800;
}

@media (min-width: 760px){
  .footer-hours-table,
  .footer-hours-table tbody{
    display:block;
  }

  .footer-hours-table tbody{
    display:grid;
    grid-template-columns:repeat(7,minmax(0,1fr));
  }

  .footer-hours-table tr{
    display:grid;
    grid-template-rows:auto 1fr;
    border-top:0;
    border-left:1px solid rgba(255,255,255,.10);
  }

  .footer-hours-table tr:first-child{
    border-left:0;
  }

  .footer-hours-table th,
  .footer-hours-table td{
    display:block;
    width:auto;
    padding:8px 10px;
  }
}



.footer-hours-compact{
  font-size:.82rem;
}

.footer-hours-compact th,
.footer-hours-compact td{
  padding:6px 8px;
}

@media (min-width: 760px){
  .footer-hours-compact,
  .footer-hours-compact tbody{
    display:table;
  }

  .footer-hours-compact tbody{
    display:table-row-group;
  }

  .footer-hours-compact tr{
    display:table-row;
    border-top:1px solid rgba(255,255,255,.10);
    border-left:0;
  }

  .footer-hours-compact tr:first-child{
    border-top:0;
  }

  .footer-hours-compact th,
  .footer-hours-compact td{
    display:table-cell;
    width:auto;
    padding:6px 8px;
  }

  .footer-hours-compact th{
    width:36%;
  }
}


.footer-studio-contact{
  margin-top:10px;
}

.footer-studio-social{
  margin-top:14px;
  margin-bottom:0;
}


/* Footer typography unification */
.site-footer,
.site-footer p,
.site-footer a,
.site-footer th,
.site-footer td,
.site-footer li{
  font-family:inherit;
  font-size:.95rem;
  line-height:1.6;
}

.site-footer h3{
  font-family:inherit;
  font-size:1rem;
  line-height:1.3;
  font-weight:800;
  letter-spacing:0;
  margin:0 0 12px;
  color:#fff;
}

.site-footer p,
.site-footer ul,
.site-footer table{
  margin-top:0;
}

.footer-address,
.footer-phone-text,
.footer-link-list a,
.footer-hours-table,
.footer-hours-table th,
.footer-hours-table td{
  color:rgba(255,255,255,.72);
  font-weight:600;
}

.footer-hours-table th{
  color:#fff;
  font-weight:800;
}

.footer-link-list{
  gap:7px;
}

.footer-link-list li{
  line-height:1.6;
}

.footer-phone-text{
  margin-bottom:0;
}

.footer-studio-contact{
  margin-top:8px;
}

.footer-studio-social{
  margin-top:12px;
}

.footer-bottom p{
  font-size:.88rem;
  font-weight:500;
  color:rgba(255,255,255,.55);
}

.footer-map .map-label{
  font-family:inherit;
  font-size:.9rem;
  line-height:1.3;
}


/* Footer column balance and hours shaping */
@media (min-width: 980px){
  .site-footer .footer-grid{
    grid-template-columns:minmax(220px,.95fr) minmax(190px,.85fr) minmax(150px,.65fr) minmax(300px,1.15fr);
    gap:34px;
  }
}

.footer-hours-compact{
  min-width:280px;
}

.footer-hours-compact th,
.footer-hours-compact td{
  line-height:1.35;
}

.footer-hours-compact td{
  white-space:nowrap;
}

.footer-hours-compact th{
  white-space:nowrap;
  padding-right:16px;
}

@media (max-width: 979px){
  .footer-hours-compact{
    min-width:0;
  }
}


/* Modern flat button refresh */
.nav-button,
.nav-cta,
.btn-primary,
.price-cta{
  background:#123a72;
  color:#fff!important;
  border:1px solid rgba(255,255,255,.10);
  border-radius:14px;
  box-shadow:none!important;
  font-weight:800;
  letter-spacing:0;
  transition:background-color .18s ease, border-color .18s ease, transform .18s ease;
}

.nav-button,
.nav-cta{
  padding:11px 18px;
}

.btn-primary,
.price-cta{
  min-height:46px;
  padding:0 24px;
}

.nav-button:hover,
.nav-cta:hover,
.btn-primary:hover,
.price-cta:hover{
  background:#1f6fb1;
  border-color:rgba(255,255,255,.18);
  transform:translateY(-1px);
}

.btn:hover{
  transform:translateY(-1px);
}

.btn-light{
  box-shadow:none!important;
  border-color:#d7e4f2;
}


/* Pricing card shadow cleanup */
.price-card,
.price-card:hover{
  box-shadow:none!important;
  transform:none!important;
}

.price-card:hover{
  border-color:var(--line);
}


/* Home FAQ accordion */
.faq-section{
  background:#fff;
}

.faq-list{
  max-width:900px;
  display:grid;
  gap:12px;
}

.faq-item{
  border:1px solid var(--line);
  border-radius:16px;
  background:#fff;
  overflow:hidden;
}

.faq-item summary{
  list-style:none;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:20px 22px;
  color:var(--navy);
  font-weight:850;
  font-size:1.05rem;
}

.faq-item summary::-webkit-details-marker{
  display:none;
}

.faq-item summary::after{
  content:"+";
  width:28px;
  height:28px;
  flex:0 0 28px;
  display:grid;
  place-items:center;
  border-radius:999px;
  background:#edf6ff;
  color:var(--blue);
  font-size:1.15rem;
  line-height:1;
}

.faq-item[open] summary::after{
  content:"-";
  background:var(--navy);
  color:#fff;
}

.faq-answer{
  padding:0 22px 22px;
  color:var(--muted);
  border-top:1px solid var(--line);
}

.faq-answer p{
  max-width:760px;
  margin-top:16px;
}

@media (max-width: 640px){
  .faq-item summary{
    padding:18px;
    font-size:1rem;
  }

  .faq-answer{
    padding:0 18px 18px;
  }
}


/* FAQ accordion motion */
.faq-answer{
  display:grid;
  grid-template-rows:0fr;
  padding:0 22px;
  border-top:0;
  color:var(--muted);
  opacity:0;
  transition:grid-template-rows .22s ease, opacity .16s ease, padding .22s ease, border-color .22s ease;
}

.faq-answer > p{
  overflow:hidden;
}

.faq-item[open] .faq-answer{
  grid-template-rows:1fr;
  padding:0 22px 22px;
  border-top:1px solid var(--line);
  opacity:1;
}

@media (max-width: 640px){
  .faq-answer{
    padding:0 18px;
  }

  .faq-item[open] .faq-answer{
    padding:0 18px 18px;
  }
}


/* Flat square visual refresh */
:root{
  --radius:0px;
  --shadow:none;
}

*,
*::before,
*::after{
  box-shadow:none!important;
}

button,
input,
textarea,
select,
.nav-button,
.nav-cta,
.btn,
.price-cta,
.card,
.price-card,
.faq-item,
.faq-item summary::after,
.faq-answer,
.hero-panel,
.rich-light,
.contact-card,
.info-card,
.page-card,
.footer-map,
.footer-map .map-pin,
.footer-map .map-label,
.social-icon,
.pill,
.stat-card,
.program-card,
.trial-card{
  border-radius:0!important;
}

.faq-list{
  gap:10px;
}

.faq-item,
.faq-item summary,
.faq-answer{
  background:#f3f5f8!important;
}

.faq-item{
  border-color:#d9e1ea;
}

.faq-item[open] .faq-answer{
  border-top-color:#d9e1ea;
}

.faq-item summary::after{
  background:#e3e8ef;
  color:var(--navy);
}

.faq-item[open] summary::after{
  background:#d7dee8;
  color:var(--navy);
}

.card,
.price-card,
.contact-card,
.info-card,
.page-card,
.rich-light,
.program-card,
.trial-card{
  background:#f6f8fb;
  border-color:#d9e1ea;
}

.nav-button,
.nav-cta,
.btn-primary,
.price-cta{
  border-radius:0!important;
}


/* Fix readable text on dark blue feature band */
.section-blue .rich-light{
  background:transparent!important;
  border:1px solid rgba(255,255,255,.22)!important;
  color:rgba(255,255,255,.88)!important;
}

.section-blue .rich-light p,
.section-blue .rich-light li,
.section-blue .rich-light a{
  color:rgba(255,255,255,.88)!important;
}


/* Clean dark feature text panel */
.section-blue .rich-light{
  background:transparent!important;
  border:0!important;
  padding-left:0!important;
  padding-right:0!important;
  color:rgba(255,255,255,.9)!important;
}

.section-blue .rich-light p,
.section-blue .rich-light li,
.section-blue .rich-light a{
  color:rgba(255,255,255,.9)!important;
}


/* Larger footer map thumbnail */
.footer-map{
  min-height:176px!important;
  width:100%;
}

.site-footer .footer-grid > div:first-child{
  align-self:stretch;
}

.footer-map .map-label{
  left:10px;
  right:10px;
  bottom:10px;
  padding:10px 12px;
  font-size:.95rem;
}

.footer-map .map-pin{
  top:42%;
  width:42px;
  height:42px;
}

@media (min-width: 980px){
  .site-footer .footer-grid{
    grid-template-columns:minmax(280px,1.05fr) minmax(190px,.78fr) minmax(150px,.62fr) minmax(300px,1.1fr);
  }
}

@media (max-width: 640px){
  .footer-map{
    min-height:150px!important;
  }
}


/* Footer bottom contact line */
.footer-legal-line{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  flex-wrap:nowrap;
  text-align:center;
  white-space:nowrap;
  width:100%;
}

.footer-dot{
  width:5px;
  height:5px;
  flex:0 0 5px;
  border-radius:50%!important;
  background:rgba(255,255,255,.45);
}

@media (max-width: 760px){
  .footer-legal-line{
    white-space:normal;
    flex-wrap:wrap;
    row-gap:6px;
  }
}


/* Stronger FAQ answer state */
.faq-item[open] summary{
  background:#eef2f7!important;
  border-bottom:1px solid #d2dae5;
}

.faq-item[open] .faq-answer{
  background:#dfe5ed!important;
  border-top:0;
}

.faq-item[open] .faq-answer p{
  color:#172033;
  font-weight:650;
}

.faq-item[open]{
  border-color:#c8d2df;
}


/* Inverted FAQ contrast: darker questions, lighter answers */
.faq-item,
.faq-item summary{
  background:#e1e7ef!important;
}

.faq-item summary{
  color:#071429;
}

.faq-item[open] summary{
  background:#d6dee9!important;
  border-bottom:1px solid #c7d1de;
}

.faq-item[open] .faq-answer{
  background:#f7f9fc!important;
  border-top:0;
}

.faq-item[open] .faq-answer p{
  color:#4f5f75;
  font-weight:600;
}

.faq-item summary::after{
  background:#cdd7e4;
  color:#071429;
}

.faq-item[open] summary::after{
  background:#eef2f7;
  color:#071429;
}


/* Donate page */
.donate-layout{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(340px,460px);
  gap:48px;
  align-items:start;
}

.donate-copy h2{
  margin-bottom:18px;
}

.donate-copy p + p{
  margin-top:16px;
}

.donate-box{
  border:1px solid #d9e1ea;
  background:#fff;
  color:var(--navy);
}

.donate-box-header{
  display:flex;
  align-items:center;
  gap:12px;
  padding:18px 22px;
  border-bottom:1px solid #e2e7ee;
  background:#f4f6f9;
  font-weight:800;
}

.donate-avatar{
  width:30px;
  height:30px;
  display:grid;
  place-items:center;
  background:#e4edf8;
  color:var(--blue);
  font-weight:900;
}

.donate-box-body{
  padding:28px 34px 34px;
  text-align:center;
}

.donate-to{
  margin:0;
  font-weight:800;
  color:#284263;
}

.donate-box h3{
  margin:4px 0 12px;
  font-size:1.7rem;
}

.donate-summary{
  max-width:360px;
  margin:0 auto 22px;
  color:#41536b;
  font-weight:650;
  line-height:1.5;
}

.donate-tabs{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  margin:0 auto 28px;
  background:#e9e6e2;
  color:#4b5668;
  font-size:.9rem;
  font-weight:800;
}

.donate-tabs span{
  padding:10px 8px;
}

.donate-tabs .active{
  background:#fff;
  color:#0b3d91;
  border:2px solid #ede8e1;
}

.donate-amounts{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:10px;
  margin-bottom:26px;
}

.donate-amounts a{
  display:flex;
  min-height:58px;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  border:1px solid #d9e1ea;
  background:#fff;
  color:var(--navy);
  font-weight:800;
}

.donate-amounts a.featured{
  border-color:#0b3d91;
  background:#eef4ff;
}

.donate-amounts span{
  color:#54657b;
  font-size:.75rem;
  font-weight:700;
}

.donate-next{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  background:#083b93;
  color:#fff;
  font-weight:900;
  border:1px solid #083b93;
}

.donate-next:hover{
  background:#0f54bd;
  color:#fff;
}

.donate-note{
  margin-top:12px;
  color:#69778a;
  font-size:.88rem;
}

@media (max-width: 860px){
  .donate-layout{
    grid-template-columns:1fr;
  }

  .donate-box-body{
    padding:24px 20px 28px;
  }
}

@media (max-width: 480px){
  .donate-amounts{
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width: 480px){
  .price-ribbon{
    gap:10px;
  }

  .price-amount{
    font-size:2.25rem;
  }

  .price-period{
    max-width:88px;
    font-size:.68rem;
  }
}


/* Official PayPal donate panel */
.paypal-donate-panel{
  border:1px solid #d9e1ea;
  background:#f6f8fb;
  padding:34px;
  text-align:center;
}

.paypal-donate-panel h3{
  font-size:1.6rem;
  margin-bottom:10px;
}

.paypal-donate-panel p{
  color:#4f5f75;
}

.paypal-donate-form{
  margin-top:24px;
}

.paypal-donate-button{
  width:100%;
  min-height:54px;
  border:1px solid #003087;
  background:#003087;
  color:#fff;
  font-weight:900;
  cursor:pointer;
}

.paypal-donate-button:hover{
  background:#0b55c7;
}

.paypal-direct-link{
  display:inline-block;
  margin-top:16px;
  font-weight:800;
  color:var(--blue);
}


/* Mac/Chrome layout stabilization */
.site-header{
  min-height:78px;
}

.nav-wrap,
.header-inner{
  min-height:78px;
  gap:28px;
}

.brand img{
  width:156px;
  max-height:72px;
  object-fit:contain;
}

.site-nav{
  gap:20px;
  margin-left:28px;
  font-size:.86rem;
  line-height:1.05;
}

.nav-button,
.nav-cta{
  padding:10px 17px;
  min-height:46px;
  display:inline-flex;
  align-items:center;
}

.hero{
  min-height:610px;
  padding:54px 0;
}

.hero-grid{
  grid-template-columns:minmax(0,1fr) minmax(380px,.86fr);
  gap:72px;
}

.hero-copy{
  max-width:610px;
}

.hero h1{
  font-size:clamp(2.75rem,4vw,4rem);
  line-height:1.04;
  letter-spacing:-.045em;
}

.hero .lead{
  max-width:610px;
  font-size:1.02rem;
  line-height:1.72;
}

.hero-panel{
  min-height:360px;
  padding:40px;
}

.hero-panel h2{
  font-size:clamp(2rem,2.8vw,2.85rem);
  line-height:1.08;
}

.site-footer .footer-grid{
  align-items:start;
}

.site-footer .social-icons,
.site-footer .footer-studio-social{
  display:flex!important;
  flex-direction:row!important;
  align-items:center!important;
  justify-content:flex-start!important;
  gap:10px!important;
  width:auto!important;
  max-width:150px!important;
}

.site-footer .social-icon{
  width:34px!important;
  height:34px!important;
  min-width:34px!important;
  max-width:34px!important;
  flex:0 0 34px!important;
  overflow:hidden!important;
  padding:0!important;
  line-height:1!important;
  background:transparent!important;
  border:0!important;
}

.site-footer .social-icon svg{
  width:34px!important;
  height:34px!important;
  min-width:34px!important;
  max-width:34px!important;
  display:block!important;
  flex:0 0 34px!important;
}

@media (min-width: 1180px){
  .container{
    width:min(1128px,calc(100% - 64px));
  }
}

@media (max-width: 1120px){
  .site-nav{
    gap:14px;
    margin-left:14px;
    font-size:.82rem;
  }

  .brand img{
    width:142px;
  }
}

@media (max-width: 960px){
  .nav-wrap,
  .header-inner{
    min-height:78px;
  }

  .site-nav{
    top:78px;
  }

  .brand img{
    width:142px;
    max-height:66px;
  }

  .hero{
    padding:46px 0;
  }

  .hero-grid{
    grid-template-columns:1fr;
    gap:32px;
  }

  .hero h1{
    font-size:clamp(2.35rem,10vw,3.45rem);
  }
}

.hero .button-row,
.hero .pill-row{
  display:none;
}

.recital-video-section{
  background:#fff;
}

.recital-video-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:22px;
}

.recital-video-card{
  display:block;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:0 16px 42px rgba(17,28,69,.08);
  overflow:hidden;
  transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease;
}

.recital-video-card:hover{
  transform:translateY(-3px);
  border-color:rgba(47,127,193,.38);
  box-shadow:0 22px 56px rgba(17,28,69,.13);
}

.recital-thumb{
  position:relative;
  display:block;
  aspect-ratio:16/9;
  background:var(--navy);
  overflow:hidden;
}

.recital-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .25s ease;
}

.recital-video-card:hover .recital-thumb img{
  transform:scale(1.04);
}

.recital-thumb:after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(15,29,70,.05),rgba(15,29,70,.32));
}

.play-mark{
  position:absolute;
  left:50%;
  top:50%;
  z-index:1;
  width:58px;
  height:58px;
  border-radius:999px;
  background:rgba(255,255,255,.92);
  transform:translate(-50%,-50%);
  box-shadow:0 14px 34px rgba(15,29,70,.24);
}

.play-mark:after{
  content:"";
  position:absolute;
  left:23px;
  top:18px;
  border-left:18px solid var(--blue);
  border-top:11px solid transparent;
  border-bottom:11px solid transparent;
}

.recital-date{
  display:block;
  padding:18px 20px;
  color:var(--navy);
  font-weight:800;
  font-size:1rem;
  letter-spacing:0;
}

@media (max-width: 960px){
  .recital-video-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media (max-width: 640px){
  .recital-video-grid{
    grid-template-columns:1fr;
  }
}

/* Group class level cards */
.group-level-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:28px;
  align-items:stretch;
}

.group-level-card{
  display:flex;
  flex-direction:column;
  gap:20px;
  padding:34px;
  background:#fff;
}

.level-card-head{
  border-bottom:1px solid var(--line);
  padding-bottom:16px;
}

.level-card-head .eyebrow{
  margin-bottom:8px;
}

.level-card-head h3{
  margin-bottom:0;
  font-size:1.55rem;
}

.level-details{
  display:grid;
  gap:0;
  margin:0;
  border:1px solid var(--line);
}

.level-details div{
  display:grid;
  grid-template-columns:130px 1fr;
  gap:16px;
  padding:13px 16px;
  border-top:1px solid var(--line);
}

.level-details div:first-child{
  border-top:0;
}

.level-details dt{
  color:var(--navy);
  font-weight:850;
}

.level-details dd{
  margin:0;
  color:var(--muted);
  font-weight:650;
}

.tuition-placeholder{
  margin-top:auto;
  display:grid;
  gap:6px;
  padding:18px;
  border:1px solid #bfd4ea;
  background:linear-gradient(135deg,#f8fbff,#eef7ff);
}

.tuition-label{
  color:var(--blue);
  font-size:.78rem;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.tuition-price{
  color:var(--navy);
  font-size:1.55rem;
  line-height:1.15;
  font-weight:900;
}

.tuition-note{
  color:var(--muted);
  font-size:.92rem;
  font-weight:700;
}

@media (max-width: 760px){
  .group-level-grid{
    grid-template-columns:1fr;
  }

  .group-level-card{
    padding:26px;
  }

  .level-details div{
    grid-template-columns:1fr;
    gap:4px;
  }
}


/* Compact group classes intro */
.group-intro{
  padding:54px 0 50px;
}

.group-intro h1{
  max-width:900px;
  margin-left:auto;
  margin-right:auto;
  margin-bottom:18px;
}

.group-intro .lead{
  max-width:900px;
  margin-left:auto;
  margin-right:auto;
  margin-bottom:12px;
}

.group-room-photo{
  display:block;
  width:min(760px,100%);
  height:auto;
  margin:28px auto 0;
  border:1px solid var(--line);
  object-fit:cover;
}

@media (max-width: 960px){
  .group-intro{
    padding:40px 0 36px;
  }
}


/* Homepage hero carousel */
.hero-carousel{
  position:relative;
  min-height:390px;
  background:var(--navy);
  color:#fff;
  padding:42px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.hero-carousel::after{
  content:"";
  position:absolute;
  right:-80px;
  bottom:-90px;
  width:220px;
  height:220px;
  border-radius:50%!important;
  background:rgba(120,174,224,.22);
}

.hero-slide{
  display:none;
  position:relative;
  z-index:1;
}

.hero-slide.active{
  display:block;
}

.slide-kicker{
  margin:0 0 16px;
  color:#9fd0ff;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-size:.78rem;
}

.hero-slide h2{
  color:#fff;
  font-size:clamp(2rem,2.75vw,2.85rem);
  line-height:1.08;
  letter-spacing:-.035em;
  margin-bottom:18px;
}

.hero-slide p:not(.slide-kicker){
  color:rgba(255,255,255,.82);
  font-size:1.05rem;
  line-height:1.65;
  max-width:470px;
}

.hero-slide a{
  display:inline-flex;
  margin-top:16px;
  color:#9fd0ff;
  font-weight:900;
}

.hero-carousel-dots{
  position:relative;
  z-index:2;
  display:flex;
  gap:9px;
  margin-top:30px;
}

.hero-carousel-dots button{
  width:34px;
  height:4px;
  border:0;
  padding:0;
  background:rgba(255,255,255,.34);
  cursor:pointer;
}

.hero-carousel-dots button.active{
  background:#9fd0ff;
}


/* Donation panel polish */
.paypal-donate-panel{
  background:#eef2f7!important;
  border:1px solid #cfd8e5;
  padding:40px 36px;
}

.paypal-donate-panel::before{
  content:"$260 = one month of lessons";
  display:inline-block;
  margin-bottom:18px;
  padding:8px 12px;
  border:1px solid #c4cfdd;
  background:#fff;
  color:#123a72;
  font-size:.82rem;
  font-weight:900;
  letter-spacing:.04em;
  text-transform:uppercase;
}

.paypal-donate-panel h3{
  margin-bottom:12px;
  color:var(--navy);
}

.paypal-donate-button{
  margin-top:4px;
  background:#123a72;
  border-color:#123a72;
}

.paypal-direct-link{
  color:#123a72;
}


/* Normal about page text layout */
.about-text{
  max-width:1120px;
}

.about-text h2{
  margin-top:34px;
  margin-bottom:12px;
  font-size:clamp(1.7rem,3vw,2.35rem);
}

.about-text h2:first-child{
  margin-top:0;
}

.about-text p{
  color:var(--muted);
  line-height:1.75;
  margin-top:12px;
}

.about-text .btn{
  margin-top:28px;
}

.about-story-section{
  padding-bottom:18px;
}

.about-story-section + .about-text-section{
  padding-top:18px;
}


/* Wider about page reading area */
.about-text{
  max-width:1120px!important;
}

.about-text p{
  max-width:980px;
}


/* Final Mac/Chrome guardrails: keep global page polish from breaking core layout. */
.site-header{
  min-height:78px;
}

.nav-wrap,
.header-inner{
  min-height:78px;
  gap:28px;
}

.brand img{
  width:156px;
  max-height:72px;
  object-fit:contain;
}

.site-nav{
  gap:20px;
  margin-left:28px;
  font-size:.86rem;
  line-height:1.05;
}

.hero{
  min-height:610px;
  padding:54px 0;
}

.hero-grid{
  grid-template-columns:minmax(0,1fr) minmax(380px,.86fr);
  gap:72px;
}

.hero-copy{
  max-width:610px;
}

.hero h1{
  font-size:clamp(2.75rem,4vw,4rem);
  line-height:1.04;
  letter-spacing:-.045em;
}

.hero .lead{
  max-width:610px;
  font-size:1.02rem;
  line-height:1.72;
}

.hero-panel{
  min-height:360px;
  padding:40px;
}

.hero-panel h2{
  font-size:clamp(2rem,2.8vw,2.85rem);
  line-height:1.08;
}

.site-footer .social-icons,
.site-footer .footer-studio-social{
  display:flex!important;
  flex-direction:row!important;
  align-items:center!important;
  justify-content:flex-start!important;
  gap:10px!important;
  width:auto!important;
  max-width:150px!important;
}

.site-footer .social-icon{
  width:34px!important;
  height:34px!important;
  min-width:34px!important;
  max-width:34px!important;
  flex:0 0 34px!important;
  overflow:hidden!important;
  padding:0!important;
  line-height:1!important;
}

.site-footer .social-icon svg{
  width:34px!important;
  height:34px!important;
  min-width:34px!important;
  max-width:34px!important;
  display:block!important;
  flex:0 0 34px!important;
}

@media (min-width: 1180px){
  .container{
    width:min(1128px,calc(100% - 64px));
  }
}

@media (max-width: 1120px){
  .site-nav{
    gap:14px;
    margin-left:14px;
    font-size:.82rem;
  }

  .brand img{
    width:142px;
  }
}

@media (max-width: 960px){
  .nav-wrap,
  .header-inner{
    min-height:78px;
  }

  .site-nav{
    top:78px;
  }

  .brand img{
    width:142px;
    max-height:66px;
  }

  .hero{
    padding:46px 0;
  }

  .hero-grid{
    grid-template-columns:1fr;
    gap:32px;
  }

  .hero h1{
    font-size:clamp(2.35rem,10vw,3.45rem);
  }
}
