/* New Pilates by AD — statikus oldal (React dizájn 1:1) */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: hidden;
  width: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  font-family: "Nunito", system-ui, -apple-system, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: #3d3438;
  background: linear-gradient(180deg, #fff9fb 0%, #fff5f8 35%, #fffbfa 70%, #faf5f8 100%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  padding-left: env(safe-area-inset-left, 0);
  padding-right: env(safe-area-inset-right, 0);
  padding-bottom: env(safe-area-inset-bottom, 0);
}

main {
  flex: 1;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset, 0 8px 28px rgba(0, 0, 0, 0.05);
}

@media (prefers-reduced-motion: no-preference) {
  .site-header {
    animation: anim-header-in 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
  }
}

.site-header__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.9rem max(1rem, env(safe-area-inset-left, 1rem)) 0.9rem max(1rem, env(safe-area-inset-right, 1rem));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  text-decoration: none;
}

.logo-img {
  display: block;
  height: 2.15rem;
  width: auto;
  max-width: min(280px, 88vw);
}

.logo:hover .logo-img {
  opacity: 0.88;
}

.logo:focus-visible .logo-img {
  outline: 2px solid #b86b73;
  outline-offset: 4px;
  border-radius: 4px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
  align-items: center;
}

.nav-link {
  font-family: "Nunito", system-ui, sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: #7a6d70;
  text-decoration: none;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
  transition:
    color 0.2s,
    border-color 0.2s;
}

.nav-link:hover {
  color: #b86b73;
  border-bottom-color: rgba(184, 107, 115, 0.35);
}

.nav-link--active {
  color: #b86b73;
  border-bottom-color: rgba(184, 107, 115, 0.55);
}

/* Hamburger (alapból rejtve — csak mobil breakpoint alatt látszik) */
.nav-toggle {
  display: none;
  position: relative;
  z-index: 1002;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 12px;
  background: rgba(184, 107, 115, 0.1);
  cursor: pointer;
  color: #4a3f42;
  transition: background 0.2s ease;
}

.nav-toggle:hover {
  background: rgba(184, 107, 115, 0.18);
}

.nav-toggle:focus-visible {
  outline: 2px solid #b86b73;
  outline-offset: 2px;
}

.nav-toggle__icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 22px;
  height: 18px;
}

.nav-toggle__icon span {
  display: block;
  height: 2px;
  width: 100%;
  background: currentColor;
  border-radius: 1px;
  transition:
    transform 0.25s ease,
    opacity 0.2s ease;
}

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

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

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

.nav-backdrop {
  display: none;
}

/* ≤1024px: hamburger + fejléc alatti lenyíló menü (nem borítja az egész oldalt) */
@media (max-width: 1024px) {
  .site-header {
    position: sticky;
    top: 0;
    z-index: 200;
    overflow: visible;
  }

  .site-header--nav-open .site-header__inner {
    box-shadow: 0 10px 28px rgba(42, 40, 38, 0.08);
  }

  .site-header__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    row-gap: 0;
    column-gap: 0.75rem;
    min-width: 0;
    width: 100%;
    max-width: 100%;
    padding-top: max(0.65rem, env(safe-area-inset-top, 0px));
    padding-bottom: 0.65rem;
    background: #fff;
  }

  .logo {
    order: 1;
    min-width: 0;
    flex: 1 1 auto;
    justify-content: flex-start;
    max-width: calc(100% - 56px);
  }

  .logo-img {
    height: clamp(1.6rem, 4.5vw, 2rem);
    max-width: 100%;
  }

  .nav-toggle {
    order: 2;
    display: inline-flex;
  }

  .nav-backdrop {
    display: none !important;
  }

  .nav {
    order: 3;
    flex-basis: 100%;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    margin-top: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    pointer-events: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: #faf9f8;
    border: none;
    border-radius: 14px;
    box-shadow: none;
    transition:
      max-height 0.38s cubic-bezier(0.22, 1, 0.36, 1),
      margin-top 0.2s ease,
      box-shadow 0.2s ease;
  }

  .nav.is-open {
    max-height: 24rem;
    margin-top: 0.5rem;
    pointer-events: auto;
    padding: 0.35rem 0 0.5rem;
    overflow: visible;
    border: 1px solid rgba(0, 0, 0, 0.07);
    box-shadow: 0 4px 16px rgba(42, 40, 38, 0.06);
  }

  .nav-link {
    flex: 0 0 auto;
    width: 100%;
    margin: 0;
    white-space: normal;
    padding: 0.72rem 1rem;
    min-height: 46px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    border-radius: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    background: transparent;
    font-size: 1rem;
    font-weight: 600;
    color: #4a3f42;
    transition:
      color 0.2s ease,
      background 0.2s ease;
  }

  .nav-link:last-of-type {
    border-bottom: none;
  }

  .nav-link:hover {
    color: #b86b73;
    background: rgba(184, 107, 115, 0.06);
  }

  .nav-link--active {
    color: #9b5a6a;
    background: rgba(184, 107, 115, 0.09);
  }
}

@media (max-width: 1024px) and (max-height: 520px) {
  .nav.is-open {
    max-height: 20rem;
  }

  .nav-link {
    min-height: 42px;
    padding: 0.55rem 0.85rem;
    font-size: 0.95rem;
  }
}

/* Nagyobb képernyő: klasszikus vízszintes menü, hamburger kikapcsolva */
@media (min-width: 1025px) {
  .nav-toggle {
    display: none !important;
  }

  .nav-backdrop {
    display: none !important;
  }

  .site-header__inner {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding-top: 0.9rem;
    padding-bottom: 0.9rem;
  }

  .logo {
    order: 0;
    max-width: none;
    flex: 0 1 auto;
  }

  .nav {
    position: static !important;
    inset: auto !important;
    order: 0 !important;
    flex-basis: auto !important;
    transform: none !important;
    visibility: visible !important;
    pointer-events: auto !important;
    width: auto !important;
    min-width: 0;
    max-width: none;
    max-height: none !important;
    flex-direction: row !important;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.35rem 1.25rem;
    padding: 0 !important;
    margin: 0 !important;
    margin-top: 0 !important;
    overflow: visible !important;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    border-radius: 0 !important;
    opacity: 1 !important;
    transition: none !important;
  }

  .nav-link {
    display: inline-flex;
    padding: 0.35rem 0;
    min-height: 0;
    border-radius: 0;
    background: transparent !important;
    border-bottom: 2px solid transparent;
    font-size: 0.92rem;
  }

  .nav-link:hover {
    background: transparent !important;
    border-bottom-color: rgba(184, 107, 115, 0.35);
  }

  .nav-link--active {
    background: transparent !important;
    border-bottom-color: rgba(184, 107, 115, 0.55);
  }
}

/* ——— Footer ——— */
.site-footer {
  padding: 2.25rem 1.5rem;
  border-top: 1px solid rgba(232, 160, 168, 0.25);
  text-align: center;
  background: linear-gradient(180deg, transparent, rgba(255, 240, 244, 0.5));
}

.site-footer__text {
  margin: 0;
  font-size: 0.9rem;
  color: #8a7b7e;
  font-family: "Nunito", system-ui, sans-serif;
}

.site-footer__text a {
  color: #b86b73;
  font-weight: 600;
  text-decoration: none;
}

.site-footer__text a:hover {
  text-decoration: underline;
}

/* ——— Home: hero ——— */
.hero {
  padding: clamp(2.5rem, 7vw, 4.5rem) 1.5rem clamp(3rem, 8vw, 5rem);
  max-width: 1120px;
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr 1.05fr;
    gap: 3rem;
  }
}

.hero-copy {
  min-width: 0;
}

.eyebrow {
  font-family: "Nunito", system-ui, sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c97a82;
  margin: 0 0 1rem;
}

.hero-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.1rem, 5vw, 3.15rem);
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 1.15rem;
  color: #3d3438;
  max-width: 16ch;
}

.lead {
  font-size: 1.08rem;
  line-height: 1.65;
  color: #6e6165;
  margin: 0 0 1.75rem;
  max-width: 36rem;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2.5rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(232, 160, 168, 0.35);
}

.meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.meta-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #9a878c;
  font-weight: 700;
}

.meta-value {
  font-weight: 700;
  font-size: 1rem;
  color: #4a3f42;
  font-family: "Nunito", system-ui, sans-serif;
}

.hero-visual {
  position: relative;
}

.hero-frame {
  border-radius: 28px;
  overflow: hidden;
  box-shadow:
    0 24px 60px rgba(184, 107, 115, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.8) inset;
  transform: rotate(-1.2deg);
  background: linear-gradient(145deg, #ffe8ee 0%, #fff 50%);
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy > .eyebrow {
    animation: anim-fade-rise 0.68s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .hero-copy > .hero-title {
    animation: anim-fade-rise 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.09s both;
  }

  .hero-copy > .lead {
    animation: anim-fade-rise 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.16s both;
  }

  .hero-copy > .meta-row {
    animation: anim-fade-rise 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.26s both;
  }

  .hero-visual {
    animation: anim-hero-visual-in 0.88s cubic-bezier(0.22, 1, 0.36, 1) 0.14s both;
  }

  .hero-frame {
    animation: anim-hero-float 7s ease-in-out 1s infinite alternate;
  }
}

.hero-img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  vertical-align: middle;
}

/* ——— Sections ——— */
.section {
  padding: clamp(3.5rem, 9vw, 5.5rem) 1.5rem;
}

.section--tint {
  background: linear-gradient(180deg, rgba(255, 248, 250, 0.95) 0%, rgba(255, 255, 255, 0.88) 100%);
  border-top: 1px solid rgba(232, 160, 168, 0.2);
  border-bottom: 1px solid rgba(232, 160, 168, 0.2);
}

.section--last {
  padding-bottom: clamp(4rem, 12vw, 6rem);
}

.inner {
  max-width: 1120px;
  margin: 0 auto;
}

.h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.75rem, 3.2vw, 2.35rem);
  font-weight: 600;
  margin: 0 0 1rem;
  color: #3d3438;
}

.intro {
  color: #6e6165;
  max-width: 40rem;
  margin: 0 0 1.75rem;
  line-height: 1.65;
  font-size: 1.05rem;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.85rem;
  max-width: 38rem;
}

.checklist li {
  position: relative;
  padding-left: 1.65rem;
  font-family: "Nunito", system-ui, sans-serif;
  color: #4a3f42;
  line-height: 1.55;
}

.checklist li::before {
  content: "♥";
  position: absolute;
  left: 0;
  top: 0.05em;
  font-size: 0.65rem;
  color: #d4898b;
}

.note {
  margin-top: 1.75rem;
  padding: 1.1rem 1.35rem;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 228, 234, 0.65) 0%, rgba(255, 245, 248, 0.9) 100%);
  border-left: 4px solid #d4898b;
  color: #6e555a;
  font-size: 0.98rem;
  max-width: 40rem;
  line-height: 1.55;
}

.mood-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .mood-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

.mood-card {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(184, 107, 115, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.mood-card img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.two-col {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 768px) {
  .two-col {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

.two-col .prose {
  color: #5c5256;
  line-height: 1.7;
  font-size: 1.04rem;
}

.two-col .prose p {
  margin: 0 0 1rem;
}

.two-col .prose p:last-child {
  margin-bottom: 0;
}

.two-col .prose strong {
  color: #3d3438;
  font-weight: 700;
}

.pricing {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 600px) {
  .pricing {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .pricing {
    grid-template-columns: repeat(3, 1fr);
  }
}

.price-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(232, 160, 168, 0.28);
  box-shadow: 0 12px 36px rgba(184, 107, 115, 0.1);
  display: flex;
  flex-direction: column;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.price-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 48px rgba(184, 107, 115, 0.16);
}

.price-card--booked {
  border-color: rgba(201, 122, 130, 0.5);
  box-shadow:
    0 12px 36px rgba(184, 107, 115, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.6) inset;
}

.price-card--booked:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(184, 107, 115, 0.12);
}

.price-booked-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: linear-gradient(
    160deg,
    rgba(61, 52, 56, 0.42) 0%,
    rgba(122, 79, 92, 0.38) 45%,
    rgba(74, 63, 66, 0.48) 100%
  );
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.price-booked-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 0.85rem 1.35rem 0.95rem;
  border-radius: 999px;
  background: linear-gradient(145deg, rgba(255, 251, 252, 0.97) 0%, rgba(255, 236, 241, 0.94) 100%);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow:
    0 12px 32px rgba(61, 52, 56, 0.22),
    0 0 0 1px rgba(201, 122, 130, 0.2) inset;
  text-align: center;
  max-width: 100%;
}

.price-booked-badge__label {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.15rem, 3.5vw, 1.45rem);
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0.04em;
  color: #9b5a6a;
  line-height: 1.1;
}

.price-booked-badge__hint {
  font-family: "Nunito", system-ui, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #a8888e;
}

.price-card--booked .price-img {
  filter: saturate(0.88) brightness(0.92);
}

.price-card--booked .price-title {
  color: #6e6165;
}

.price-card--booked .price-amount,
.price-card--booked .price-alt {
  opacity: 0.55;
  text-decoration: line-through;
  text-decoration-color: rgba(184, 107, 115, 0.45);
}

.price-card--booked .price-detail {
  color: #9a8b8f;
}

.price-img-wrap {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #fceef1;
}

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

.price-body {
  padding: 1.15rem 1.35rem 1.35rem;
}

.price-title {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 700;
  font-family: "Nunito", system-ui, sans-serif;
  color: #3d3438;
}

.price-detail {
  margin: 0;
  font-size: 0.88rem;
  color: #8a7b7e;
  line-height: 1.45;
}

.price-amount {
  margin: 0.65rem 0 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 600;
  color: #b86b73;
}

.price-alt {
  margin: 0.35rem 0 0;
  font-size: 0.88rem;
  color: #8a7b7e;
}

.pay-box {
  margin-top: 2.25rem;
  padding: 1.5rem 1.65rem;
  border-radius: 20px;
  background: rgba(255, 248, 250, 0.9);
  border: 1px dashed rgba(212, 137, 139, 0.45);
  max-width: 42rem;
  color: #5c5256;
  line-height: 1.65;
}

.pay-box p {
  margin: 0 0 0.85rem;
}

.pay-box p:last-child {
  margin-bottom: 0;
}

.pay-box strong {
  color: #3d3438;
}

.cta {
  text-align: center;
  padding: 2.75rem 1.75rem;
  border-radius: 28px;
  background: linear-gradient(145deg, #c97a82 0%, #9b5a6a 48%, #7a4f5c 100%);
  color: #fff8fa;
  box-shadow: 0 20px 50px rgba(122, 79, 92, 0.35);
}

.cta-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  font-weight: 600;
  margin: 0 0 0.65rem;
  color: inherit;
}

.cta-text {
  margin: 0 auto 1.5rem;
  max-width: 28rem;
  opacity: 0.95;
  line-height: 1.6;
  font-size: 1.05rem;
}

.phones {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2rem;
  justify-content: center;
  font-family: "Nunito", system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
}

.phones a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.cta-email {
  margin: 1.25rem 0 0;
  text-align: center;
  font-family: "Nunito", system-ui, sans-serif;
  font-weight: 600;
  font-size: 1rem;
}

.cta-email a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
  overflow-wrap: anywhere;
}

.about-link {
  text-align: center;
  margin: 2rem 0 0;
  font-family: "Nunito", system-ui, sans-serif;
  font-weight: 600;
}

.about-link a {
  color: #b86b73;
  text-decoration: none;
}

.about-link a:hover {
  text-decoration: underline;
}

/* ——— Rólunk ——— */
.about-main {
  padding: clamp(2rem, 6vw, 3.5rem) 1.5rem clamp(4rem, 10vw, 6rem);
}

.about-back {
  display: inline-block;
  margin-bottom: 1.35rem;
  font-family: "Nunito", system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.98rem;
  color: #b86b73;
  text-decoration: none;
}

.about-back:hover {
  text-decoration: underline;
}

.about-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 600;
  margin: 0 0 0.4rem;
  color: #3d3438;
}

.about-sub {
  margin: 0 0 2.25rem;
  color: #8a7b7e;
  font-size: 1.05rem;
  max-width: 32rem;
}

.about-grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr 1.08fr;
    gap: 3.5rem;
  }
}

.about-figure {
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  box-shadow:
    0 28px 64px rgba(184, 107, 115, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.75) inset;
  transform: rotate(1deg);
  background: linear-gradient(160deg, #ffe4ea, #fff);
}

.about-photo {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}

.about-text {
  font-size: 1.06rem;
  line-height: 1.75;
  color: #4a3f42;
}

.about-text p {
  margin: 0 0 1.15rem;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.about-studio-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  margin-top: 0.35rem;
}

.about-studio-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.65rem 1.5rem;
  border-radius: 999px;
  font-family: "Nunito", system-ui, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  color: #fff8fa;
  background: linear-gradient(145deg, #c97a82 0%, #9b5a6a 48%, #7a4f5c 100%);
  box-shadow: 0 10px 28px rgba(122, 79, 92, 0.3);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.about-studio-btn:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(122, 79, 92, 0.38);
}

.about-studio-btn:focus-visible {
  outline: 2px solid #b86b73;
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .about-studio-btn:hover {
    transform: none;
  }
}

.about-studio-btn--icon {
  padding: 0.65rem;
  min-width: 48px;
}

.about-studio-btn__ig {
  display: block;
  width: 1.45rem;
  height: 1.45rem;
}

/* ——— Animációk ——— */
@keyframes anim-header-in {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes anim-fade-rise {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes anim-hero-visual-in {
  from {
    opacity: 0;
    transform: translateX(26px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes anim-hero-float {
  from {
    transform: rotate(-1.2deg) translateY(0);
  }
  to {
    transform: rotate(-1.2deg) translateY(-6px);
  }
}

.js-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.js-reveal--stagger-mood .mood-card {
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  transition:
    opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.js-reveal--stagger-mood.is-visible .mood-card:nth-child(1) {
  opacity: 1;
  transform: none;
  transition-delay: 0.08s;
}

.js-reveal--stagger-mood.is-visible .mood-card:nth-child(2) {
  opacity: 1;
  transform: none;
  transition-delay: 0.18s;
}

.js-reveal--stagger-pricing .price-card {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.js-reveal--stagger-pricing.is-visible .price-card:nth-child(1) {
  opacity: 1;
  transform: none;
  transition-delay: 0.05s;
}

.js-reveal--stagger-pricing.is-visible .price-card:nth-child(2) {
  opacity: 1;
  transform: none;
  transition-delay: 0.1s;
}

.js-reveal--stagger-pricing.is-visible .price-card:nth-child(3) {
  opacity: 1;
  transform: none;
  transition-delay: 0.15s;
}

.js-reveal--stagger-pricing.is-visible .price-card:nth-child(4) {
  opacity: 1;
  transform: none;
  transition-delay: 0.2s;
}

.js-reveal--stagger-pricing.is-visible .price-card:nth-child(5) {
  opacity: 1;
  transform: none;
  transition-delay: 0.25s;
}

@media (prefers-reduced-motion: reduce) {
  .site-header,
  .hero-copy > .eyebrow,
  .hero-copy > .hero-title,
  .hero-copy > .lead,
  .hero-copy > .meta-row,
  .hero-visual,
  .hero-frame {
    animation: none !important;
  }

  .js-reveal,
  .js-reveal--stagger-mood .mood-card,
  .js-reveal--stagger-pricing .price-card {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ——— Mobil / kis képernyő (telefon) ——— */
@media (max-width: 899px) {
  body {
    background-attachment: scroll;
  }

  .hero-title {
    max-width: none;
    font-size: clamp(1.75rem, 6.5vw, 2.5rem);
    line-height: 1.18;
  }

  .hero-frame {
    transform: none;
    border-radius: 22px;
  }

  @media (prefers-reduced-motion: no-preference) {
    .hero-frame {
      animation: anim-hero-float-mobile 7s ease-in-out 1s infinite alternate;
    }
  }

  .about-figure {
    transform: none;
    border-radius: 22px;
  }
}

@keyframes anim-hero-float-mobile {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-5px);
  }
}

@media (max-width: 640px) {
  .hero {
    padding-left: max(1rem, env(safe-area-inset-left, 1rem));
    padding-right: max(1rem, env(safe-area-inset-right, 1rem));
  }

  .section {
    padding-left: max(1rem, env(safe-area-inset-left, 1rem));
    padding-right: max(1rem, env(safe-area-inset-right, 1rem));
  }

  .checklist li,
  .intro,
  .note,
  .pay-box {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .cta {
    padding: 2rem max(1rem, env(safe-area-inset-left)) 2rem max(1rem, env(safe-area-inset-right));
    border-radius: 22px;
  }

  .phones {
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
  }

  .phones a {
    padding: 0.75rem 1rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.14);
    text-decoration: none;
    text-align: center;
    text-underline-offset: unset;
  }

  .phones a:active {
    background: rgba(255, 255, 255, 0.22);
  }

  .site-footer {
    padding-left: max(1rem, env(safe-area-inset-left, 1rem));
    padding-right: max(1rem, env(safe-area-inset-right, 1rem));
    padding-bottom: max(1.5rem, env(safe-area-inset-bottom, 1.5rem));
  }

  .about-main {
    padding-left: max(1rem, env(safe-area-inset-left, 1rem));
    padding-right: max(1rem, env(safe-area-inset-right, 1rem));
  }
}
