:root {
  --pink: #d98b9a;
  --nude: #ebc7c2;
  --gold: #c8a45d;
  --cream: #fff8f5;
  --beige: #f6edea;
  --charcoal: #222222;
  --taupe: #7a6a67;
  --white: #ffffff;
  --whatsapp: #25d366;
  --shadow: 0 18px 45px rgba(85, 51, 45, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", "Inter", Arial, sans-serif;
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 248, 245, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(200, 164, 93, 0.22);
}

.nav-wrap {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

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

.menu-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(200, 164, 93, 0.45);
  border-radius: 50%;
  background: var(--white);
  color: var(--charcoal);
  font-size: 22px;
  line-height: 1;
}

.nav-links {
  position: fixed;
  inset: 72px 16px auto 16px;
  display: none;
  grid-template-columns: 1fr;
  gap: 6px;
  padding: 14px;
  background: var(--white);
  border: 1px solid rgba(200, 164, 93, 0.28);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.nav-links.open {
  display: grid;
}

.nav-links a {
  padding: 12px 14px;
  border-radius: 16px;
  color: var(--taupe);
  font-weight: 600;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--charcoal);
  background: var(--beige);
}

.section,
.hero,
.page-hero {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  padding: 28px 0 54px;
}

.hero-grid,
.page-hero {
  display: grid;
  gap: 26px;
  align-items: center;
}

.hero-media,
.page-media,
.photo-frame {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(200, 164, 93, 0.34);
  box-shadow: var(--shadow);
  background: var(--beige);
}

.hero-media img,
.page-media img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.eyebrow {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  font-size: clamp(2.45rem, 10vw, 5.3rem);
  margin-top: 8px;
}

h2 {
  font-size: clamp(2rem, 7vw, 3.45rem);
}

h3 {
  font-size: 1.45rem;
}

p {
  color: var(--taupe);
  margin: 12px 0 0;
}

.lead {
  font-size: 1.02rem;
  max-width: 680px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 30px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(85, 51, 45, 0.12);
}

.btn-primary {
  background: var(--pink);
  color: var(--white);
}

.btn-secondary {
  background: var(--white);
  color: var(--charcoal);
  border-color: var(--gold);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
}

.section {
  padding: 52px 0;
}

.section.alt {
  width: 100%;
  max-width: none;
  background: var(--beige);
}

.section.alt > .inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.section-head {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.grid {
  display: grid;
  gap: 18px;
}

.service-card,
.course-card,
.deal-card,
.branch-card,
.info-card {
  background: var(--white);
  border: 1px solid rgba(200, 164, 93, 0.2);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(85, 51, 45, 0.08);
  overflow: hidden;
}

.card-body {
  padding: 18px;
}

.service-card img,
.course-card img,
.deal-card img,
.gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.deal-card img,
.course-card.tall img {
  aspect-ratio: 4 / 5;
}

.list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.list li {
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(200, 164, 93, 0.18);
  border-radius: 8px;
  color: var(--taupe);
}

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

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

.catalogue-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid rgba(200, 164, 93, 0.24);
  box-shadow: var(--shadow);
  background: var(--beige);
}

.price-card,
.offer-card,
.academy-card,
.highlight-card {
  background: var(--white);
  border: 1px solid rgba(200, 164, 93, 0.28);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 12px 30px rgba(85, 51, 45, 0.08);
}

.price-card h3,
.offer-card h3,
.academy-card h3,
.highlight-card h3 {
  color: var(--charcoal);
}

.price-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 10px;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(200, 164, 93, 0.18);
  color: var(--taupe);
}

.price-list strong,
.price {
  color: var(--charcoal);
  font-weight: 800;
}

.info-grid {
  display: grid;
  gap: 16px;
}

.highlight-card {
  background: linear-gradient(135deg, rgba(235, 199, 194, 0.42), rgba(255, 248, 245, 0.96));
}

.offer-card {
  display: grid;
  gap: 14px;
}

.deal-number {
  display: inline-flex;
  width: max-content;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--beige);
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.deal-services {
  margin: 0;
  color: var(--taupe);
}

.deal-price {
  font-size: 1.65rem;
  color: var(--charcoal);
  font-weight: 800;
}

.course-meta {
  display: grid;
  gap: 8px;
  margin: 16px 0;
  padding: 14px;
  background: var(--beige);
  border-radius: 8px;
}

.course-meta span {
  color: var(--taupe);
}

.course-meta strong {
  color: var(--charcoal);
}

.text-columns {
  display: grid;
  gap: 16px;
}

.rate-image {
  margin-top: 22px;
}

.rate-image img {
  width: 100%;
  border-radius: 24px;
  border: 1px solid rgba(200, 164, 93, 0.34);
  box-shadow: var(--shadow);
}

.contact-band {
  background: var(--pink);
  color: var(--white);
  padding: 34px 0;
}

.contact-band .inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.contact-band p {
  color: rgba(255, 255, 255, 0.88);
}

.site-footer {
  background: #211b1a;
  color: var(--white);
  padding: 44px 0 92px;
}

.footer-grid {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  gap: 24px;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.76);
}

.footer-links {
  display: grid;
  gap: 8px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-links a {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 30px;
  padding: 8px 12px;
}

.sticky-whatsapp {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 60;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.28);
}

.sticky-deals {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 76px;
  z-index: 60;
  background: var(--pink);
  color: var(--white);
  border-color: rgba(200, 164, 93, 0.5);
  box-shadow: 0 12px 28px rgba(217, 139, 154, 0.28);
}

@media (min-width: 760px) {
  .menu-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    display: flex;
    align-items: center;
    padding: 0;
    box-shadow: none;
    border: 0;
    background: transparent;
  }

  .nav-links a {
    padding: 8px 10px;
    font-size: 0.92rem;
  }

  .hero-grid,
  .page-hero {
    grid-template-columns: 1fr 0.88fr;
  }

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

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

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

  .grid.five {
    grid-template-columns: repeat(5, 1fr);
  }

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

  .info-grid,
  .text-columns {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .contact-band .inner {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .footer-grid {
    grid-template-columns: 1.1fr 0.8fr 1.2fr 1fr;
  }

  .sticky-whatsapp {
    left: auto;
    right: 24px;
    width: auto;
    padding-inline: 24px;
  }

  .sticky-deals {
    left: auto;
    right: 24px;
    bottom: 82px;
    width: auto;
    padding-inline: 24px;
  }
}

@media (max-width: 420px) {
  .actions .btn {
    width: 100%;
  }
}
