:root {
  --ink: #050505;
  --soft-ink: #5d5954;
  --paper: #ffffff;
  --ivory: #faf8f5;
  --mist: #f0eeea;
  --champagne: #e6d8c2;
  --gold: #9d7b50;
  --line: rgba(5, 5, 5, 0.12);
  --shadow: 0 28px 80px rgba(5, 5, 5, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 74px;
  padding: 14px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
}

.brand,
.header-actions,
.desktop-nav,
.language-toggle,
.hero-actions,
.booking-actions,
.price-row {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--ink);
  overflow: hidden;
  background: var(--paper);
}

.brand-mark img {
  width: 84%;
  height: 84%;
  object-fit: contain;
}

.desktop-nav {
  gap: clamp(18px, 3vw, 34px);
  color: var(--soft-ink);
  font-size: 0.92rem;
}

.desktop-nav a:hover,
.site-footer a:hover {
  color: var(--gold);
}

.header-actions {
  gap: 12px;
}

.language-toggle {
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.lang-button {
  min-width: 38px;
  min-height: 32px;
  border: 0;
  border-radius: 999px;
  color: var(--soft-ink);
  background: transparent;
  font-weight: 800;
  cursor: pointer;
}

.lang-button.active {
  color: var(--paper);
  background: var(--ink);
}

.header-whatsapp {
  padding: 11px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-weight: 800;
}

.hero {
  position: relative;
  display: grid;
  gap: clamp(30px, 5vw, 58px);
  min-height: 82vh;
  align-content: center;
  overflow: hidden;
  padding: 128px clamp(22px, 6vw, 86px) 72px;
  color: var(--ink);
  background: linear-gradient(90deg, #ffffff 0%, #ffffff 58%, #f5f1ea 100%);
}

.hero-monogram {
  position: absolute;
  right: -4vw;
  bottom: -12vh;
  z-index: 0;
  width: min(60vw, 860px);
  max-width: none;
  opacity: 0.045;
  mix-blend-mode: multiply;
  pointer-events: none;
  user-select: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 920px;
}

.hero-banner {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 16 / 6;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.eyebrow,
.section-label {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: 0;
  line-height: 0.98;
}

h1 {
  max-width: none;
  font-size: clamp(2.4rem, 7vw, 5.4rem);
  white-space: nowrap;
}

h2 {
  font-size: clamp(2.1rem, 5vw, 4.7rem);
}

h3 {
  margin: 0;
  font-size: 1.1rem;
}

.hero-copy {
  max-width: 570px;
  margin: 26px 0 0;
  color: var(--soft-ink);
  font-size: clamp(1rem, 2.3vw, 1.28rem);
  line-height: 1.65;
}

.hero-actions,
.booking-actions {
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 900;
}

.primary-button {
  background: var(--ink);
  color: var(--paper);
}

.secondary-button {
  border: 1px solid var(--ink);
  color: var(--ink);
}

.secondary-button.dark {
  border-color: var(--ink);
  color: var(--ink);
}

.disabled-link {
  opacity: 0.58;
  pointer-events: none;
}

.intro,
.studio-section,
.section-band,
.academy-section,
.work-section,
.team-section,
.social-proof,
.instagram-section,
.split-section,
.lia-section,
.booking,
.visit {
  padding: clamp(44px, 6vw, 78px) clamp(22px, 6vw, 86px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.8fr);
  gap: clamp(30px, 6vw, 82px);
  align-items: end;
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.intro p:last-child,
.split-copy p,
.booking p,
.lia-section p,
.visit-grid p,
.course-panel p,
.service-card p,
.site-footer p {
  color: var(--soft-ink);
  line-height: 1.75;
}

.section-band {
  background: var(--paper);
  color: var(--ink);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.academy-section {
  background: var(--ivory);
}

.academy-section .section-heading p:not(.section-label) {
  max-width: 780px;
  color: var(--soft-ink);
  line-height: 1.75;
}

.featured-course,
.dates-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  gap: clamp(18px, 4vw, 38px);
  margin-bottom: 22px;
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid var(--line);
  background: var(--paper);
}

.featured-course h3,
.dates-panel h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.85rem, 4vw, 3.35rem);
  line-height: 0.98;
}

.featured-course p,
.featured-course li,
.course-card p,
.dates-panel li {
  color: var(--soft-ink);
  line-height: 1.7;
}

.featured-course ul,
.dates-panel ul {
  margin: 14px 0 0;
  padding-left: 20px;
}

.course-price-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  border: 1px solid var(--line);
  background: var(--ivory);
}

.course-price-box span {
  color: var(--ink);
  font-size: clamp(1.15rem, 2vw, 1.65rem);
  font-weight: 900;
}

.course-category {
  margin-top: 30px;
}

.course-category > h3 {
  margin: 0 0 14px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.6rem, 3.2vw, 2.65rem);
}

.course-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.course-grid.compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.course-card {
  min-height: 220px;
  padding: 20px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.course-card span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-weight: 900;
}

.course-card h4 {
  margin: 0;
  font-size: 1.02rem;
}

.course-card a {
  display: inline-flex;
  margin-top: 10px;
  border-bottom: 1px solid var(--ink);
  font-weight: 900;
}

.dates-panel {
  align-items: center;
  margin-top: 30px;
  margin-bottom: 0;
  background: var(--ink);
  color: var(--paper);
}

.dates-panel .section-label,
.dates-panel li {
  color: rgba(255, 255, 255, 0.76);
}

.studio-section {
  background: var(--ivory);
}

.studio-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.studio-gallery img {
  width: 100%;
  height: min(34vw, 360px);
  object-fit: cover;
  border: 1px solid var(--line);
  background: var(--paper);
}

.section-heading {
  max-width: 900px;
  margin-bottom: 36px;
}

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

.service-card {
  min-height: 245px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--ivory);
}

.service-card span {
  display: block;
  margin-bottom: 54px;
  color: var(--gold);
  font-weight: 900;
}

.service-card-feature {
  background: var(--ink);
}

.service-card-feature h3,
.service-card-feature span {
  color: var(--paper);
}

.service-card-feature p {
  color: rgba(255, 255, 255, 0.72);
}

.work-section {
  background: var(--paper);
}

.work-mosaic {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--line);
}

.work-photo,
.work-text {
  position: relative;
  min-height: 310px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ivory);
}

.work-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.work-photo:hover img {
  transform: scale(1.035);
}

.work-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 4vw, 46px);
}

.work-text span {
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.work-text h3 {
  max-width: 430px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.75rem, 3vw, 3rem);
  line-height: 1.02;
}

.work-text p {
  max-width: 420px;
  color: var(--soft-ink);
  line-height: 1.75;
}

.work-text-dark {
  background: var(--ink);
  color: var(--paper);
}

.work-text-dark p {
  color: rgba(255, 255, 255, 0.72);
}

.team-section {
  background: var(--ivory);
}

.team-section .section-heading p:not(.section-label) {
  max-width: 680px;
  color: var(--soft-ink);
  line-height: 1.75;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.team-card {
  border: 1px solid var(--line);
  background: var(--paper);
}

.team-photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--mist);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-photo-logo {
  display: grid;
  place-items: center;
  background: var(--paper);
}

.team-photo-logo img {
  width: 74%;
  height: 74%;
  object-fit: contain;
}

.team-info {
  padding: 24px;
}

.team-info span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.team-info p {
  color: var(--soft-ink);
  line-height: 1.7;
}

.team-info a {
  display: inline-flex;
  margin-top: 6px;
  border-bottom: 1px solid var(--ink);
  font-weight: 900;
}

.social-proof {
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.stars {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: clamp(1.7rem, 4vw, 3rem);
  letter-spacing: 0.04em;
}

.reviews-widget-shell p,
.instagram-section .section-heading p,
.location-panel p {
  color: var(--soft-ink);
  line-height: 1.75;
}

.reviews-widget-shell {
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid var(--line);
  background: var(--ivory);
}

.reviews-widget-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.rating-score {
  display: block;
  margin: 8px 0 12px;
  font-size: clamp(1.25rem, 2.4vw, 2rem);
}

.text-link {
  display: inline-flex;
  margin-top: 16px;
  border-bottom: 1px solid currentColor;
  font-weight: 900;
}

.instagram-section {
  background: var(--ivory);
}

.instagram-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.instagram-strip img {
  width: 100%;
  aspect-ratio: 1 / 1.05;
  object-fit: cover;
  border: 1px solid var(--line);
}

.instagram-link {
  margin-top: 24px;
}

.split-section,
.lia-section,
.booking {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.8fr);
  gap: clamp(30px, 7vw, 92px);
  align-items: center;
}

.course-panel,
.lia-card {
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.course-panel {
  padding: clamp(28px, 5vw, 52px);
}

.course-highlight {
  margin: 18px 0;
  color: var(--ink) !important;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
}

.price-row {
  justify-content: space-between;
  gap: 14px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-weight: 900;
}

.lia-section {
  background: var(--mist);
}

.lia-card {
  padding: 22px;
}

.lia-avatar {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  place-items: center;
  background: var(--ink);
  color: var(--paper);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.8rem;
  font-weight: 700;
}

.chat-lines {
  display: grid;
  gap: 12px;
}

.chat-lines p {
  margin: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.booking {
  background: var(--paper);
}

.visit {
  background: var(--ivory);
}

.location-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 38px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--paper);
}

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

.visit-grid > div {
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(22px, 6vw, 86px);
  color: var(--paper);
  background: var(--ink);
}

.site-footer p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.64);
}

@media (max-width: 920px) {
  .desktop-nav {
    display: none;
  }

  .intro,
  .split-section,
  .lia-section,
  .booking {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .course-grid,
  .work-mosaic,
  .team-grid,
  .visit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .course-grid.compact,
  .featured-course,
  .dates-panel {
    grid-template-columns: 1fr;
  }

  .instagram-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
    gap: 12px;
  }

  .brand span:last-child {
    max-width: 110px;
  }

  .header-whatsapp {
    display: none;
  }

  .hero {
    min-height: 76vh;
    padding-top: 116px;
  }

  .hero-banner {
    aspect-ratio: 16 / 9;
  }

  .studio-gallery,
  .team-grid,
  .work-mosaic {
    grid-template-columns: 1fr;
  }

  .reviews-widget-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .studio-gallery img,
  .work-photo,
  .work-text {
    min-height: 260px;
  }

  h1 {
    font-size: clamp(2.05rem, 10vw, 4.2rem);
  }

  .location-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .service-grid,
  .course-grid,
  .course-grid.compact,
  .visit-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 205px;
  }

  .price-row,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
