:root {
  --background: hsl(45 30% 98%);
  --foreground: hsl(220 20% 15%);
  --card: hsl(0 0% 100%);
  --primary: hsl(25 90% 55%);
  --secondary: hsl(45 60% 92%);
  --muted: hsl(45 30% 94%);
  --muted-foreground: hsl(220 10% 45%);
  --border: hsl(45 20% 88%);
  --drum: hsl(25 90% 55%);
  --voice: hsl(340 75% 55%);
  --guitar: hsl(210 80% 50%);
  --piano: hsl(145 60% 42%);
  --shadow: 0 22px 60px rgba(41, 36, 28, 0.08);
  --radius: 20px;
  --header-height: 68px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Trebuchet MS", Arial, sans-serif;
  color: var(--foreground);
  background:
    radial-gradient(circle at top left, rgba(236, 164, 77, 0.18), transparent 28%),
    radial-gradient(circle at top right, rgba(197, 72, 114, 0.12), transparent 24%),
    var(--background);
  line-height: 1.6;
}

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

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

button,
input,
textarea {
  font: inherit;
}

code {
  padding: 0.1rem 0.4rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.06);
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 241, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(170, 154, 130, 0.18);
}

.header-inner {
  position: relative;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand span {
  font-weight: 800;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-nav > a:not(.nav-cta) {
  color: var(--muted-foreground);
  font-weight: 700;
  font-size: 0.9rem;
}

.site-nav > a:not(.nav-cta):hover,
.site-nav > a:not(.nav-cta):focus-visible {
  color: var(--primary);
}

.nav-cta {
  margin-left: 0.15rem;
  background: hsl(220 20% 15%);
  box-shadow: 0 10px 24px rgba(26, 29, 46, 0.18);
}

.site-nav > .nav-cta,
.site-nav > .nav-cta:hover,
.site-nav > .nav-cta:focus-visible {
  color: #fff;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--card);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--foreground);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(1.5rem, 3vw, 2.5rem) 0 4rem;
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(20px);
  opacity: 0.35;
  pointer-events: none;
}

.hero-orb-a {
  inset: 10% auto auto -8%;
  width: 240px;
  height: 240px;
  background: rgba(241, 149, 45, 0.28);
}

.hero-orb-b {
  inset: auto -8% 14% auto;
  width: 280px;
  height: 280px;
  background: rgba(63, 158, 230, 0.18);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.5rem;
  justify-items: center;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(241, 149, 45, 0.12);
  color: var(--primary);
  font-size: 0.92rem;
  font-weight: 800;
}

.eyebrow-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.eyebrow-icon svg {
  width: 1rem;
  height: 1rem;
}

.hero-logo {
  width: min(360px, 70vw);
}

.hero-title {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.1rem, 1.65rem + 2vw, 4rem);
  line-height: 1.05;
}

.hero-copy,
.section-lead {
  max-width: 720px;
  color: var(--muted-foreground);
  font-size: clamp(1rem, 1rem + 0.4vw, 1.15rem);
}

.hero-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 50px;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
  color 0.2s ease;
}

.button svg {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 16px 34px rgba(227, 131, 21, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: hsl(25 90% 50%);
  box-shadow: 0 18px 38px rgba(227, 131, 21, 0.3);
}

.site-nav > .nav-cta.button-primary:hover,
.site-nav > .nav-cta.button-primary:focus-visible {
  background: hsl(220 20% 12%);
  box-shadow: 0 12px 28px rgba(26, 29, 46, 0.22);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.7);
  color: var(--foreground);
  border-color: var(--border);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 1);
  border-color: rgba(171, 156, 132, 0.65);
  box-shadow: 0 14px 28px rgba(41, 36, 28, 0.08);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.9);
  color: var(--accent-color, var(--primary));
  border-color: color-mix(in srgb, var(--accent-color, var(--primary)) 24%, white);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  background: var(--accent-color, var(--primary));
  border-color: var(--accent-color, var(--primary));
  color: white;
  box-shadow: 0 16px 30px color-mix(in srgb, var(--accent-color, var(--primary)) 28%, transparent);
}

.button-small {
  min-height: 36px;
  padding: 0.58rem 0.9rem;
  font-size: 0.88rem;
}

.hero-grid,
.lesson-grid,
.testimonial-grid,
.gallery-grid,
.info-grid {
  display: grid;
  gap: 1rem;
}

.hero-grid {
  width: 100%;
  margin-top: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card,
.lesson-card,
.testimonial-card,
.gallery-card,
.contact-card,
.info-card,
.mini-card,
.map-frame {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(202, 188, 164, 0.42);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-card {
  padding: 1.25rem;
  text-align: left;
}

.card-icon,
.lesson-icon,
.mini-icon,
.band-icon,
.info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color, var(--primary));
}

.card-icon {
  margin-bottom: 0.75rem;
}

.feature-card h2,
.lesson-card h3,
.contact-card h3,
.info-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.15rem;
}

.feature-card p,
.lesson-card p,
.info-card p,
.copy-stack p,
.mini-card span,
.testimonial-card blockquote,
.testimonial-card .role {
  color: var(--muted-foreground);
}

.drum {
  --accent-color: var(--drum);
}

.voice {
  --accent-color: var(--voice);
}

.piano {
  --accent-color: var(--piano);
}

.guitar {
  --accent-color: var(--guitar);
}

.feature-card,
.lesson-card {
  position: relative;
  overflow: hidden;
}

.feature-card::before,
.lesson-card .card-bar {
  content: "";
  display: block;
  background: var(--accent-color, var(--primary));
}

.feature-card::before {
  width: 100%;
  height: 5px;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.lesson-card .card-bar {
  width: 100%;
  height: 5px;
  border-radius: 999px;
  margin-bottom: 1.2rem;
}

.section {
  padding: clamp(4rem, 8vw, 6rem) 0;
  scroll-margin-top: calc(var(--header-height) + 16px);
}

.section-muted {
  background: linear-gradient(180deg, rgba(247, 241, 231, 0.72), rgba(247, 241, 231, 0.42));
}

.two-column,
.contact-grid,
.footer-inner {
  display: grid;
  gap: 2rem;
}

.two-column,
.contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.image-panel {
  position: relative;
}

.image-panel img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 30px 70px rgba(63, 44, 24, 0.16);
}

.section-heading {
  display: grid;
  gap: 0.8rem;
  justify-items: center;
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-kicker {
  margin: 0;
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-title {
  margin: 0;
  font-size: clamp(2rem, 1.7rem + 1.4vw, 3.2rem);
  line-height: 1.05;
}

.copy-stack {
  display: grid;
  gap: 1rem;
}

.mini-grid {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mini-card {
  padding: 1rem;
}

.mini-icon {
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.7rem;
}

.mini-card strong {
  display: block;
  margin-bottom: 0.2rem;
}

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

.lesson-card,
.contact-card {
  padding: 1.4rem;
}

.contact-card {
  padding: 1.55rem;
  background: rgba(255, 255, 255, 0.92);
}

.contact-card h3 {
  font-size: 1.05rem;
  margin-bottom: 1.15rem;
}

.lesson-icon {
  margin-bottom: 0.9rem;
}

.card-icon svg {
  width: 2rem;
  height: 2rem;
}

.lesson-icon svg {
  width: 3rem;
  height: 3rem;
}

.mini-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.band-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.info-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.lesson-card ul {
  padding: 0;
  margin: 1rem 0 1.2rem;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.lesson-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding-left: 0;
}

.list-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: var(--accent-color, var(--primary));
  margin-top: 0.12rem;
  width: 1.3rem;
  height: 1.3rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent-color, var(--primary)) 16%, white);
}

.list-check svg {
  width: 0.72rem;
  height: 0.72rem;
}

.info-band {
  margin-top: 1.6rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: rgba(244, 232, 209, 0.8);
  border: 1px solid rgba(202, 188, 164, 0.42);
  border-radius: 28px;
  padding: 1.35rem;
}

.info-band-title {
  grid-column: 1 / -1;
  margin: 0 0 0.2rem;
  text-align: center;
  font-size: 1.5rem;
}

.info-band article {
  display: grid;
  gap: 0.2rem;
  justify-items: center;
  text-align: center;
}

.band-icon {
  width: 2.6rem;
  height: 2.6rem;
  margin-bottom: 0.35rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
}

.info-band span {
  color: var(--muted-foreground);
}

.testimonial-card {
  padding: 1.35rem;
}

.rating {
  display: flex;
  gap: 0.2rem;
  margin: 0 0 0.8rem;
  color: hsl(45 100% 60%);
}

.rating svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.testimonial-card blockquote {
  margin: 0;
  position: relative;
  padding-left: 0.9rem;
}

.testimonial-card blockquote::before {
  content: "\201C";
  position: absolute;
  left: 0;
  top: -0.1rem;
  color: rgba(241, 149, 45, 0.2);
  font-size: 2.6rem;
  line-height: 1;
}

.author {
  margin: 0;
  font-weight: 800;
}

.role {
  margin: 0.15rem 0 0;
  font-size: 0.95rem;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1rem;
}

.person-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  background: rgba(241, 149, 45, 0.12);
  font-size: 1.1rem;
  flex: 0 0 auto;
}

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

.gallery-card {
  overflow: hidden;
  margin: 0;
  position: relative;
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-card:hover img {
  transform: scale(1.04);
}

.gallery-card figcaption {
  padding: 1rem 1.1rem;
  font-weight: 800;
}

.contact-stack {
  display: grid;
  gap: 1rem;
}

.contact-form,
.field-row {
  display: grid;
  gap: 1rem;
}

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

.contact-form label {
  display: grid;
  gap: 0.4rem;
}

.contact-form .form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form span {
  font-weight: 700;
  color: hsl(220 35% 20%);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(171, 156, 132, 0.5);
  border-radius: 16px;
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.98);
  color: hsl(220 20% 15%);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(227, 131, 21, 0.22);
  border-color: var(--primary);
}

.form-actions {
  gap: 0.75rem;
}

.form-actions .button {
  flex: 1 1 0;
}

.whatsapp-button {
  border-color: rgba(171, 156, 132, 0.5);
  background: rgba(255, 255, 255, 0.98);
}

.contact-details-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.detail-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  padding: 0.9rem;
  border-radius: 20px;
  background: rgba(251, 248, 243, 0.92);
  border: 1px solid rgba(202, 188, 164, 0.35);
}

.detail-item .info-icon {
  margin-bottom: 0;
  width: 2.35rem;
  height: 2.35rem;
}

.detail-item h4 {
  margin: 0 0 0.25rem;
  font-size: 0.96rem;
}

.detail-item p {
  margin: 0;
  font-size: 0.93rem;
  line-height: 1.5;
}

.info-icon {
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 0.75rem;
  border-radius: 14px;
  background: rgba(241, 149, 45, 0.12);
}

.detail-item a {
  color: var(--foreground);
  font-weight: 600;
}

.detail-item a:hover,
.detail-item a:focus-visible {
  color: var(--primary);
}

.email-text {
  word-break: break-word;
}

.map-frame {
  overflow: hidden;
  min-height: 326px;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.modal-open {
  overflow: hidden;
}

.thank-you-modal[hidden] {
  display: none;
}

.thank-you-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.thank-you-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 22, 30, 0.56);
  backdrop-filter: blur(4px);
}

.thank-you-modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 430px);
  padding: 2rem;
  border: 1px solid rgba(202, 188, 164, 0.45);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 60px rgba(26, 29, 46, 0.22);
  text-align: center;
}

.thank-you-modal__close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  display: inline-grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border: 1px solid rgba(171, 156, 132, 0.4);
  border-radius: 999px;
  background: rgba(251, 248, 243, 0.86);
  color: var(--foreground);
  cursor: pointer;
}

.thank-you-modal__close svg {
  width: 1rem;
  height: 1rem;
}

.thank-you-modal__close:hover,
.thank-you-modal__close:focus-visible {
  border-color: var(--primary);
  color: var(--primary);
}

.thank-you-modal__icon {
  display: inline-grid;
  place-items: center;
  width: 3.6rem;
  height: 3.6rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: rgba(34, 153, 84, 0.12);
  color: hsl(145 64% 34%);
}

.thank-you-modal__icon svg {
  width: 1.75rem;
  height: 1.75rem;
}

.thank-you-modal h2 {
  margin: 0;
  color: hsl(220 35% 18%);
  font-size: clamp(1.55rem, 4vw, 2rem);
}

.thank-you-modal p {
  margin: 0.7rem 0 1.35rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.thank-you-modal__button {
  width: 100%;
}

.site-footer {
  background: hsl(220 20% 15%);
  color: hsl(45 30% 95%);
  padding: 1.35rem 0;
}

.footer-inner {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 0.8rem;
}

.footer-brand,
.footer-meta p {
  margin: 0;
}

.footer-brand {
  font-size: 1rem;
  font-weight: 800;
}

.footer-tagline,
.footer-meta {
  color: rgba(245, 238, 228, 0.72);
}

.footer-tagline {
  font-size: 0.9rem;
}

.footer-meta {
  text-align: right;
  font-size: 0.9rem;
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .hero-grid,
  .lesson-grid,
  .testimonial-grid,
  .gallery-grid,
  .two-column,
  .contact-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .mini-grid,
  .contact-details-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 780px) {
  .menu-toggle {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 0;
    background: transparent;
    gap: 3px;
  }

  .site-nav {
    position: absolute;
    inset: 100% 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
    padding: 1rem 0 1.1rem;
    background: rgba(250, 247, 241, 0.98);
    border-top: 1px solid rgba(170, 154, 130, 0.18);
    border-radius: 0;
    box-shadow: none;
  }

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

  .site-nav > a {
    padding-inline: 0.1rem;
  }

  .nav-cta {
    margin-left: 0;
  }

  .site-nav > .nav-cta {
    justify-content: center;
  }

  .hero {
    padding-top: 0.65rem;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 1rem, 1120px);
  }

  .site-header {
    background: rgba(255, 252, 247, 0.96);
  }

  .header-inner {
    min-height: 72px;
  }

  .brand {
    gap: 0.65rem;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .brand span {
    font-size: 0.92rem;
  }

  .hero {
    padding: 0.35rem 0 3.25rem;
  }

  .hero-inner {
    gap: 1.25rem;
  }

  .eyebrow {
    padding: 0.5rem 0.9rem;
    font-size: 0.82rem;
  }

  .hero-logo {
    width: min(320px, 86vw);
  }

  .hero-copy,
  .section-lead {
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .section {
    padding: 3.6rem 0;
  }

  .section-heading {
    gap: 0.7rem;
    margin-bottom: 2rem;
  }

  .section-title {
    font-size: clamp(1.95rem, 8vw, 2.55rem);
  }

  .two-column,
  .contact-grid,
  .footer-inner {
    gap: 1.35rem;
  }

  .hero-grid,
  .field-row,
  .contact-details-grid,
  .info-band {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 0.9rem;
    margin-top: 2rem;
  }

  .feature-card {
    padding: 1rem;
    border-radius: 16px;
    box-shadow: 0 14px 34px rgba(41, 36, 28, 0.07);
  }

  .feature-card::before {
    display: none;
  }

  .feature-card h2 {
    font-size: 0.95rem;
    margin-bottom: 0.35rem;
  }

  .feature-card p {
    font-size: 0.8rem;
    line-height: 1.45;
  }

  .image-panel img {
    aspect-ratio: 16 / 10;
    object-position: center 20%;
  }

  .copy-stack {
    gap: 0.85rem;
  }

  .mini-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
  }

  .mini-card {
    padding: 1rem 0.95rem;
  }

  .mini-card strong {
    font-size: 0.98rem;
  }

  .mini-card span {
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .lesson-card,
  .contact-card,
  .testimonial-card {
    padding: 1.2rem;
  }

  .lesson-icon {
    color: var(--foreground);
  }

  .lesson-card .button-ghost {
    width: 100%;
    background: var(--accent-color, var(--primary));
    border-color: var(--accent-color, var(--primary));
    color: #fff;
    box-shadow: none;
  }

  .lesson-card .button-ghost:hover,
  .lesson-card .button-ghost:focus-visible {
    background: var(--accent-color, var(--primary));
    border-color: var(--accent-color, var(--primary));
    color: #fff;
    transform: none;
  }

  .info-band {
    gap: 1rem;
    padding: 1.55rem 1.1rem;
    border-radius: 22px;
  }

  .info-band article {
    grid-template-columns: auto 1fr;
    align-items: center;
    justify-items: start;
    text-align: left;
    gap: 0.1rem 0.85rem;
  }

  .info-band article > .band-icon {
    grid-row: span 2;
    margin-bottom: 0;
  }

  .info-band-title {
    margin-bottom: 0.45rem;
    font-size: 1.15rem;
  }

  .testimonial-card blockquote {
    padding-left: 0.75rem;
  }

  .gallery-grid {
    gap: 1rem;
  }

  .gallery-card figcaption {
    position: absolute;
    inset: auto 0 0 0;
    padding: 1.05rem 0.9rem 0.85rem;
    color: #fff;
    background: linear-gradient(180deg, transparent, rgba(21, 23, 30, 0.72));
  }

  .contact-card {
    padding: 1.35rem;
  }

  .detail-item {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 14px 30px rgba(41, 36, 28, 0.06);
  }

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

  .hero-actions,
  .form-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
    min-height: 46px;
    border-radius: 14px;
  }

  .map-frame {
    min-height: 250px;
    border-radius: 18px;
  }

  .footer-inner {
    justify-items: center;
    text-align: center;
  }

  .footer-meta {
    text-align: center;
  }
}
