/* ==========================================================================
   Vivinails – style.css
   Mobile-first, mályva színvilág, prémium letisztult megjelenés
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design tokenek
   -------------------------------------------------------------------------- */
:root {
  --white: #ffffff;
  --off-white: #faf7f8;
  --mauve-light: #d9a9b8;
  --mauve-dark: #7a3b52;
  --mauve-deep: #4a2536;
  --footer-grey: #2b2b2e;
  --text-dark: #2b2b2e;
  --text-light: #f5f5f5;

  --text-muted: #6b6169;
  --line: #ecdfe4;

  --font-head: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --header-h: 72px;
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 24px;

  --shadow-sm: 0 4px 16px rgba(74, 37, 54, .06);
  --shadow-md: 0 10px 30px rgba(74, 37, 54, .10);
  --shadow-lg: 0 20px 50px rgba(74, 37, 54, .16);

  --ease: cubic-bezier(.4, 0, .2, 1);
  --t: .3s var(--ease);

  --container: 1200px;
  --pad-x: 20px;
  --section-y: 48px;
}

/* --------------------------------------------------------------------------
   2. Reset / alapok
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

body.no-scroll { overflow: hidden; }

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

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 .5em;
  color: var(--mauve-deep);
}

p { margin: 0 0 1em; }

a {
  color: var(--mauve-dark);
  text-decoration: none;
  transition: color var(--t);
}

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

button { font-family: inherit; }

:focus-visible {
  outline: 2px solid var(--mauve-dark);
  outline-offset: 3px;
  border-radius: 4px;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.hidden { display: none !important; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

.icon {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

/* --------------------------------------------------------------------------
   3. Gombok
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  border: 1.5px solid transparent;
  border-radius: 50px;
  font-size: .92rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  text-align: center;
  transition: background-color var(--t), color var(--t), transform var(--t),
              box-shadow var(--t), border-color var(--t);
}

.btn--primary {
  background: linear-gradient(135deg, var(--mauve-dark), var(--mauve-deep));
  color: var(--white);
  box-shadow: 0 8px 22px rgba(122, 59, 82, .28);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background: linear-gradient(135deg, var(--mauve-deep), var(--mauve-dark));
  color: var(--white);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 30px rgba(122, 59, 82, .36);
}

.btn--ghost {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .65);
  color: var(--white);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  background: var(--white);
  color: var(--mauve-deep);
  transform: translateY(-3px) scale(1.02);
}

.btn--sm { padding: 10px 22px; font-size: .78rem; }
.btn--lg { padding: 16px 36px; }
.btn--block { width: 100%; }

.btn .icon { width: 18px; height: 18px; }

/* --------------------------------------------------------------------------
   4. Header
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: transparent;
  transition: background-color var(--t), box-shadow var(--t), backdrop-filter var(--t);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  box-shadow: 0 2px 20px rgba(74, 37, 54, .08);
}

.header__inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: .01em;
  color: var(--white);
  transition: color var(--t);
}

.logo span { color: var(--mauve-light); font-weight: 500; }

.site-header.is-scrolled .logo { color: var(--mauve-deep); }
.site-header.is-scrolled .logo span { color: var(--mauve-dark); }

.nav-desktop { display: none; }

.nav-desktop ul {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-desktop a {
  position: relative;
  font-size: .88rem;
  font-weight: 400;
  letter-spacing: .02em;
  color: rgba(255, 255, 255, .92);
  padding-block: 6px;
}

.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1.5px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t);
}

.nav-desktop a:hover::after,
.nav-desktop a:focus-visible::after,
.nav-desktop a.is-active::after { transform: scaleX(1); }

.site-header.is-scrolled .nav-desktop a { color: var(--text-dark); }
.site-header.is-scrolled .nav-desktop a:hover,
.site-header.is-scrolled .nav-desktop a.is-active { color: var(--mauve-dark); }

.header__cta { display: none; }

/* Hamburger */
.burger {
  width: 44px;
  height: 44px;
  display: grid;
  place-content: center;
  gap: 6px;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
}

.burger span {
  display: block;
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: var(--white);
  transition: transform var(--t), opacity var(--t), background-color var(--t);
}

.site-header.is-scrolled .burger span { background: var(--mauve-deep); }

body.menu-open .burger span { background: var(--white); }
body.menu-open .burger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
body.menu-open .burger span:nth-child(2) { opacity: 0; }
body.menu-open .burger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   5. Mobil menü
   -------------------------------------------------------------------------- */
.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 98;
  background: rgba(43, 43, 46, .5);
  opacity: 0;
  transition: opacity var(--t);
}

.menu-backdrop.is-open { opacity: 1; }

.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  z-index: 99;
  width: min(88vw, 360px);
  height: 100dvh;
  padding: calc(var(--header-h) + 24px) 32px 40px;
  background: linear-gradient(160deg, var(--mauve-deep), var(--mauve-dark) 70%);
  color: var(--text-light);
  transform: translateX(100%);
  transition: transform .38s var(--ease);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.mobile-menu.is-open { transform: translateX(0); }

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 28px;
}

.mobile-menu a {
  display: block;
  padding: 12px 0;
  font-family: var(--font-head);
  font-size: 1.35rem;
  color: var(--text-light);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  transition: color var(--t), padding-left var(--t);
}

.mobile-menu a:hover,
.mobile-menu a:focus-visible {
  color: var(--mauve-light);
  padding-left: 8px;
}

.mobile-menu__call {
  background: var(--white);
  color: var(--mauve-deep);
  border-bottom: 0;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .22);
}

.mobile-menu__call:hover,
.mobile-menu__call:focus-visible {
  background: var(--mauve-light);
  color: var(--mauve-deep);
  padding-left: 30px;
}

.mobile-menu__hours {
  margin: 18px 0 0;
  font-size: .82rem;
  text-align: center;
  color: rgba(245, 245, 245, .7);
}

/* --------------------------------------------------------------------------
   6. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: calc(var(--header-h) + 40px) 0 90px;
  /* CSERÉLENDŐ KÉP: hero háttér – assets/images/hero.jpg */
  background:
    linear-gradient(180deg, rgba(74, 37, 54, .72) 0%, rgba(74, 37, 54, .48) 45%, rgba(43, 43, 46, .78) 100%),
    url("../assets/images/hero.jpg") center 30% / cover no-repeat;
  color: var(--white);
  overflow: hidden;
}

.hero__content { max-width: 820px; }

.hero__eyebrow {
  margin-bottom: 18px;
  font-size: .78rem;
  font-weight: 400;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--mauve-light);
}

.hero__title {
  margin-bottom: .35em;
  font-size: clamp(2.4rem, 9vw, 3rem);
  font-weight: 600;
  line-height: 1.12;
  color: var(--white);
  text-shadow: 0 4px 30px rgba(0, 0, 0, .35);
}

.hero__sub {
  max-width: 620px;
  margin: 0 auto 34px;
  font-size: 1.02rem;
  font-weight: 300;
  color: rgba(255, 255, 255, .88);
}

.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 1.5px solid rgba(255, 255, 255, .5);
  border-radius: 20px;
}

.hero__scroll span {
  position: absolute;
  left: 50%;
  top: 9px;
  width: 3px;
  height: 7px;
  margin-left: -1.5px;
  border-radius: 2px;
  background: var(--white);
  animation: scrollDot 1.8s var(--ease) infinite;
}

@keyframes scrollDot {
  0%   { transform: translateY(0);    opacity: 1; }
  70%  { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0);    opacity: 0; }
}

/* Hero belépő animáció (staggered) */
.anim {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp .9s var(--ease) forwards;
  animation-delay: var(--d, 0s);
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* --------------------------------------------------------------------------
   7. Szekció alapok
   -------------------------------------------------------------------------- */
.section {
  padding-block: var(--section-y);
  scroll-margin-top: var(--header-h);
}

.section--alt { background: var(--off-white); }

.hero { scroll-margin-top: 0; }

.section__head {
  max-width: 680px;
  margin: 0 auto 34px;
  text-align: center;
}

.eyebrow {
  margin-bottom: 10px;
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--mauve-dark);
}

.section__title {
  position: relative;
  margin-bottom: 20px;
  font-size: clamp(1.85rem, 6vw, 2.4rem);
}

.section__head .section__title::after {
  content: "";
  display: block;
  width: 64px;
  height: 2px;
  margin: 18px auto 0;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--mauve-light), var(--mauve-dark));
}

.section__title--left::after {
  content: "";
  display: block;
  width: 64px;
  height: 2px;
  margin: 18px 0 0;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--mauve-light), var(--mauve-dark));
}

.section__lead {
  margin-bottom: 0;
  color: var(--text-muted);
  font-weight: 300;
}

/* --------------------------------------------------------------------------
   8. Bemutatkozás
   -------------------------------------------------------------------------- */
.about {
  display: grid;
  gap: 40px;
}

.about__text p {
  color: var(--text-muted);
  font-weight: 300;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 30px;
}

.badges li {
  padding: 8px 18px;
  border: 1px solid var(--line);
  border-radius: 50px;
  background: var(--off-white);
  font-size: .8rem;
  font-weight: 500;
  color: var(--mauve-dark);
}

.about__media {
  position: relative;
  order: -1;
}

.about__media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.about__stat {
  position: absolute;
  left: 16px;
  bottom: -18px;
  padding: 14px 22px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-md);
  text-align: center;
  line-height: 1.25;
}

.about__stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.45rem;
  color: var(--mauve-dark);
}

.about__stat span {
  font-size: .74rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   9. Szolgáltatások
   -------------------------------------------------------------------------- */
.cards {
  display: grid;
  gap: 20px;
}

.card {
  padding: 32px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--mauve-light);
}

.card h3 {
  margin-bottom: .4em;
  font-size: 1.22rem;
}

.card p {
  margin: 0;
  font-size: .93rem;
  font-weight: 300;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   10. Árlista
   -------------------------------------------------------------------------- */
.pricing {
  padding: 32px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.pricing__grid {
  display: grid;
  gap: 34px;
}

.price-block h3 {
  padding-bottom: 12px;
  margin-bottom: 6px;
  border-bottom: 2px solid var(--mauve-light);
  font-size: 1.12rem;
  color: var(--mauve-dark);
}

.price-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}

.price-list li:last-child { border-bottom: 0; }

.price-list span {
  font-size: .92rem;
  font-weight: 300;
  color: var(--text-muted);
}

.price-list b {
  font-weight: 600;
  font-size: .96rem;
  color: var(--mauve-deep);
  white-space: nowrap;
}

.pricing__note {
  margin: 34px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: .85rem;
  font-weight: 300;
  font-style: italic;
  text-align: center;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   11. Galéria
   -------------------------------------------------------------------------- */
.gallery {
  --gal-w: 78vw;
  max-width: var(--container);
  margin-inline: auto;
}

.gallery__track {
  display: flex;
  gap: 16px;
  padding-inline: var(--pad-x);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  /* a snap-pont a padding belső éléhez igazodjon, ne tapadjon a képernyő szélére */
  scroll-padding-inline: var(--pad-x);
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.gallery__track::-webkit-scrollbar { display: none; }

.gallery__item {
  flex: 0 0 auto;
  width: var(--gal-w);
  margin: 0;
  scroll-snap-align: start;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.gallery__item img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform .5s var(--ease);
}

.gallery__item:hover img { transform: scale(1.06); }

.gallery__item--ph {
  display: grid;
  place-content: center;
  gap: 10px;
  aspect-ratio: 4 / 5;
  background: linear-gradient(150deg, rgba(217, 169, 184, .35), rgba(122, 59, 82, .22));
  color: var(--mauve-deep);
  text-align: center;
}

.gallery__item--ph .icon { width: 34px; height: 34px; margin-inline: auto; }

.gallery__item--ph figcaption {
  font-size: .75rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.gallery__nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
}

.gal-btn {
  display: grid;
  place-content: center;
  width: 48px;
  height: 48px;
  border: 1.5px solid var(--mauve-light);
  border-radius: 50%;
  background: var(--white);
  color: var(--mauve-dark);
  cursor: pointer;
  transition: background var(--t), color var(--t), transform var(--t), opacity var(--t);
}

.gal-btn:hover:not(:disabled) {
  background: var(--mauve-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.gal-btn:disabled { opacity: .35; cursor: default; }

.gal-btn--prev .icon { transform: rotate(180deg); }

/* --------------------------------------------------------------------------
   12. Házirend
   -------------------------------------------------------------------------- */
.rules {
  display: grid;
  gap: 34px;
}

.rules__media img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.rules__list {
  display: grid;
  gap: 16px;
}

.rules__list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: .94rem;
  font-weight: 300;
  color: var(--text-muted);
}

.rules__list .icon {
  width: 22px;
  height: 22px;
  margin-top: 3px;
  padding: 3px;
  border-radius: 50%;
  background: rgba(217, 169, 184, .25);
  color: var(--mauve-dark);
  stroke-width: 2.4;
}

.rules__list strong {
  font-weight: 500;
  color: var(--text-dark);
}

.rules__thanks {
  margin: 26px 0 0;
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--mauve-dark);
}

/* --------------------------------------------------------------------------
   13. Footer / Kapcsolat
   -------------------------------------------------------------------------- */
.footer {
  padding-block: var(--section-y) 26px;
  background: var(--footer-grey);
  color: var(--text-light);
  scroll-margin-top: var(--header-h);
}

.footer__grid {
  display: grid;
  gap: 48px;
}

.footer__title {
  position: relative;
  padding-bottom: 14px;
  margin-bottom: 20px;
  font-size: 1.25rem;
  color: var(--white);
}

.footer__title::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 48px;
  height: 2px;
  border-radius: 2px;
  background: var(--mauve-light);
}

.footer__title--mt { margin-top: 38px; }

.footer__lead {
  font-size: .92rem;
  font-weight: 300;
  color: rgba(245, 245, 245, .72);
}

.hours li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  font-size: .92rem;
  font-weight: 300;
  color: rgba(245, 245, 245, .8);
}

.hours b { font-weight: 500; color: var(--white); white-space: nowrap; }

.contact-list {
  display: grid;
  gap: 14px;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .94rem;
  font-weight: 300;
  color: rgba(245, 245, 245, .82);
}

.contact-list .icon { width: 20px; height: 20px; color: var(--mauve-light); }

.contact-list a { color: rgba(245, 245, 245, .82); }
.contact-list a:hover { color: var(--mauve-light); }

.socials {
  display: flex;
  gap: 12px;
  margin-top: 26px;
}

.socials a {
  display: grid;
  place-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  color: var(--text-light);
  transition: background var(--t), color var(--t), transform var(--t), border-color var(--t);
}

.socials a:hover,
.socials a:focus-visible {
  background: var(--mauve-light);
  border-color: var(--mauve-light);
  color: var(--mauve-deep);
  transform: translateY(-3px);
}

/* Form */
.form__row { margin-bottom: 14px; }

.form__row--split {
  display: grid;
  gap: 14px;
}

.form input,
.form textarea {
  width: 100%;
  padding: 14px 20px;
  border: 1.5px solid rgba(255, 255, 255, .16);
  border-radius: 16px;
  background: rgba(255, 255, 255, .06);
  color: var(--text-light);
  font-family: inherit;
  font-size: .94rem;
  font-weight: 300;
  transition: border-color var(--t), background var(--t), box-shadow var(--t);
}

.form textarea { border-radius: var(--radius-sm); resize: vertical; min-height: 110px; }

.form input::placeholder,
.form textarea::placeholder { color: rgba(245, 245, 245, .45); }

.form input:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--mauve-light);
  background: rgba(255, 255, 255, .1);
  box-shadow: 0 0 0 4px rgba(217, 169, 184, .16);
}

.form button { margin-top: 8px; }

.form.is-sending button { opacity: .65; pointer-events: none; }

.form__error {
  margin: 14px 0 0;
  font-size: .86rem;
  color: var(--mauve-light);
}

.form__error a { color: var(--white); text-decoration: underline; }

.form-success {
  padding: 34px 28px;
  border: 1px solid rgba(217, 169, 184, .4);
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, rgba(217, 169, 184, .2), rgba(122, 59, 82, .3));
  text-align: center;
  animation: fadeUp .5s var(--ease) both;
}

.form-success .icon {
  width: 46px;
  height: 46px;
  margin: 0 auto 14px;
  padding: 10px;
  border-radius: 50%;
  background: var(--mauve-light);
  color: var(--mauve-deep);
  stroke-width: 2.4;
}

.form-success h3 {
  margin-bottom: .4em;
  font-size: 1.3rem;
  color: var(--white);
}

.form-success p {
  margin: 0;
  font-size: .92rem;
  font-weight: 300;
  color: rgba(245, 245, 245, .8);
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  text-align: center;
}

.footer__bottom p {
  margin: 0;
  font-size: .82rem;
  font-weight: 300;
  color: rgba(245, 245, 245, .55);
}

.footer__hours-inline {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__hours-inline .icon { width: 16px; height: 16px; color: var(--mauve-light); }

/* --------------------------------------------------------------------------
   14. Scroll-reveal
   -------------------------------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  will-change: opacity, transform;
}

[data-reveal="left"]  { transform: translate3d(-28px, 12px, 0); }
[data-reveal="right"] { transform: translate3d(28px, 12px, 0); }

[data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.cards [data-reveal].is-visible { transition-delay: var(--rd, 0s); }

/* --------------------------------------------------------------------------
   15. Breakpointok
   -------------------------------------------------------------------------- */

/* ---- Tablet: 768px ---- */
@media (min-width: 768px) {
  :root {
    --header-h: 80px;
    --pad-x: 32px;
    --section-y: 58px;
  }

  .hero__title { font-size: clamp(3rem, 6.5vw, 3.6rem); }
  .hero__sub { font-size: 1.1rem; }

  .hero__actions {
    flex-direction: row;
    justify-content: center;
    gap: 18px;
  }

  .about {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 48px;
  }

  .about__media { order: 0; }

  .cards { grid-template-columns: repeat(2, 1fr); gap: 24px; }

  .pricing { padding: 48px 44px; }

  .pricing__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 56px;
  }

  .gallery { --gal-w: calc((100% - 2 * 18px) / 2.4); }
  .gallery__track { gap: 18px; }

  .rules {
    grid-template-columns: .9fr 1.1fr;
    align-items: start;
    gap: 44px;
  }

  .rules__media { position: sticky; top: calc(var(--header-h) + 24px); }
  .rules__media img { aspect-ratio: 3 / 4; }

  .footer__grid { grid-template-columns: 1fr 1fr; gap: 56px; }

  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* ---- Desktop: 1024px ---- */
@media (min-width: 1024px) {
  :root {
    --header-h: 88px;
    --pad-x: 40px;
    --section-y: 64px;
  }

  .nav-desktop { display: block; }
  .header__cta { display: inline-flex; }
  .burger { display: none; }
  .mobile-menu, .menu-backdrop { display: none !important; }

  .hero { background-attachment: fixed; }
  .hero__title { font-size: clamp(3.4rem, 4.6vw, 4.5rem); }
  .hero__sub { font-size: 1.15rem; }

  .about { gap: 60px; }
  .about__stat { left: -26px; bottom: 32px; padding: 18px 28px; }
  .about__stat strong { font-size: 1.8rem; }

  .cards { grid-template-columns: repeat(3, 1fr); gap: 28px; }

  .pricing { padding: 46px 56px; }
  .pricing__grid { grid-template-columns: repeat(2, 1fr); gap: 30px 72px; }
  .price-block--wide { grid-column: 1 / -1; }
  .price-block--wide .price-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 80px;
  }
  .price-block--wide .price-list li:nth-last-child(2) { border-bottom: 0; }

  .gallery { --gal-w: calc((100% - 4 * 20px) / 5); }
  .gallery__track { gap: 20px; }

  .gallery__nav { justify-content: flex-end; }

  .rules { gap: 54px; }

  .footer__grid { grid-template-columns: 1fr 1.15fr; gap: 80px; }
  .form__row--split { grid-template-columns: 1fr 1fr; }
}

/* ---- Large desktop: 1440px ---- */
@media (min-width: 1440px) {
  :root {
    --container: 1280px;
    --section-y: 68px;
  }

  .hero__title { font-size: 4.5rem; }
}

/* --------------------------------------------------------------------------
   16. Csökkentett mozgás
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }

  .anim, [data-reveal] { opacity: 1; transform: none; }
}
