/* =====================================================================
   PIROUETTE — Premium Multi-Page Dance Academy Template
   Plain HTML5 + CSS3. No frameworks, no build step.
   ---------------------------------------------------------------------
   REBRAND TIP: Change the look by editing the CSS variables in :root
   below. Everything (colors, radius, shadows, fonts) cascades from here.
   Update the Google Fonts <link> in each HTML file if you change fonts.
   ===================================================================== */

:root {
  /* --- Brand palette (edit these to rebrand) --- */
  --bg:        #fdf8f4;   /* warm cream page background        */
  --ink:       #2a1a1f;   /* deep aubergine-charcoal (text)    */
  --burgundy:  #7b2d3b;   /* deep burgundy (primary)           */
  --burgundy-d:#601f2c;   /* darker burgundy for hovers        */
  --blush:     #e6a4ad;   /* soft blush                        */
  --blush-d:   #d97e8c;   /* deeper blush                      */
  --gold:      #c39a5b;   /* warm antique gold accent          */
  --cream:     #f6ede4;   /* cream surface                     */
  --muted:     #8a6f73;   /* muted mauve text                  */
  --surface:   #ffffff;   /* card / surface white              */
  --line:      #ecdfd6;   /* warm hairline borders             */

  /* --- Fonts --- */
  --font-head: 'Cormorant Garamond', 'Fraunces', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* --- Shape & motion --- */
  --radius:    18px;
  --radius-sm: 12px;
  --radius-lg: 28px;
  --shadow:    0 14px 34px rgba(42, 26, 31, .08);
  --shadow-lg: 0 28px 60px rgba(42, 26, 31, .16);
  --shadow-c:  0 12px 28px rgba(123, 45, 59, .26);
  --ease:      .35s cubic-bezier(.33, 1, .5, 1);

  /* --- Layout --- */
  --maxw: 1180px;
  --gutter: 24px;
}

/* ---------------------------------------------------------------------
   RESET / BASE
   --------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: #50403f;
  background: var(--bg);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.08;
  margin: 0 0 .5em;
  font-weight: 600;
  letter-spacing: -.005em;
}

h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); font-weight: 500; }
h2 { font-size: clamp(2rem, 4.2vw, 3rem); font-weight: 500; }
h3 { font-size: 1.5rem; }

p { margin: 0 0 1rem; }

a { color: var(--burgundy); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--blush-d); }

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

ul { margin: 0; padding: 0; list-style: none; }

/* ---------------------------------------------------------------------
   LAYOUT HELPERS
   --------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section { padding: 96px 0; position: relative; }
.section--soft { background: linear-gradient(180deg, #fff 0%, #f9ede6 100%); }
.section--cream { background: var(--cream); }
.section--dark {
  background:
    radial-gradient(600px 420px at 84% -10%, rgba(195, 154, 91, .18), transparent 60%),
    linear-gradient(160deg, #3a1c24, #20121a);
  color: rgba(255, 255, 255, .82);
}
.section--dark h2, .section--dark h3 { color: #fff; }
.section--tight { padding: 68px 0; }

.section-head {
  max-width: 720px;
  margin: 0 auto 60px;
  text-align: center;
}
.section-head--left { margin-left: 0; text-align: left; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--burgundy);
  background: rgba(123, 45, 59, .08);
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.eyebrow.is-blush { color: var(--blush-d); background: rgba(217, 126, 140, .14); }
.eyebrow.is-gold  { color: var(--gold);   background: rgba(195, 154, 91, .16); }
.eyebrow.is-light { color: var(--gold);   background: rgba(195, 154, 91, .2); }

.lead { font-size: 1.16rem; color: #5e4c4c; }
.section--dark .lead { color: rgba(255,255,255,.78); }
.muted { color: var(--muted); }

/* ---------------------------------------------------------------------
   BUTTONS
   --------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .02em;
  padding: 14px 30px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease), color var(--ease), border-color var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); }

.btn-primary {
  background: var(--burgundy);
  color: #fff;
  box-shadow: var(--shadow-c);
}
.btn-primary:hover { background: var(--burgundy-d); color: #fff; box-shadow: 0 16px 34px rgba(123, 45, 59, .4); }

.btn-blush {
  background: var(--blush);
  color: var(--burgundy-d);
  box-shadow: 0 12px 28px rgba(217, 126, 140, .32);
}
.btn-blush:hover { background: var(--blush-d); color: #fff; }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--burgundy); color: var(--burgundy); }

.btn-gold {
  background: var(--gold);
  color: #2a1a1f;
  box-shadow: 0 12px 28px rgba(195, 154, 91, .3);
}
.btn-gold:hover { background: #b1873f; color: #fff; }

.btn-light {
  background: rgba(255,255,255,.12);
  color: #fff;
  border-color: rgba(255,255,255,.45);
}
.btn-light:hover { background: #fff; color: var(--burgundy); }

/* ---------------------------------------------------------------------
   HEADER / NAV  (shared, identical IDs on every page)
   --------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 248, 244, .88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.6rem;
  color: var(--ink);
  letter-spacing: .01em;
}
.brand:hover { color: var(--ink); }
.brand .logo-mark {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--burgundy), var(--blush-d));
  display: grid; place-items: center;
  font-size: 1.2rem;
  color: #fff;
  box-shadow: 0 8px 18px rgba(123, 45, 59, .35);
  transition: transform var(--ease);
}
.brand:hover .logo-mark { transform: rotate(-12deg) scale(1.05); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .98rem;
  color: #5a4a4a;
  padding: 8px 16px;
  border-radius: 10px;
  transition: background var(--ease), color var(--ease);
}
.nav-links a:hover { background: rgba(123, 45, 59, .08); color: var(--burgundy); }
.nav-links a.active { color: var(--burgundy); font-weight: 600; background: rgba(123, 45, 59, .1); }

.nav-cta { margin-left: 8px; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px; height: 46px;
  background: rgba(123, 45, 59, .08);
  border: none;
  border-radius: 12px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px; height: 2px;
  margin: 0 auto;
  background: var(--burgundy);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------------------------------------------------------------------
   HERO (home)
   --------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(720px 480px at 90% -10%, rgba(195, 154, 91, .16), transparent 62%),
    radial-gradient(620px 460px at 0% 110%, rgba(217, 126, 140, .16), transparent 58%),
    linear-gradient(180deg, #fdf8f4 0%, #f7e9e2 100%);
  padding: 88px 0 96px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero h1 { margin-bottom: 20px; }
.hero h1 em { font-style: italic; color: var(--burgundy); }
.hero .lead { max-width: 520px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 34px; }
.hero-badges { display: flex; gap: 30px; flex-wrap: wrap; align-items: center; }
.hero-badges .hb b {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 600;
  color: var(--burgundy);
  line-height: 1;
}
.hero-badges .hb span { font-size: .9rem; color: var(--muted); }

/* Hero visual — layered photo collage */
.hero-visual { position: relative; }
.hero-visual .hv-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  position: relative;
}
.hero-visual .hv-main img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual .hv-badge {
  position: absolute;
  bottom: 22px; left: -20px;
  background: var(--surface);
  border-radius: 16px;
  padding: 14px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
}
.hero-visual .hv-badge .stars { color: var(--gold); letter-spacing: 1px; font-size: .95rem; }
.hero-visual .hv-badge b { font-family: var(--font-head); font-size: 1.4rem; color: var(--ink); display: block; line-height: 1; }
.hero-visual .hv-badge small { color: var(--muted); font-size: .82rem; }
.hero-visual .hv-pill {
  position: absolute;
  top: 24px; right: -18px;
  background: var(--burgundy);
  color: #fff;
  border-radius: 999px;
  padding: 10px 20px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .03em;
  box-shadow: var(--shadow-c);
  z-index: 3;
}

/* ---------------------------------------------------------------------
   TRUST STRIP
   --------------------------------------------------------------------- */
.trust-strip {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 40px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.trust-grid .ts { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.trust-grid .ts strong {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.6vw, 2.7rem);
  font-weight: 600;
  color: var(--burgundy);
  line-height: 1;
}
.trust-grid .ts span { color: var(--muted); font-size: .94rem; letter-spacing: .02em; }

/* ---------------------------------------------------------------------
   CARDS / GRIDS
   --------------------------------------------------------------------- */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
  position: relative;
}
.card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); border-color: rgba(123, 45, 59, .25); }
.card .icon {
  width: 58px; height: 58px;
  border-radius: 16px;
  background: rgba(123, 45, 59, .08);
  display: grid; place-items: center;
  font-size: 1.7rem;
  margin-bottom: 20px;
  transition: transform var(--ease);
}
.card:hover .icon { transform: scale(1.08); }
.card .icon.is-blush { background: rgba(217, 126, 140, .16); }
.card .icon.is-gold  { background: rgba(195, 154, 91, .18); }
.card h3 { margin-bottom: 8px; }
.card p { color: #5e4c4c; margin-bottom: 0; }

/* ---------------------------------------------------------------------
   CLASS / STYLE CARDS (with photos)
   --------------------------------------------------------------------- */
.style-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform var(--ease), box-shadow var(--ease);
  display: flex;
  flex-direction: column;
}
.style-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }
.style-media {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}
.style-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.style-card:hover .style-media img { transform: scale(1.06); }
.style-media .level-pill {
  position: absolute; top: 14px; left: 14px;
  font-family: var(--font-body); font-weight: 600; font-size: .76rem;
  letter-spacing: .04em;
  background: rgba(255,255,255,.92); color: var(--burgundy);
  padding: 6px 14px; border-radius: 999px;
  backdrop-filter: blur(4px);
}
.style-body { padding: 24px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.style-body h3 { margin-bottom: 6px; }
.style-body > p { color: #5e4c4c; font-size: .98rem; }
.style-meta {
  display: flex; flex-wrap: wrap; gap: 8px 18px;
  margin: 4px 0 18px;
  font-size: .88rem;
  color: var(--muted);
  font-weight: 500;
}
.style-meta span { display: inline-flex; align-items: center; gap: 6px; }
.style-meta span b { color: var(--burgundy); font-weight: 600; }
.style-body .btn { margin-top: auto; align-self: flex-start; }

/* Filter bar */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 48px;
}
.filter-btn {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: .02em;
  color: #5a4a4a;
  background: var(--surface);
  border: 1.5px solid var(--line);
  padding: 10px 22px;
  border-radius: 999px;
  cursor: pointer;
  transition: all var(--ease);
}
.filter-btn:hover { border-color: var(--burgundy); color: var(--burgundy); transform: translateY(-2px); }
.filter-btn.active { background: var(--burgundy); border-color: var(--burgundy); color: #fff; }

/* ---------------------------------------------------------------------
   FEATURE LIST / SPLIT
   --------------------------------------------------------------------- */
.feature { display: flex; gap: 16px; align-items: flex-start; }
.feature .tick {
  flex: 0 0 auto;
  width: 46px; height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--burgundy), var(--blush-d));
  color: #fff;
  display: grid; place-items: center;
  font-size: 1.3rem;
}
.feature h3 { font-size: 1.25rem; margin-bottom: 4px; }
.feature p { margin-bottom: 0; font-size: .98rem; color: #5e4c4c; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split--reverse .split-media { order: 2; }
.split-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  aspect-ratio: 5 / 6;
}
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-media .sm-tag {
  position: absolute;
  bottom: 20px; left: 20px; right: 20px;
  background: rgba(42, 26, 31, .58);
  backdrop-filter: blur(6px);
  color: #fff;
  border-radius: 14px;
  padding: 14px 18px;
}
.split-media .sm-tag b { font-family: var(--font-head); font-size: 1.3rem; display: block; }
.split-media .sm-tag span { font-size: .86rem; color: rgba(255,255,255,.82); }

/* ---------------------------------------------------------------------
   FACULTY / TEAM (with photos)
   --------------------------------------------------------------------- */
.team-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  text-align: center;
  transition: transform var(--ease), box-shadow var(--ease);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-photo {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card .team-body { padding: 22px 20px 26px; }
.team-card h3 { font-size: 1.3rem; margin-bottom: 2px; }
.team-card .role {
  color: var(--blush-d);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.team-card p { font-size: .94rem; color: var(--muted); margin-bottom: 0; }

/* ---------------------------------------------------------------------
   GALLERY
   --------------------------------------------------------------------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
}
.gallery figure {
  margin: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
}
.gallery figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.gallery figure:hover img { transform: scale(1.07); }
.gallery .g-tall { grid-row: span 2; }
.gallery .g-wide { grid-column: span 2; }

/* ---------------------------------------------------------------------
   SCHEDULE
   --------------------------------------------------------------------- */
.schedule-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.schedule-table th, .schedule-table td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}
.schedule-table thead th {
  background: var(--burgundy);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.schedule-table tbody tr:last-child td { border-bottom: none; }
.schedule-table tbody tr:hover { background: #faf2ee; }
.schedule-table .s-time { font-weight: 600; color: var(--burgundy); white-space: nowrap; }
.schedule-table .s-style b { font-family: var(--font-head); font-size: 1.15rem; color: var(--ink); display: block; }
.schedule-table .s-style span { font-size: .84rem; color: var(--muted); }
.schedule-table .s-level {
  display: inline-block;
  font-size: .76rem; font-weight: 600;
  padding: 4px 12px; border-radius: 999px;
  background: rgba(123, 45, 59, .08); color: var(--burgundy);
}
.schedule-table .s-level.beginner    { background: rgba(195, 154, 91, .18); color: #936b2a; }
.schedule-table .s-level.intermediate{ background: rgba(217, 126, 140, .16); color: var(--blush-d); }
.schedule-table .s-level.advanced    { background: rgba(123, 45, 59, .12); color: var(--burgundy); }
.schedule-table .s-room { color: var(--muted); font-size: .9rem; }

/* Day tabs for schedule filter */
.day-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 40px;
}
.day-tab {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .9rem;
  color: #5a4a4a;
  background: var(--surface);
  border: 1.5px solid var(--line);
  padding: 9px 20px;
  border-radius: 999px;
  cursor: pointer;
  transition: all var(--ease);
}
.day-tab:hover { border-color: var(--burgundy); color: var(--burgundy); }
.day-tab.active { background: var(--burgundy); border-color: var(--burgundy); color: #fff; }

.join-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.join-card .jc-num {
  flex: 0 0 auto;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--burgundy), var(--blush-d));
  color: #fff;
  font-family: var(--font-head);
  font-weight: 600; font-size: 1.3rem;
  display: grid; place-items: center;
}
.join-card h3 { font-size: 1.2rem; margin-bottom: 4px; }
.join-card p { margin: 0; font-size: .95rem; color: #5e4c4c; }

/* ---------------------------------------------------------------------
   TESTIMONIALS
   --------------------------------------------------------------------- */
.quote-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 32px;
  box-shadow: var(--shadow);
  position: relative;
}
.quote-card .stars { color: var(--gold); margin-bottom: 14px; letter-spacing: 2px; }
.quote-card blockquote {
  margin: 0 0 22px;
  font-size: 1.18rem;
  color: var(--ink);
  font-family: var(--font-head);
  font-style: italic;
  line-height: 1.45;
}
.quote-author { display: flex; align-items: center; gap: 14px; }
.quote-author img {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--line);
}
.quote-author b { display: block; font-family: var(--font-head); font-size: 1.15rem; color: var(--ink); }
.quote-author span { font-size: .86rem; color: var(--muted); }

/* ---------------------------------------------------------------------
   CTA BAND
   --------------------------------------------------------------------- */
.cta-band {
  background:
    radial-gradient(560px 380px at 86% 16%, rgba(195, 154, 91, .26), transparent 60%),
    linear-gradient(135deg, var(--burgundy), var(--burgundy-d));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 64px 52px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.86); max-width: 560px; margin: 0 auto 30px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Free-trial band (home) */
.trial-band {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 14px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 10px;
  align-items: stretch;
  overflow: hidden;
}
.trial-band .tb-media {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 280px;
}
.trial-band .tb-media img { width: 100%; height: 100%; object-fit: cover; }
.trial-band .tb-copy { padding: 34px 36px; display: flex; flex-direction: column; justify-content: center; }
.trial-band .tb-copy h2 { margin-bottom: 12px; }
.trial-band .tb-copy p { color: #5e4c4c; }

/* ---------------------------------------------------------------------
   PAGE BANNER (inner pages)
   --------------------------------------------------------------------- */
.page-banner {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(620px 360px at 86% -20%, rgba(195, 154, 91, .16), transparent 60%),
    radial-gradient(420px 320px at 6% 120%, rgba(217, 126, 140, .14), transparent 60%),
    linear-gradient(180deg, #f7e9e2, #fdf8f4);
  padding: 70px 0 64px;
  border-bottom: 1px solid var(--line);
}
.page-banner h1 { margin-bottom: 12px; position: relative; z-index: 1; }
.page-banner p { max-width: 640px; color: #5e4c4c; margin-bottom: 0; position: relative; z-index: 1; }
.breadcrumb {
  font-family: var(--font-body);
  font-size: .84rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--muted);
  margin-bottom: 18px;
  position: relative; z-index: 1;
}
.breadcrumb a { color: var(--burgundy); }
.breadcrumb span { margin: 0 8px; }

/* ---------------------------------------------------------------------
   FAQ (accordion)
   --------------------------------------------------------------------- */
.faq { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 20px 24px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-q .chev { transition: transform var(--ease); color: var(--burgundy); flex: 0 0 auto; font-size: 1.4rem; }
.faq-item.open .faq-q .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height var(--ease), padding var(--ease); padding: 0 24px; }
.faq-item.open .faq-a { max-height: 360px; padding: 0 24px 22px; }
.faq-a p { margin: 0; color: #5e4c4c; font-size: .98rem; }

/* ---------------------------------------------------------------------
   STUDIOS / FACILITIES
   --------------------------------------------------------------------- */
.studio-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--ease), box-shadow var(--ease);
}
.studio-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.studio-card .studio-media { aspect-ratio: 3 / 2; overflow: hidden; }
.studio-card .studio-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.studio-card:hover .studio-media img { transform: scale(1.05); }
.studio-card .studio-body { padding: 22px 24px 26px; }
.studio-card h3 { font-size: 1.25rem; margin-bottom: 6px; }
.studio-card p { font-size: .94rem; color: var(--muted); margin: 0; }

/* ---------------------------------------------------------------------
   CONTACT
   --------------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: start; }
.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px;
  box-shadow: var(--shadow);
}
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .9rem;
  color: var(--ink);
  margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fffaf7;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--burgundy);
  box-shadow: 0 0 0 4px rgba(123, 45, 59, .12);
}
.field textarea { resize: vertical; min-height: 130px; }
.field .error-msg { color: #c0392b; font-size: .82rem; margin-top: 6px; display: none; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #c0392b; }
.field.invalid .error-msg { display: block; }
.form-note { font-size: .84rem; color: var(--muted); margin-top: 6px; }
.form-status {
  display: none;
  margin-top: 18px;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  background: #f3ece1;
  border: 1px solid var(--gold);
  color: #7a5a1e;
  font-weight: 500;
}
.form-status.show { display: block; }

.info-card {
  background: linear-gradient(160deg, #f9ede6, #f7e9e2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 24px;
}
.info-row { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 22px; }
.info-row:last-child { margin-bottom: 0; }
.info-row .info-ic {
  width: 46px; height: 46px; flex: 0 0 auto;
  border-radius: 14px; background: #fff;
  display: grid; place-items: center; font-size: 1.3rem;
  box-shadow: var(--shadow);
}
.info-row b { font-family: var(--font-head); font-size: 1.2rem; color: var(--ink); display: block; }
.info-row span { font-size: .94rem; color: #5e4c4c; }

.map-placeholder {
  border-radius: var(--radius);
  min-height: 240px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  position: relative;
}
.map-placeholder img { width: 100%; height: 100%; object-fit: cover; min-height: 240px; }
.map-placeholder .pin {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  background: rgba(42, 26, 31, .32);
  color: #fff; text-align: center;
}
.map-placeholder .pin b { font-family: var(--font-head); font-size: 1.3rem; display: block; }
.map-placeholder .pin span { font-size: .86rem; }

/* ---------------------------------------------------------------------
   FOOTER (shared)
   --------------------------------------------------------------------- */
.site-footer {
  background: #20121a;
  color: rgba(255,255,255,.74);
  padding: 68px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 38px;
  margin-bottom: 46px;
}
.site-footer .brand { color: #fff; margin-bottom: 16px; }
.site-footer .brand:hover { color: #fff; }
.footer-about p { font-size: .95rem; color: rgba(255,255,255,.66); max-width: 320px; }
.footer-col h4 {
  color: #fff; font-family: var(--font-head); font-size: 1.25rem; font-weight: 600;
  margin-bottom: 14px;
}
.footer-col a { display: block; color: rgba(255,255,255,.68); padding: 5px 0; font-size: .95rem; }
.footer-col a:hover { color: var(--blush); }
.social { display: flex; gap: 10px; margin-top: 18px; }
.social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: grid; place-items: center;
  font-size: 1rem;
}
.social a:hover { background: var(--burgundy); transform: translateY(-3px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .86rem;
  color: rgba(255,255,255,.55);
}
.footer-bottom a { color: rgba(255,255,255,.72); }

/* ---------------------------------------------------------------------
   SCROLL-REVEAL
   --------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.33, 1, .5, 1);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.no-io .reveal { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------------------------------------------------------------------
   RESPONSIVE
   --------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-about { grid-column: 1 / -1; }
  .hero-grid { grid-template-columns: 1fr; gap: 52px; }
  .hero-visual { max-width: 460px; margin: 0 auto; }
  .trust-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 68px 0; }

  /* Mobile nav */
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 80px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 14px var(--gutter) 22px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--ease), transform var(--ease);
  }
  .nav-links.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 12px 14px; }
  .nav-cta { margin: 8px 0 0; }
  .nav-cta .btn { width: 100%; justify-content: center; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .split--reverse .split-media { order: 0; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 30px 24px; }
  .cta-band { padding: 48px 28px; }
  .trial-band { grid-template-columns: 1fr; }
  .trial-band .tb-media { min-height: 240px; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; }
  .gallery .g-wide { grid-column: span 2; }

  /* Responsive table -> stacked cards */
  .schedule-table, .schedule-table tbody, .schedule-table tr, .schedule-table td { display: block; width: 100%; }
  .schedule-table thead { display: none; }
  .schedule-table tr {
    margin-bottom: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
  }
  .schedule-table td { border-bottom: 1px solid var(--line); padding: 12px 18px; }
  .schedule-table td:last-child { border-bottom: none; }
  .schedule-table td::before {
    content: attr(data-label);
    display: block;
    font-size: .72rem; font-weight: 600; letter-spacing: .06em;
    text-transform: uppercase; color: var(--muted); margin-bottom: 2px;
  }
}

@media (max-width: 480px) {
  body { font-size: 16px; }
  .trust-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .gallery .g-wide, .gallery .g-tall { grid-column: auto; grid-row: auto; }
  .hero-visual .hv-badge { left: 0; }
  .hero-visual .hv-pill { right: 0; }
}
