/* ============================================================
   COOKIE CONSENT BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 0 1rem 1rem;
  transform: translateY(110%);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: none;
}

.cookie-banner--visible {
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-banner--hiding {
  transform: translateY(110%);
  pointer-events: none;
}

.cookie-banner__inner {
  max-width: 960px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 18px 18px 0 0;
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.14);
  border-top: 3px solid var(--color-primary);
  padding: 1.6rem 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-banner__content {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex: 1;
  min-width: 0;
}

.cookie-banner__icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 0.1rem;
}

.cookie-banner__text strong {
  display: block;
  font-size: 1rem;
  color: var(--color-text);
  margin-bottom: 0.35rem;
}

.cookie-banner__text p {
  font-size: 0.87rem;
  color: var(--color-gray);
  line-height: 1.6;
  margin: 0;
}

.cookie-banner__text a {
  color: var(--color-primary);
  text-decoration: underline;
  font-weight: 600;
}

.cookie-banner__text a:hover { opacity: 0.75; }

.cookie-banner__actions {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  flex-shrink: 0;
}

.cookie-banner__actions[hidden],
.cookie-banner__settings[hidden] {
  display: none;
}

.cookie-banner__decline {
  font-size: 0.88rem !important;
  padding: 0.65rem 1.4rem !important;
}

.cookie-banner__accept {
  font-size: 0.88rem !important;
  padding: 0.65rem 1.4rem !important;
}

.cookie-banner__save {
  font-size: 0.88rem !important;
  padding: 0.65rem 1.4rem !important;
}

.cookie-banner__customize {
  font-size: 0.88rem !important;
  padding: 0.65rem 1.4rem !important;
}

.cookie-banner__settings {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.cookie-banner__option {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  cursor: pointer;
}

.cookie-banner__option input[type="checkbox"] {
  margin-top: 0.25rem;
  flex-shrink: 0;
  width: 1.1rem;
  height: 1.1rem;
  accent-color: var(--color-primary);
}

.cookie-banner__option input[type="checkbox"]:disabled {
  cursor: not-allowed;
}

.cookie-banner__option span {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.cookie-banner__option strong {
  font-size: 0.9rem;
  color: var(--color-text);
}

.cookie-banner__option small {
  font-size: 0.8rem;
  color: var(--color-gray);
  line-height: 1.5;
}

@media (max-width: 640px) {
  .cookie-banner__inner {
    flex-direction: column;
    gap: 1.2rem;
    padding: 1.4rem 1.2rem;
    border-radius: 16px 16px 0 0;
  }

  .cookie-banner__actions {
    width: 100%;
    justify-content: stretch;
    flex-wrap: wrap;
  }

  .cookie-banner__actions .btn {
    flex: 1;
    justify-content: center;
    text-align: center;
  }
}

/* ============================================================
   VARIABLES & ROOT
   ============================================================ */
:root {
  color-scheme: light;
  --color-primary: #8c1fa3;
  --color-primary-dark: #6b1880;
  --color-primary-light: #a83cc0;
  --color-secondary: #50bfea;
  --color-gold: #d3af37;
  --color-gold-dark: #b8981e;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-bg-light: #f9f5fc;
  --color-bg-blue: #f0f9fe;
  --color-text: #1a1a1a;
  --color-gray: #5a5a6a;
  --color-gray-light: #e8e4ed;

  --font-heading: 'Playfair Display', serif;
  --font-body: 'Lato', sans-serif;

  --max-width: 1200px;
  --nav-height: 76px;

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition: 0.3s var(--ease);
  --transition-slow: 0.7s var(--ease);

  --shadow-sm: 0 2px 12px rgba(140, 31, 163, 0.08);
  --shadow-md: 0 6px 30px rgba(140, 31, 163, 0.13);
  --shadow-lg: 0 16px 60px rgba(140, 31, 163, 0.18);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--color-text);
  line-height: 1.75;
  overflow-x: hidden;
  background: var(--color-white);
}

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

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

ul { list-style: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.25;
  font-weight: 700;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section { padding: 6rem 0; }

.section-label {
  display: inline-block;
  background: rgba(140, 31, 163, 0.08);
  color: var(--color-primary);
  padding: 0.35rem 1.1rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.section-title {
  color: var(--color-primary);
  margin-bottom: 0.8rem;
}

.section-title.center { text-align: center; }

.section-subtitle {
  color: var(--color-gray);
  font-size: 1.1rem;
  max-width: 600px;
  margin-bottom: 3.5rem;
}

.section-subtitle.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.gold-line {
  display: inline-block;
  position: relative;
  padding-bottom: 6px;
}

.gold-line::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), transparent);
  border-radius: 2px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2.2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}
.btn-primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(140, 31, 163, 0.35);
}

/* Blocked state: the contact form's submit stays disabled until the privacy
   consent is ticked, and while a submission is in flight. Grey rather than
   gold, so it is obvious at a glance that the button is not actionable yet. */
.btn:disabled,
.btn:disabled:hover,
.btn[aria-disabled="true"],
.btn[aria-disabled="true"]:hover {
  background: #d6d3cd;
  color: #5a554f;
  border-color: #d6d3cd;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-gold {
  background: var(--color-gold);
  color: var(--color-white);
  border-color: var(--color-gold);
}
.btn-gold:hover {
  background: var(--color-gold-dark);
  border-color: var(--color-gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(211, 175, 55, 0.4);
}

.btn-outline-white {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.55);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.9);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
}

/* ============================================================
   SCROLL-TRIGGER ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.from-left  { transform: translateX(-36px); }
.reveal.from-right { transform: translateX(36px); }
.reveal.scale-up   { transform: scale(0.95); }

.reveal.visible {
  opacity: 1;
  transform: translate(0) scale(1);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 900;
  padding: 1.1rem 0;
  transition: background var(--transition-slow), padding var(--transition-slow), box-shadow var(--transition-slow);
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 0.65rem 0;
  box-shadow: 0 1px 24px rgba(0,0,0,0.1);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-white, #ffffff);
  transition: color var(--transition-slow);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 10px;
  forced-color-adjust: none;
}

.nav.scrolled .nav-logo { color: var(--color-primary, #8c1fa3); }

/* Logo SVG symbol colors */
.nav-logo .petal-side   { fill: rgba(255,255,255,0.5);       transition: fill var(--transition-slow); }
.nav-logo .petal-center { fill: var(--color-gold, #d3af37);  transition: fill var(--transition-slow); }
.nav-logo .petal-dot    { fill: #fff;                         transition: fill var(--transition-slow); }

.nav.scrolled .nav-logo .petal-side   { fill: #a83cc0; }
.nav.scrolled .nav-logo .petal-center { fill: var(--color-gold, #d3af37); }
.nav.scrolled .nav-logo .petal-dot    { fill: #c084e0; }

/* Logo SVG size — matches the two-line text block height */
.nav-logo-symbol { height: 2.2rem; width: auto; flex-shrink: 0; }

/* Logo text structure */
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.nav-logo-name { font-style: italic; }
.nav-logo-sub  {
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  position: relative;
  transition: color var(--transition);
}

.nav.scrolled .nav-links a { color: var(--color-text); }

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  border-radius: 2px;
  transition: width var(--transition);
}

.nav-links a:hover { color: var(--color-gold); }
.nav.scrolled .nav-links a:hover { color: var(--color-primary); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta-link {
  background: var(--color-gold) !important;
  color: var(--color-white) !important;
  padding: 0.55rem 1.4rem;
  border-radius: 50px;
  font-weight: 700 !important;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition) !important;
}
.nav-cta-link::after { display: none !important; }
.nav-cta-link:hover {
  background: var(--color-gold-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(211, 175, 55, 0.45);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px 10px;
  z-index: 1000;
  border-radius: 8px;
  background: rgba(211, 175, 55, 0.12);
  border: 1px solid rgba(211, 175, 55, 0.35);
  transition: background var(--transition), border-color var(--transition);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-gold);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav.scrolled .hamburger {
  background: rgba(107, 24, 128, 0.1);
  border-color: rgba(107, 24, 128, 0.35);
}
.nav.scrolled .hamburger span { background: var(--color-primary); }

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: translateX(10px); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav overlay — compact dropdown */
.nav-overlay {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 1rem;
  right: 1rem;
  background: rgba(249, 245, 252, 0.60);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 890;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
  padding: 0.5rem 0 0.75rem;
  border: 1px solid rgba(211, 175, 55, 0.25);
  border-radius: 0 0 16px 16px;
  box-shadow: 0 8px 32px rgba(107, 24, 128, 0.13);
}

.nav-overlay.open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.nav-overlay a {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--color-text);
  transition: color var(--transition), background var(--transition), border-color var(--transition);
  padding: 0.75rem 1.5rem;
  border-left: 3px solid transparent;
}

.nav-overlay a:hover {
  color: var(--color-primary);
  background: rgba(107, 24, 128, 0.05);
  border-left-color: var(--color-gold);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  min-height: 100vh;
  background: linear-gradient(145deg, #a34cb5 0%, #8c3aaa 45%, #3a6ba8 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
}

/* Decorative orbs */
.hero::before {
  content: '';
  position: absolute;
  top: -15%;
  right: -10%;
  width: 70vw;
  height: 70vw;
  background: radial-gradient(circle, rgba(80, 191, 234, 0.12) 0%, transparent 65%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -15%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(140, 31, 163, 0.18) 0%, transparent 65%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content { color: var(--color-white); }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(211, 175, 55, 0.15);
  border: 1px solid rgba(211, 175, 55, 0.4);
  color: var(--color-gold);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
}

.hero-badge::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-gold);
}

.hero-title {
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  margin-bottom: 0.15rem;
  letter-spacing: -0.5px;
}

.hero-title em {
  color: var(--color-gold);
  font-style: normal;
}

.hero-quote-author {
  font-size: 1.35rem;
  color: var(--color-gold);
  font-style: italic;
  margin-top: 0;
  margin-bottom: 2.4rem;
}

.hero-motto {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.78);
  font-style: italic;
  line-height: 1.7;
  border-left: 3px solid var(--color-secondary);
  padding-left: 1.2rem;
  margin-bottom: 2.8rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Hero image */
.hero-visual { position: relative; }

.hero-blob {
  position: relative;
  border-radius: 62% 38% 52% 48% / 44% 58% 42% 56%;
  overflow: hidden;
  aspect-ratio: 3/4;
  max-height: 580px;
  box-shadow: 0 24px 70px rgba(0,0,0,0.45);
  animation: morphBlob 12s ease-in-out infinite;
}

@keyframes morphBlob {
  0%, 100% { border-radius: 62% 38% 52% 48% / 44% 58% 42% 56%; }
  33%       { border-radius: 48% 52% 38% 62% / 56% 44% 58% 42%; }
  66%       { border-radius: 54% 46% 62% 38% / 42% 56% 46% 54%; }
}

.hero-blob::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 55%, rgba(30,5,50,0.55));
  z-index: 1;
}

.hero-blob img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.1s linear;
}

.hero-ring {
  position: absolute;
  inset: -12px;
  border-radius: inherit;
  border: 2px solid rgba(211, 175, 55, 0.25);
  animation: morphBlob 12s ease-in-out infinite;
  pointer-events: none;
}

/* Scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.45);
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: scrollBounce 2.2s ease-in-out infinite;
  z-index: 5;
}

.scroll-hint svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.45; }
  50%       { transform: translateX(-50%) translateY(8px); opacity: 0.8; }
}

/* ============================================================
   ABOUT PREVIEW (landing)
   ============================================================ */
.about-preview { background: var(--color-white); }

.about-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-photo-wrap { position: relative; }

.about-photo-blob {
  border-radius: 30% 70% 60% 40% / 30% 40% 60% 70%;
  overflow: hidden;
  aspect-ratio: 3/4;
  max-height: 540px;
  box-shadow: var(--shadow-lg);
}

.about-photo-blob img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about-badge {
  position: absolute;
  bottom: 2rem;
  right: -1.5rem;
  background: var(--color-gold);
  color: var(--color-white);
  padding: 1rem 1.5rem;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(211, 175, 55, 0.45);
}

.about-badge strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  line-height: 1;
}

.about-badge span {
  font-size: 0.75rem;
  opacity: 0.9;
  letter-spacing: 0.5px;
}

.about-text { }

.about-text .section-label { margin-bottom: 0.6rem; }

.about-text p {
  color: var(--color-gray);
  margin-bottom: 1.1rem;
  font-size: 1.03rem;
}

.about-text .btn { margin-top: 1.2rem; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  background: var(--color-bg-light);
  position: relative;
}

.testimonials::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 22rem;
  color: var(--color-primary);
  opacity: 0.04;
  position: absolute;
  top: -4rem;
  left: 1rem;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.testimonials-nav-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.testi-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--color-primary);
  background: transparent;
  color: var(--color-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), color var(--transition), opacity var(--transition), transform var(--transition);
}

.testi-arrow:hover:not(:disabled) {
  background: var(--color-primary);
  color: #fff;
  transform: scale(1.08);
}

.testi-arrow:disabled {
  opacity: 0.25;
  cursor: default;
}

.testi-arrow svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.testimonials-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  flex: 1;
  min-width: 0;
}

.testimonials-wrap::-webkit-scrollbar {
  display: none;
}

.testimonials-grid {
  display: flex;
  gap: 1.8rem;
  scroll-snap-type: x mandatory;
  width: max-content;
}

.testimonial-card {
  flex: 0 0 clamp(260px, 28vw, 380px);
  scroll-snap-align: start;
  background: var(--color-white);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
  border-bottom: 3px solid transparent;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--color-gold);
}

.quote-icon {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  color: var(--color-primary);
  opacity: 0.18;
  line-height: 1;
  margin-bottom: -1rem;
}

.testimonial-stars {
  color: var(--color-gold);
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-style: italic;
  color: var(--color-gray);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 0.98rem;
}

.testimonial-author {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-text);
}

.testimonial-type {
  color: var(--color-primary);
  font-size: 0.8rem;
  margin-top: 0.15rem;
}

/* ============================================================
   BOOKING SECTION
   ============================================================ */
.booking {
  background: linear-gradient(150deg, var(--color-bg-light) 0%, var(--color-bg-blue) 100%);
  padding-top: 3.6rem;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}

.booking-info p {
  color: var(--color-gray);
  margin-bottom: 2rem;
  font-size: 1.03rem;
}

.booking-perks {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.perk-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--color-white);
  padding: 1rem 1.2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.perk-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.perk-icon.purple { background: rgba(140, 31, 163, 0.1); }
.perk-icon.blue   { background: rgba(80, 191, 234, 0.12); }
.perk-icon.gold   { background: rgba(211, 175, 55, 0.12); }

.perk-text strong {
  display: block;
  font-size: 0.8rem;
  color: var(--color-gray);
  font-weight: 400;
  margin-bottom: 0.1rem;
}

.perk-text span {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-text);
}

.booking-widget {
  background: var(--color-white);
  border-radius: 20px;
  padding: 1.2rem;
  box-shadow: var(--shadow-md);
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  min-height: 45vh;
  background: linear-gradient(145deg, #a34cb5 0%, #8c3aaa 45%, #3a6ba8 100%);
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(80, 191, 234, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-content {
  color: var(--color-white);
  max-width: 680px;
  padding: 4rem 0;
}

.page-hero-content .hero-badge { margin-bottom: 1.2rem; }

.page-hero-content h1 { margin-bottom: 1rem; }

/* Blog post pages: the hero label looks like the page title but must not be an
   <h1> — the article headline is the H1 there. Mirrors the h1 styling above.
   The compound selector outranks ".page-hero-content p" so the paragraph rules
   (smaller font, reduced opacity) do not bleed in. */
.page-hero-content .page-hero-title {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  margin-bottom: 1rem;
  opacity: 1;
}

@media (max-width: 480px) {
  .page-hero-content .page-hero-title { font-size: 2rem; }
}

.page-hero-content p {
  font-size: 1.15rem;
  opacity: 0.82;
  line-height: 1.7;
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-section { background: var(--color-white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.service-card {
  background: var(--color-white);
  border: 1px solid var(--color-gray-light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

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

.service-card-accent {
  height: 5px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
}

.service-card-body { padding: 2.2rem 2.2rem 2rem; }

.service-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(140,31,163,0.1), rgba(80,191,234,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.4rem;
}

.service-card h3 {
  color: var(--color-primary);
  margin-bottom: 0.9rem;
}

.service-card p {
  color: var(--color-gray);
  font-size: 0.97rem;
  line-height: 1.8;
  margin-bottom: 1.4rem;
}

.service-features {
  margin-bottom: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--color-gray);
}

.service-features li::before {
  content: '✓';
  color: var(--color-secondary);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

.price-chip {
  display: inline-block;
  background: rgba(211, 175, 55, 0.1);
  border: 1.5px solid var(--color-gold);
  color: var(--color-gold-dark);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.88rem;
}

/* Services CTA banner */
.services-cta-banner {
  background: linear-gradient(135deg, var(--color-primary), #1a2a5e);
  border-radius: 24px;
  padding: 3.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 4rem;
  color: var(--color-white);
}

.services-cta-banner h3 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.services-cta-banner p {
  opacity: 0.82;
  max-width: 420px;
}

/* ============================================================
   SERVICE ACCORDION
   ============================================================ */
.services-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.3rem;
}

/* 5th item alone in its row → span both columns */
.services-list .svc-item:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.svc-item {
  background: var(--color-white);
  border: 1px solid var(--color-gray-light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(0,0,0,0.055);
  transition: box-shadow 0.32s ease, transform 0.32s ease, border-color 0.32s ease;
  position: relative;
}

.svc-item:hover {
  box-shadow: 0 10px 36px rgba(140,31,163,0.12);
  transform: translateY(-3px);
  border-color: rgba(140,31,163,0.26);
}

.svc-accent {
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
}

.svc-main {
  padding: 1.9rem 2.4rem 1.6rem;
  position: relative;
}

/* Ghost service number — decorative background element */
.svc-num {
  position: absolute;
  top: 1rem;
  right: 1.8rem;
  font-size: 4.5rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  color: var(--color-primary);
  opacity: 0.065;
  line-height: 1;
  user-select: none;
  pointer-events: none;
  letter-spacing: -2px;
}

.svc-header {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.3rem;
}

.svc-icon {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  background: linear-gradient(135deg, rgba(140,31,163,0.1), rgba(80,191,234,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  flex-shrink: 0;
}

.svc-title {
  color: var(--color-primary);
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.25;
}

.svc-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
}

.svc-bullets li {
  padding: 0.17rem 0 0.17rem 1.2rem;
  position: relative;
  font-size: 0.9rem;
  color: var(--color-gray);
  line-height: 1.6;
}

.svc-bullets li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--color-secondary);
  font-weight: 700;
}

/* Footer: divider line + availability + actions on one row */
.svc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.7rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-gray-light);
}

.svc-availability {
  font-size: 0.86rem;
  color: var(--color-gray);
  font-style: italic;
  margin: 0;
  flex: 1;
  min-width: 0;
}

.svc-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

/* Underline-style text button — no border box */
.svc-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: var(--color-primary);
  font-size: 0.88rem;
  font-weight: 600;
  font-family: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(140,31,163,0.28);
  transition: color 0.22s, text-decoration-color 0.22s;
  user-select: none;
  white-space: nowrap;
}

.svc-toggle:hover {
  color: var(--color-primary-dark);
  text-decoration-color: var(--color-primary-dark);
}

.svc-toggle[aria-expanded="true"] {
  text-decoration-color: rgba(140,31,163,0.6);
}

.svc-chevron {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: transform 0.38s cubic-bezier(0.4,0,0.2,1);
}

.svc-toggle[aria-expanded="true"] .svc-chevron {
  transform: rotate(180deg);
}

/* Smooth expand via CSS grid-row trick */
.svc-details {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.46s cubic-bezier(0.4,0,0.2,1);
}

.svc-details.is-open {
  grid-template-rows: 1fr;
}

.svc-details-inner { overflow: hidden; }

/* Expanded detail panel — soft lavender background */
.svc-details-content {
  background: var(--color-bg-light);
  padding: 1.8rem 2.4rem 2.1rem;
  border-top: 1px solid rgba(140,31,163,0.1);
}

.svc-details-content p {
  color: var(--color-gray);
  font-size: 0.96rem;
  line-height: 1.92;
  margin: 0 0 1.1rem;
}

.svc-details-content p:last-child { margin-bottom: 0; }

.svc-detail-list {
  list-style: none;
  padding: 0;
  margin: 0.4rem 0 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.svc-detail-list li {
  padding-left: 1.4rem;
  position: relative;
  font-size: 0.94rem;
  color: var(--color-gray);
  line-height: 1.75;
}

.svc-detail-list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--color-secondary);
  font-weight: 700;
}

/* Pull-quote within detail */
.svc-quote {
  font-style: italic;
  color: var(--color-primary-dark);
  border-left: 3px solid var(--color-gold);
  background: rgba(211,175,55,0.06);
  border-radius: 0 8px 8px 0;
  padding: 0.7rem 1rem 0.7rem 1.2rem;
  margin: 0.9rem 0 0 !important;
  font-size: 0.94rem !important;
  line-height: 1.78 !important;
}

@media (max-width: 768px) {
  .services-list { grid-template-columns: 1fr; }
  .services-list .svc-item:last-child:nth-child(odd) { grid-column: auto; }
  .svc-main { padding: 1.5rem 1.4rem 1.3rem; }
  .svc-num { font-size: 3.2rem; right: 1rem; top: 0.9rem; }
  .svc-details-content { padding: 1.5rem 1.4rem 1.7rem; }
  .svc-footer { flex-direction: column; align-items: flex-start; }
  .svc-actions { width: 100%; justify-content: flex-end; }
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section { background: var(--color-white); padding-top: 0.5rem; }

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border-radius: 10px;
  background: transparent;
}

/* Questions styled like the "Ezekkel a témákkal keress bátran" chips on rolam.html */
.faq-question {
  list-style: none;
  cursor: pointer;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text);
  background: rgba(140, 31, 163, 0.06);
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  user-select: none;
  transition: background var(--transition);
}

.faq-question:hover { background: rgba(140, 31, 163, 0.12); }

.faq-question::before {
  content: '◆';
  color: var(--color-primary);
  font-size: 0.55rem;
  flex-shrink: 0;
}

.faq-item[open] .faq-question {
  background: var(--color-primary);
  color: #fff;
}

.faq-item[open] .faq-question::before { color: var(--color-gold); }

.faq-question::-webkit-details-marker { display: none; }

.faq-question::after {
  content: '+';
  margin-left: auto;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--color-primary);
  flex-shrink: 0;
  transition: transform 0.25s;
}

.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
  color: #fff;
}

.faq-answer {
  padding: 1rem 1rem 0.6rem 1.55rem;
  color: var(--color-gray);
  line-height: 1.75;
  font-size: 0.97rem;
}

.faq-answer p { margin: 0 0 0.8rem; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer a { color: var(--color-primary); text-decoration: underline; }
.faq-answer strong { color: var(--color-primary, #8c1fa3); font-weight: 600; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-full { background: var(--color-white); }

.about-full-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 5rem;
  align-items: start;
}

.about-sticky-photo {
  position: sticky;
  top: calc(var(--nav-height) + 2rem);
}

.about-sticky-photo-frame {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 1.5rem;
}

.about-sticky-photo-frame img { width: 100%; }

.about-contact-card {
  background: var(--color-bg-light);
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid var(--color-gray-light);
}

.about-contact-card p {
  font-size: 0.88rem;
  color: var(--color-gray);
  margin-bottom: 0.3rem;
}

.about-contact-card a {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 0.95rem;
  display: block;
  margin-bottom: 1rem;
}

.about-contact-card a:hover { opacity: 0.8; }

.about-text-content .section-title { margin-bottom: 1.5rem; }

.about-text-content strong { color: var(--color-primary, #8c1fa3); font-weight: 600; }

.about-text-content p {
  color: var(--color-gray);
  margin-bottom: 1.2rem;
  font-size: 1.03rem;
  line-height: 1.85;
}

.about-quote {
  background: linear-gradient(135deg, var(--color-bg-light), var(--color-bg-blue));
  border-left: 4px solid var(--color-primary);
  padding: 1.5rem 2rem;
  border-radius: 0 14px 14px 0;
  margin: 2.5rem 0;
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--color-primary);
  font-size: 1.15rem;
  line-height: 1.6;
}

.rolam-quote-author {
  margin-top: 0.3rem;
  font-size: 1rem;
  color: var(--color-gold);
  font-style: italic;
  font-family: var(--font-heading);
}

.about-text-content h3 {
  color: var(--color-primary);
  margin: 2.5rem 0 1rem;
}

.specialties-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}

.specialties-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  margin-top: 1rem;
}

.specialty-chip {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.6rem 0.9rem;
  cursor: pointer;
  user-select: none;
  background: rgba(140, 31, 163, 0.06);
  border-radius: 10px;
  font-size: 0.88rem;
  color: var(--color-text);
  transition: background var(--transition);
}

.specialty-chip:hover { background: rgba(140, 31, 163, 0.12); }

.specialty-chip.active {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

.specialty-chip.active::before { color: var(--color-gold); }

.specialty-desc-panel {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  padding: 0 1.2rem;
  background: rgba(140, 31, 163, 0.07);
  border-left: 3px solid var(--color-primary);
  border-radius: 0 10px 10px 0;
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.75;
  transition: max-height 0.4s ease, opacity 0.35s ease, padding 0.4s ease;
}

.specialty-desc-panel.open {
  max-height: 300px;
  opacity: 1;
  padding: 0.85rem 1.2rem;
}

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.specialty-chip::before {
  content: '◆';
  color: var(--color-primary);
  font-size: 0.55rem;
  flex-shrink: 0;
}

/* ============================================================
   BOOKING PAGE (standalone)
   ============================================================ */
.booking-page-section {
  background: linear-gradient(150deg, var(--color-bg-light), var(--color-bg-blue));
}

/* ============================================================
   PRIVACY PAGE
   ============================================================ */
.privacy-wrap {
  max-width: 780px;
  margin: 0 auto;
  padding: 5rem 2rem 7rem;
}

.privacy-wrap h1 {
  color: var(--color-primary);
  margin-bottom: 2.5rem;
  padding-top: var(--nav-height);
}

.privacy-wrap h2 {
  color: var(--color-primary);
  font-size: 1.3rem;
  margin: 2.5rem 0 0.8rem;
}

.privacy-wrap p,
.privacy-wrap li {
  color: var(--color-gray);
  line-height: 1.85;
  margin-bottom: 0.9rem;
  font-size: 0.98rem;
}

.privacy-wrap ul {
  list-style: disc;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.privacy-wrap ul li { margin-bottom: 0.4rem; }

.privacy-wrap a { color: var(--color-primary); }
.privacy-wrap a:hover { text-decoration: underline; }
.privacy-wrap a.btn-primary { color: var(--color-white); }
.privacy-wrap a.btn-primary:hover { color: var(--color-white); text-decoration: none; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #100118;
  color: rgba(255,255,255,0.65);
  padding: 4.5rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-white);
  margin-bottom: 1rem;
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.75;
  max-width: 300px;
  margin-bottom: 1.2rem;
}

.footer-email-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--color-gold);
  font-weight: 600;
  font-size: 0.9rem;
  transition: opacity var(--transition);
}

.footer-email-link:hover { opacity: 0.75; }

.footer-col-title {
  font-family: var(--font-heading);
  color: var(--color-white);
  font-size: 1rem;
  margin-bottom: 1.2rem;
}

/* gap is 0 because the links carry their own vertical padding below — keeping
   both would push the footer noticeably taller for no extra tap area. */
.footer-links { display: flex; flex-direction: column; gap: 0; }

.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  transition: color var(--transition);
  /* The link text is only ~17px tall, below the 24x24 CSS px minimum of
     WCAG 2.2 AA (2.5.8 Target Size). inline-block + vertical padding grows the
     tappable area to ~29px without changing the type size or colour. */
  display: inline-block;
  padding: 6px 0;
}

.footer-links a:hover { color: var(--color-gold); }

/* Legal-only footer column: it has no "Oldalak" heading any more, so the links
   would start higher than the neighbouring column's. The offset matches the
   .footer-col-title height + its margin-bottom. */
.footer-links--legal { padding-top: 2.5rem; }

.footer-social {
  display: flex;
  gap: 0.8rem;
  margin-top: 0.2rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.footer-social a:hover {
  border-color: var(--color-gold);
  background: rgba(211, 175, 55, 0.12);
}

.footer-social svg {
  width: 16px;
  height: 16px;
  fill: rgba(255,255,255,0.7);
  transition: fill var(--transition);
}

.footer-social a:hover svg { fill: var(--color-gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}

.footer-bottom a {
  color: rgba(211, 175, 55, 0.85);
  transition: color var(--transition);
}

.footer-bottom a:hover { color: var(--color-gold); }

/* "Utoljára frissítve" — deliberately quiet. AI answer engines and search
   crawlers read the freshness of a page from visible text like this, so it
   needs to be in the markup, but it should not compete with the content. */
.footer-updated {
  opacity: 0.65;
  font-size: 0.78rem;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
/* Contact page two-column layout */
.contact-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-aside {
  position: sticky;
  top: calc(var(--nav-height) + 2rem);
}

.contact-aside-photo {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--color-bg-light);
  box-shadow: 0 12px 40px rgba(140, 31, 163, 0.12);
}

.contact-aside-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.contact-aside-note {
  margin-top: 1.4rem;
  padding: 1.2rem 1.4rem;
  background: var(--color-bg-light);
  border-radius: 14px;
  border-left: 3px solid var(--color-gold);
  font-style: italic;
  color: var(--color-gray);
  font-size: 0.93rem;
  line-height: 1.75;
}

.contact-wrap {
  width: 100%;
}

.form-group {
  margin-bottom: 1.6rem;
}

.form-label {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.form-label .req {
  color: var(--color-primary);
  margin-left: 0.15rem;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1.5px solid #d8d8e0;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  background: #fff;
  box-sizing: border-box;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-control:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(140, 31, 163, 0.1);
}

.form-control.invalid {
  border-color: #e53e3e;
  box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 220px;
  line-height: 1.7;
}

.form-error {
  display: none;
  color: #c53030;
  font-size: 0.83rem;
  margin-top: 0.4rem;
}

.form-error.visible { display: block; }

.char-counter {
  text-align: right;
  font-size: 0.8rem;
  color: #b0b0b8;
  margin-top: 0.35rem;
  transition: color 0.2s;
}

.char-counter.warn  { color: #c05621; }
.char-counter.limit { color: #c53030; }

.form-feedback {
  padding: 1rem 1.4rem;
  border-radius: 0 12px 12px 0;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  display: none;
}

.form-feedback.visible { display: block; }

.form-feedback--success {
  background: rgba(72, 187, 120, 0.1);
  border-left: 3px solid #48bb78;
  color: #276749;
}

.form-feedback--error {
  background: rgba(229, 62, 62, 0.08);
  border-left: 3px solid #e53e3e;
  color: #c53030;
}

/* ============================================================
   BLOG
   ============================================================ */
/* Two-column layout: photo on the left, post list on the right.
   The list may grow taller than the photo over time — that is fine. */
.blog-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 2.5rem;
  align-items: start;
  max-width: 1120px;
  margin: 0 auto;
}

/* Hero photo — kept about 3 blog cards tall */
.blog-hero-image {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.blog-hero-image img {
  display: block;
  width: 100%;
  height: 620px;
  object-fit: cover;
  object-position: center;
}

.blog-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 0;
  min-width: 0;
}

.blog-card {
  display: flex;
  gap: 1.8rem;
  align-items: stretch;
  background: var(--color-white);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}

.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

/* Thumbnail on the left of each card */
.blog-card-thumb {
  flex: 0 0 240px;
  align-self: stretch;
  overflow: hidden;
}

.blog-card-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.blog-card:hover .blog-card-thumb img {
  transform: scale(1.05);
}

.blog-card-body {
  flex: 1;
  min-width: 0;
  padding: 1.8rem 2rem 1.8rem 0;
  display: flex;
  flex-direction: column;
}

.blog-card-meta {
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-gold-dark);
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.blog-card-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  line-height: 1.35;
  margin: 0 0 0.7rem;
}

.blog-card-title a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition);
}

.blog-card-title a:hover {
  color: var(--color-primary-dark);
}

.blog-card-excerpt {
  color: var(--color-gray);
  line-height: 1.7;
  margin: 0 0 1rem;
}

.blog-readmore {
  margin-top: auto;
  align-self: flex-start;
  color: var(--color-primary);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.92rem;
  transition: color var(--transition);
}

.blog-readmore:hover {
  color: var(--color-primary-dark);
}

/* Shown while the blog has no posts yet. */
.blog-empty {
  text-align: center;
  padding: 3rem 1.5rem;
  color: var(--color-gray);
  background: var(--color-bg-light);
  border-radius: 16px;
  max-width: 640px;
  margin: 0 auto;
}

.blog-empty h2 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  margin-top: 0;
}

/* Narrower screens: stack the photo above the list */
@media (max-width: 860px) {
  .blog-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 760px;
  }
  .blog-hero-image { margin-bottom: 0.5rem; }
  .blog-hero-image img { height: 340px; }
}

@media (max-width: 640px) {
  .blog-card { flex-direction: column; }
  .blog-card-thumb {
    flex: 0 0 auto;
    height: 200px;
  }
  .blog-card-body { padding: 1.5rem 1.4rem; }
}

/* ============================================================
   BLOG POST (single article page)
   ============================================================ */
.blog-post {
  max-width: 760px;
  margin: 0 auto;
}

.blog-post-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  margin-bottom: 2rem;
  transition: color var(--transition), gap var(--transition);
}

.blog-post-back:hover {
  color: var(--color-primary-dark);
  gap: 0.7rem;
}

.blog-post-meta {
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-gold-dark);
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.blog-post-title {
  font-family: var(--font-heading);
  color: var(--color-primary);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.25;
  margin: 0 0 1rem;
}

.blog-post-lead {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--color-gray);
  margin: 0 0 2.2rem;
}

.blog-post-image {
  border-radius: 18px;
  overflow: hidden;
  margin: 0 0 2.5rem;
  box-shadow: var(--shadow-sm);
}

.blog-post-image img {
  display: block;
  width: 100%;
  height: auto;
}

.blog-post-body {
  color: var(--color-text);
  font-size: 1.06rem;
  line-height: 1.85;
}

.blog-post-body p { margin: 0 0 1.4rem; }

.blog-post-body h2 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  font-size: 1.6rem;
  margin: 2.6rem 0 1rem;
}

.blog-post-body ul {
  list-style: disc;
  margin: 0 0 1.4rem;
  padding-left: 1.6rem;
}

.blog-post-body li {
  margin-bottom: 0.55rem;
  padding-left: 0.3rem;
}

.blog-post-body li::marker { color: var(--color-gold-dark); }

.blog-post-body blockquote {
  margin: 0 0 1.6rem;
  padding: 1.2rem 1.6rem;
  background: var(--color-bg-light);
  border-left: 4px solid var(--color-gold);
  border-radius: 0 12px 12px 0;
  font-style: italic;
  color: var(--color-gray);
}

.blog-post-dismissals { color: var(--color-gray); line-height: 2; }

.blog-post-body blockquote p { margin: 0 0 0.5rem; }
.blog-post-body blockquote p:last-child { margin: 0; }

.blog-post-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #e7dcef;
}

/* Author box under a blog post (E-E-A-T: who wrote this, with what background) */
.author-box {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  margin-top: 3rem;
  padding: 1.75rem;
  background: var(--color-bg-light);
  border-radius: 14px;
  border: 1px solid #e7dcef;
}

.author-box-photo {
  width: 96px;
  height: 96px;
  flex-shrink: 0;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
}

.author-box-text { flex: 1; min-width: 0; }

.author-box-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #8a7f93;
  margin-bottom: 0.35rem;
}

.author-box-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.4rem;
}

.author-box-credentials {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #6b6273;
  margin-bottom: 0.7rem;
}

.author-box-bio {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0.7rem;
}

.author-box-links a {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.9rem;
}

.author-box-links a:hover { color: var(--color-gold); }

@media (max-width: 560px) {
  .author-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 1.25rem;
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-grid { gap: 3rem; }
  .testimonial-card { flex: 0 0 clamp(240px, 44vw, 400px); }
  .booking-grid { grid-template-columns: 1fr; }
  .booking-info .section-title,
  .booking-info p { text-align: center; }
  .booking-perks { max-width: 480px; margin: 0 auto; }
  .about-full-grid { grid-template-columns: 320px 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .services-cta-banner { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
  :root { --nav-height: 64px; }
  .section { padding: 4rem 0; }
  .container { padding: 0 1.25rem; }

  .nav-links { display: none; }
  .hamburger { display: flex; filter: drop-shadow(0 0 2px rgba(0,0,0,0.55)); }

  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-motto { text-align: left; }
  .hero-visual { order: -1; max-width: 280px; margin: 0 auto; }

  .about-preview-grid { grid-template-columns: 1fr; }
  .about-photo-wrap { max-width: 320px; margin: 0 auto; }
  .about-badge { right: -0.5rem; }

  .testimonials-nav-wrap {
    display: block;
    position: relative;
  }
  .testimonials-wrap { width: 100%; }
  .testi-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    background: rgba(255, 255, 255, 0.50);
  }
  .testi-arrow--prev { left: 0.4rem; }
  .testi-arrow--next { right: 0.4rem; }
  .testi-arrow:hover:not(:disabled),
  .testi-arrow:active { transform: translateY(-50%) scale(1.08); }
  .testimonial-card { flex: 0 0 calc(100vw - 2.5rem); }

  .services-grid { grid-template-columns: 1fr; }
  .services-cta-banner { padding: 2.5rem 1.5rem; }

  .about-full-grid { grid-template-columns: 1fr; }
  .about-sticky-photo { position: static; max-width: 320px; margin: 0 auto; }
  .specialties-grid { grid-template-columns: 1fr; }

  .contact-layout { grid-template-columns: 1fr; gap: 2rem; }
  .contact-aside { position: static; max-width: 340px; margin: 0 auto; }
  .contact-aside-photo { aspect-ratio: 4 / 3; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  /* Single column: nothing to line up with, so drop the heading-height offset. */
  .footer-links--legal { padding-top: 0; }
  .footer-bottom { flex-direction: column; gap: 0.8rem; text-align: center; }

  .page-hero-content { padding: 3rem 0; }

  .booking-widget iframe { height: 849px !important; }
}

@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.7rem; }
  .btn { padding: 0.75rem 1.6rem; }
  .hero-blob { max-height: 340px; }
}

/* ============================================================
   EVENTS PAGE
   ============================================================ */

.events-list {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

/* Subheading that separates the current program from past ones. */
.events-section-heading {
  font-family: var(--font-heading);
  color: var(--color-primary);
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  text-align: center;
  margin: 0.5rem 0 -0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-gray-light);
}

.event-card {
  display: grid;
  grid-template-columns: 360px 1fr;
  background: var(--color-white);
  border-radius: 24px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  border: 1px solid var(--color-gray-light);
  transition: box-shadow var(--transition);
}

.event-card:hover {
  box-shadow: var(--shadow-lg);
}

.event-card--past {
  opacity: 0.72;
}

/* Featured (current) event: event poster on top, details below — single column. */
.event-card--poster {
  display: block;
}

.event-card-poster {
  position: relative;
  width: calc(100% - 3rem);
  max-width: 520px;
  margin: 2rem auto 0;
}

.event-card-poster img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

/* "Lefoglalom a helyem" CTA — left-aligned inside the event body flex column;
   scrolls down to the booking iframe. */
.event-book-btn {
  align-self: flex-start;
}

/* Minup.io booking embed shown at the bottom of the current event card. */
.event-embed {
  margin-top: 1.5rem;
}

.event-embed iframe {
  display: block;
  width: 100%;
  border: 0;
  border-radius: 12px;
}

.event-card-image {
  position: relative;
  overflow: hidden;
}

.event-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.event-type-badge {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  background: var(--color-primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 50px;
}

.event-card-body {
  padding: 2.2rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.event-status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  width: fit-content;
}

.event-status::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}

.event-status--open   { background: rgba(80,191,234,0.14); color: #0d7a9e; }
.event-status--closed { background: rgba(211,175,55,0.14); color: #9a7a12; }
.event-status--past   { background: rgba(90,90,106,0.1);   color: var(--color-gray); }

.event-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: var(--color-primary);
  line-height: 1.3;
  margin: 0;
}

.event-meta {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1rem 1.2rem;
  background: var(--color-bg-light);
  border-radius: 12px;
}

.event-meta-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--color-gray);
  line-height: 1.5;
}

.event-meta-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--color-primary);
}

.event-meta-item a {
  color: var(--color-primary);
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: text-decoration-color var(--transition);
}

.event-meta-item a:hover { text-decoration-color: var(--color-primary); }

.event-meta-item strong { color: var(--color-text); }

.event-card-desc {
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.8;
}

.event-card-desc p + p { margin-top: 0.7rem; }

.event-what {
  border-left: 3px solid var(--color-gold);
  padding: 0.9rem 1.2rem;
  background: rgba(211,175,55,0.05);
  border-radius: 0 10px 10px 0;
}

.event-what h3 {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-gray);
  margin-bottom: 0.6rem;
}

.event-what ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.event-what li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--color-text);
}

.event-what li::before {
  content: '›';
  color: var(--color-gold);
  font-weight: 700;
  flex-shrink: 0;
}

.event-card-footer {
  margin-top: auto;
  padding-top: 1.2rem;
  border-top: 1px solid var(--color-gray-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.event-price-block { line-height: 1.4; }

.event-price-amount {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-primary);
}

.event-price-note {
  font-size: 0.8rem;
  color: var(--color-gray);
}

.event-registration-note {
  font-size: 0.82rem;
  color: var(--color-gray);
  font-style: italic;
  max-width: 340px;
}

.events-empty {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--color-gray);
  font-size: 1.05rem;
  display: none;
}

@media (max-width: 940px) {
  .event-card {
    grid-template-columns: 1fr;
  }

  .event-card-image {
    height: 280px;
  }

  .event-card-body {
    padding: 1.8rem;
  }
}

@media (max-width: 600px) {
  .event-card-body {
    padding: 1.4rem;
    gap: 0.9rem;
  }

  .event-card-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media print {
  .nav, .nav-overlay, .footer, .cookie-banner, .pdf-download-bar { display: none !important; }
  body { background: #fff; }
  .privacy-wrap {
    max-width: 100%;
    padding: 1rem 1.5rem;
  }
  .privacy-wrap h1 { padding-top: 0; font-size: 1.8rem; }
  .privacy-wrap h2 { font-size: 1.1rem; }
  a[href]::after { content: none; }
  table { page-break-inside: avoid; }
  h2, h3 { page-break-after: avoid; }
}

/* Accessibility utility */
.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; }

/* Honeypot: moved off-screen rather than display:none, because some bots skip
   fields that are explicitly hidden. Screen readers skip it via aria-hidden,
   and tabindex="-1" keeps it out of the keyboard order. */
.hp-field {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* GDPR checkbox */
.form-gdpr { margin-bottom: 1.2rem; }
.gdpr-label { display: flex; gap: 0.75rem; align-items: flex-start; cursor: pointer; font-size: 0.875rem; color: var(--color-text-muted, #555); line-height: 1.5; }
.gdpr-label input[type="checkbox"] { flex-shrink: 0; margin-top: 0.2rem; width: 1rem; height: 1rem; accent-color: var(--color-primary, #8c1fa3); cursor: pointer; }
.gdpr-label a { color: var(--color-primary, #8c1fa3); text-decoration: underline; }

/* ============================================================
   EVENT POPUP (egyszer felugró esemény-ablak – eltávolítható)
   ============================================================ */
.event-popup {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
  opacity: 0;
  transition: opacity 0.3s var(--ease, ease);
}

/* hidden attribute must win over display:flex, otherwise the invisible
   full-screen overlay keeps intercepting clicks and blocks the whole page */
.event-popup[hidden] { display: none; }

.event-popup--open { opacity: 1; }

.event-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 8, 33, 0.62);
  backdrop-filter: blur(2px);
}

body.event-popup-lock { overflow: hidden; }

.event-popup-dialog {
  position: relative;
  width: 100%;
  max-width: 420px;
  max-height: 90vh;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.4);
  transform: translateY(16px) scale(0.98);
  transition: transform 0.35s var(--ease, cubic-bezier(0.22, 1, 0.36, 1));
}

.event-popup--open .event-popup-dialog { transform: translateY(0) scale(1); }

.event-popup-close {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-text, #1a1a1a);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: background var(--transition, 0.25s), transform var(--transition, 0.25s);
}

.event-popup-close:hover { background: #fff; transform: rotate(90deg); }

.event-popup-link {
  display: block;
  position: relative;
  text-decoration: none;
  line-height: 0;
}

.event-popup-link img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 90vh;
  object-fit: contain;
}

.event-popup-cta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.4rem 1.2rem 1rem;
  background: linear-gradient(to top, rgba(26, 8, 33, 0.85), transparent);
  color: #fff;
  font-family: var(--font-heading, serif);
  font-size: 1.15rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
  transition: letter-spacing var(--transition, 0.25s);
}

.event-popup-link:hover .event-popup-cta { letter-spacing: 0.5px; }

@media (max-width: 480px) {
  .event-popup-dialog { max-width: 340px; }
  .event-popup-cta { font-size: 1.05rem; }
}

@media (prefers-reduced-motion: reduce) {
  .event-popup,
  .event-popup-dialog { transition: none; }
}

/* Wide tables (cookie tables in the legal pages) scroll inside their own box
   instead of pushing the page wider than the viewport. The body carries
   overflow-x: hidden, so an overflowing table would be silently CLIPPED on a
   phone — the reader could not scroll to the cut-off column. */
.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 1rem;
}
.table-scroll table { min-width: 32rem; }

@media print {
  /* On paper there is no scrolling: let the table lay out at its natural size
     inside the page width instead of being clipped by the scroll container. */
  .table-scroll { overflow: visible; }
  .table-scroll table { min-width: 0; }
}
