/* ========================================
   HARMÓNIA HANGTÁLFÜRDŐ - Wellness Szalon
   ======================================== */

:root {
    /* Andara Touch – Rose / Gold / Cream Palette */
    --color-primary: #C0867F;        /* dusty rose */
    --color-primary-dark: #9C645E;   /* deep rose */
    --color-primary-light: #D9ABA4;  /* soft blush */
    --color-secondary: #C2A05E;      /* gold — buttons & dark backgrounds only */
    --color-secondary-light: #DCC18A;/* light gold */
    --color-gold-text: #7E662E;      /* WCAG-safe gold for text on light bg (5.1:1) */
    --color-label: #8F5A54;          /* WCAG-safe rose for small labels (5.2:1) */
    --color-tertiary: #7A5560;       /* warm plum/mauve */
    --color-accent: #F0E2DC;
    --color-bg: #FBF5F2;             /* warm blush cream */
    --color-bg-alt: #F4E8E2;
    --color-text: #2E2228;
    --color-text-light: #5C4A50;
    --color-text-muted: #6E5A64;
    --color-white: #FFFFFF;
    --color-card: #FFFFFF;
    --color-border: rgba(192, 134, 127, 0.18);
    --color-glow: rgba(194, 160, 94, 0.14);

    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;

    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-xxl: 6rem;

    --container-max: 1200px;
    --container-padding: 1.5rem;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;

    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    --shadow-sm: 0 2px 10px rgba(0,0,0,0.04);
    --shadow-md: 0 10px 40px rgba(0,0,0,0.07);
    --shadow-lg: 0 25px 70px rgba(0,0,0,0.1);
    --shadow-glow: 0 0 60px rgba(201, 169, 110, 0.15);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; scroll-padding-top: 90px; }

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

a { color: var(--color-primary); text-decoration: none; transition: color var(--transition-base); }
a:hover { color: var(--color-primary-dark); }

.container { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--container-padding); }
.section { padding: var(--space-xxl) 0; }

.reveal { opacity: 0; transform: translateY(35px); transition: opacity 0.9s ease, transform 0.9s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: var(--space-sm) 0;
    transition: background var(--transition-base), box-shadow var(--transition-base), padding var(--transition-base);
}

.navbar.scrolled {
    background: rgba(249, 247, 243, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    padding: var(--space-xs) 0;
}

.navbar .container { display: flex; justify-content: space-between; align-items: center; gap: var(--space-lg); }

.logo {
    font-family: var(--font-heading); font-size: 1.8rem; font-weight: 600;
    color: var(--color-white); letter-spacing: -0.5px;
    display: inline-flex; align-items: center; gap: 0.5rem;
    flex-shrink: 0; white-space: nowrap;
}
.logo-mark { height: 42px; width: auto; flex-shrink: 0; transition: transform var(--transition-base); }
/* gold emblem on the dark bar, full-colour emblem once the bar turns cream */
.logo-mark-color { display: none; }
.navbar.scrolled .logo-mark-dark { display: none; }
.navbar.scrolled .logo-mark-color { display: block; }
.logo:hover .logo-mark { transform: rotate(-8deg) scale(1.08); }
.logo em { font-style: italic; font-weight: 400; color: var(--color-secondary-light); margin-left: 0.15em; }
.navbar.scrolled .logo { color: var(--color-text); }
.navbar.scrolled .logo-mark { color: var(--color-secondary); }
.navbar.scrolled .logo em { color: var(--color-secondary); }

.nav-links { display: flex; list-style: none; gap: var(--space-sm); align-items: center; }

/* Foglalás CTA in nav */
.nav-link-cta {
    background: var(--color-secondary); color: var(--color-text) !important;
    padding: 0.5rem 1.1rem !important; border-radius: 100px;
}
.nav-link-cta::after { display: none; }
.nav-link-cta:hover { background: var(--color-secondary-light); transform: translateY(-1px); }

.nav-link {
    font-family: var(--font-body); font-size: 0.8rem; font-weight: 500;
    text-transform: uppercase; letter-spacing: 1.5px; color: var(--color-white);
    position: relative; padding: var(--space-xs) 0;
}

.navbar.scrolled .nav-link { color: var(--color-text); }

.nav-link::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 0; height: 2px; background: var(--color-secondary);
    transition: width var(--transition-base);
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link:hover { color: var(--color-white); }
.navbar.scrolled .nav-link:hover { color: var(--color-text); }

/* Mobile Nav Toggle */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: var(--space-xs); z-index: 1001; }

.hamburger, .hamburger::before, .hamburger::after {
    display: block; width: 24px; height: 2px; background: var(--color-white);
    border-radius: 2px; transition: transform var(--transition-base), background var(--transition-base);
}
.navbar.scrolled .hamburger, .navbar.scrolled .hamburger::before, .navbar.scrolled .hamburger::after { background: var(--color-text); }

.hamburger { position: relative; }
.hamburger::before, .hamburger::after { content: ''; position: absolute; left: 0; }
.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

.nav-toggle.active .hamburger { background: transparent; }
.nav-toggle.active .hamburger::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active .hamburger::after { transform: translateY(-7px) rotate(-45deg); }

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative; min-height: 100vh; min-height: 100svh;
    display: flex; align-items: center; overflow: hidden;
    background-color: #2b1e24; /* fallback while/if the photo doesn't load */
}

.hero-bg-image {
    position: absolute; inset: 0; z-index: 0;
}
.hero-bg-image img {
    width: 100%; height: 100%; object-fit: cover;
}

.hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(160deg, rgba(42,28,34,0.55) 0%, rgba(94,58,68,0.30) 50%, rgba(42,28,34,0.58) 100%);
}

.hero::after {
    content: '';
    position: absolute; inset: 0; z-index: 1;
    background: radial-gradient(ellipse at 50% 120%, rgba(201,169,110,0.08) 0%, transparent 60%);
    pointer-events: none;
}

.hero .container {
    display: flex; align-items: center; justify-content: center;
    position: relative; z-index: 2;
    padding-top: 100px; padding-bottom: 100px; text-align: center;
}

.hero-content { max-width: 700px; }

.hero-label {
    display: inline-block; font-size: 0.75rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 3px; color: var(--color-secondary-light);
    margin-bottom: var(--space-md); padding: var(--space-xs) var(--space-md);
    border: 1px solid rgba(212,196,154,0.4); border-radius: 100px; background: rgba(255,255,255,0.08);
}

.hero-title {
    font-family: var(--font-heading); font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 400; line-height: 1.1; color: var(--color-white);
    margin-bottom: var(--space-md);
}
.hero-title em { font-style: italic; color: var(--color-secondary-light); position: relative; }

.hero-tagline {
    font-family: var(--font-heading); font-style: italic; font-size: 1.15rem;
    color: var(--color-secondary-light); margin-bottom: var(--space-lg); letter-spacing: 0.5px;
}
.hero-tagline-hu { display: block; font-size: 0.62em; opacity: 0.8; margin-top: 0.3em; letter-spacing: 0.3px; }

.hero-subtitle {
    font-size: 1.2rem; font-weight: 300; color: rgba(255,255,255,0.92);
    max-width: 580px; margin: 0 auto var(--space-md); line-height: 1.8;
}
.hero-subtitle strong { font-weight: 600; color: var(--color-white); }

.hero-cta { display: flex; gap: var(--space-md); justify-content: center; align-items: center; flex-wrap: wrap; }
.hero-link {
    display: inline-flex; align-items: center; gap: 0.45rem;
    color: rgba(255,255,255,0.88); font-size: 0.85rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 1.5px; text-decoration: none;
    padding: 0.4rem 0.15rem; border-bottom: 1px solid rgba(220,193,138,0.45);
    text-shadow: 0 1px 10px rgba(30,20,15,0.7);
    transition: color var(--transition-base), border-color var(--transition-base);
}
.hero-link::after { content: '↓'; font-size: 0.9em; transition: transform var(--transition-base); }
.hero-link:hover { color: var(--color-white); border-color: var(--color-secondary-light); }
.hero-link:hover::after { transform: translateY(3px); }
/* Slow ambient resonance ring behind the booking button */
.hero-cta .btn-primary { position: relative; }
.hero-cta .btn-primary::after {
    content: ''; position: absolute; inset: 0; border-radius: 100px;
    border: 1.5px solid rgba(220, 193, 138, 0.7); pointer-events: none;
    animation: resonate 5s ease-out infinite;
}
@keyframes resonate { 0% { opacity: 0.65; transform: scale(1); } 60% { opacity: 0; transform: scale(1.5); } 100% { opacity: 0; transform: scale(1.5); } }

.hero-trust {
    margin-top: var(--space-lg); display: flex; flex-direction: column; align-items: center; gap: 0.45rem;
}
.hero-trust span { text-shadow: 0 1px 14px rgba(30,20,15,0.85), 0 0 3px rgba(30,20,15,0.55); }
.hero-trust span:first-child { color: var(--color-secondary-light); letter-spacing: 3px; font-size: 0.95rem; }
.hero-trust span:nth-child(2) { font-size: 0.82rem; color: rgba(255,255,255,0.92); font-weight: 400; letter-spacing: 0.8px; }
.hero-trust span:nth-child(3) {
    font-size: 0.78rem; color: rgba(255,255,255,0.95); font-weight: 500; letter-spacing: 0.8px;
    border: 1px solid rgba(220,193,138,0.55); border-radius: 100px; padding: 0.28rem 0.95rem;
    margin-top: 0.3rem; background: rgba(42,28,34,0.30); backdrop-filter: blur(4px);
}

/* Floating glowing orbs */
.hero-orbs { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.orb { position: absolute; border-radius: 50%; filter: blur(40px); opacity: 0.35; }
.orb-1 { width: 280px; height: 280px; background: radial-gradient(circle, rgba(201,169,110,0.6), transparent 70%); top: 12%; left: 8%; animation: floatOrb 14s ease-in-out infinite; }
.orb-2 { width: 220px; height: 220px; background: radial-gradient(circle, rgba(122,107,141,0.55), transparent 70%); bottom: 14%; right: 10%; animation: floatOrb 18s ease-in-out infinite reverse; }
.orb-3 { width: 180px; height: 180px; background: radial-gradient(circle, rgba(143,168,128,0.5), transparent 70%); top: 55%; left: 45%; animation: floatOrb 16s ease-in-out infinite 2s; }

@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -40px) scale(1.1); }
    66% { transform: translate(-25px, 25px) scale(0.95); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute; bottom: var(--space-lg); left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: var(--space-xs); z-index: 2; opacity: 0.9;
}
.scroll-indicator span { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,0.85); text-shadow: 0 1px 10px rgba(30,20,15,0.8); }
.scroll-arrow { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(255,255,255,0.75), transparent); animation: scrollPulse 2s ease-in-out infinite; }

@keyframes scrollPulse { 0%, 100% { opacity: 0.3; transform: scaleY(0.8); } 50% { opacity: 1; transform: scaleY(1); } }

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 1rem 2.25rem; font-family: var(--font-body); font-size: 0.85rem;
    font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px;
    border-radius: 100px; border: 2px solid transparent; cursor: pointer;
    transition: all var(--transition-base); text-decoration: none;
}

.btn-primary {
    background: var(--color-primary-dark); color: var(--color-white); border-color: var(--color-primary-dark);
    box-shadow: 0 4px 20px rgba(156, 100, 94, 0.35);
}
.btn-primary:hover { background: var(--color-tertiary); border-color: var(--color-tertiary); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(122, 85, 96, 0.45), 0 0 40px rgba(201,169,110,0.2); color: var(--color-white); }

.btn-secondary {
    background: var(--color-secondary); color: var(--color-text); border-color: var(--color-secondary);
    box-shadow: 0 4px 20px rgba(194, 160, 94, 0.35);
}
.btn-secondary:hover { background: var(--color-secondary-light); border-color: var(--color-secondary-light); transform: translateY(-2px); color: var(--color-text); }

.btn-full { width: 100%; }

/* ========================================
   SECTION HEADERS
   ======================================== */
.section-header { text-align: center; max-width: 600px; margin: 0 auto var(--space-xl); }
.section-label { display: inline-block; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 3px; color: var(--color-label); margin-bottom: var(--space-sm); }
.section-title { font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3rem); font-weight: 400; line-height: 1.2; color: var(--color-text); margin-bottom: var(--space-sm); }
.section-title em { font-style: italic; color: var(--color-primary); }
.nowrap { white-space: nowrap; }
.section-subtitle { font-size: 1.1rem; font-weight: 300; color: var(--color-text-light); }

/* ========================================
   ABOUT SECTION
   ======================================== */
.about { background: var(--color-bg); }

.about-content { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-xl); align-items: center; }

.about-text .lead { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 400; line-height: 1.5; color: var(--color-text); margin-bottom: var(--space-md); }
.about-text p { margin-bottom: var(--space-sm); color: var(--color-text-light); }

.about-quote {
    font-family: var(--font-heading); font-style: italic; font-size: 1.5rem;
    color: var(--color-primary-dark); letter-spacing: 1px; margin-top: var(--space-md);
    padding-left: var(--space-md); border-left: 3px solid var(--color-secondary);
}
.about-serviceintro { font-weight: 600; color: var(--color-text); margin-top: var(--space-sm); margin-bottom: var(--space-xs); }
.about-servicelist { list-style: none; columns: 2; column-gap: var(--space-lg); margin: 0; }
.about-servicelist li { position: relative; padding-left: 1.3rem; margin-bottom: 0.45rem; color: var(--color-text-light); break-inside: avoid; }
.about-servicelist li::before { content: '✦'; position: absolute; left: 0; top: 0.05em; color: var(--color-secondary); font-size: 0.78rem; }
.about-servicelist em { font-style: italic; color: var(--color-text-muted); font-size: 0.9em; }

.about-story { max-width: 820px; margin: var(--space-xl) auto 0; padding-top: var(--space-xl); border-top: 1px solid var(--color-border); }
.about-story-title { font-family: var(--font-heading); font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 600; color: var(--color-text); text-align: center; margin-bottom: var(--space-lg); }
.about-story p { color: var(--color-text-light); margin-bottom: var(--space-sm); line-height: 1.85; }
.story-quote { text-align: center; font-family: var(--font-heading); font-style: italic; font-size: 1.7rem; line-height: 1.7; color: var(--color-primary-dark); letter-spacing: 1px; margin-top: var(--space-lg); }

.about-certs { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: var(--space-md); }
.cert-pill {
    font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px;
    color: var(--color-primary-dark); background: var(--color-bg-alt);
    border: 1px solid var(--color-border); padding: 0.4rem 0.9rem; border-radius: 100px;
}

.about-features { display: flex; gap: var(--space-lg); margin-top: var(--space-lg); flex-wrap: wrap; }
.feature { display: flex; align-items: center; gap: var(--space-xs); font-size: 0.9rem; font-weight: 500; color: var(--color-text); }
.feature-icon { font-size: 1.25rem; }

.about-image { position: relative; max-width: 440px; margin: 0 auto; }
.about-image img { width: 100%; max-height: 540px; object-fit: cover; object-position: center top; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }

/* ========================================
   SERVICES SECTION
   ======================================== */
.services { background: var(--color-bg-alt); }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md); }
/* 8 cards balance as 4+4 on wide screens instead of 3+3+2 */
@media (min-width: 1150px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }

.service-card {
    background: var(--color-card); border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm); border: 1px solid var(--color-border);
    overflow: hidden; transition: transform var(--transition-base), box-shadow var(--transition-base);
    display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg), var(--shadow-glow); }

.service-image { position: relative; width: 100%; height: 200px; overflow: hidden; }
.service-badge { position: absolute; top: 12px; left: 12px; z-index: 2; background: rgba(255,255,255,0.92); color: var(--color-primary-dark); font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; padding: 0.32rem 0.75rem; border-radius: 100px; box-shadow: var(--shadow-sm); }
.service-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.service-card:hover .service-image img { transform: scale(1.05); }
/* One soft ripple when the card is "struck" */
.service-image::before {
    content: ''; position: absolute; top: 50%; left: 50%; width: 22px; height: 22px; margin: -11px 0 0 -11px;
    border-radius: 50%; border: 2px solid rgba(220, 193, 138, 0.8); opacity: 0; z-index: 2; pointer-events: none;
}
.service-card:hover .service-image::before { animation: ripple 1.1s ease-out; }
@keyframes ripple { 0% { opacity: 0.85; transform: scale(1); } 100% { opacity: 0; transform: scale(7); } }

.service-body { padding: var(--space-lg); display: flex; flex-direction: column; flex-grow: 1; }
.service-title { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 600; color: var(--color-text); margin-bottom: var(--space-xs); }
.service-desc { font-size: 0.95rem; color: var(--color-text-light); line-height: 1.7; margin-bottom: var(--space-md); flex-grow: 1; }

.service-meta {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: var(--space-sm); border-top: 1px solid var(--color-border);
    font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px;
}
.service-duration { color: var(--color-primary); }
.service-price { color: var(--color-gold-text); font-size: 1rem; }
.service-book { color: var(--color-primary); font-weight: 600; text-transform: none; letter-spacing: 0; font-size: 0.85rem; transition: color var(--transition-base); }
.service-book:hover { color: var(--color-primary-dark); }

/* Expandable service descriptions */
/* Inline expander is now just a hidden content source for the popup */
.service-desc-more { display: none; }

/* Service detail popup */
.svc-modal { position: fixed; inset: 0; z-index: 2000; display: none; align-items: center; justify-content: center; padding: var(--space-md); }
.svc-modal.open { display: flex; }
.svc-modal-overlay { position: absolute; inset: 0; background: rgba(46,34,40,0.55); -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px); }
.svc-modal-box {
    position: relative; z-index: 1; width: 100%; max-width: 580px; max-height: 86vh; overflow-y: auto;
    background: var(--color-bg); border: 1px solid var(--color-border); border-radius: var(--radius-lg);
    padding: var(--space-xl); box-shadow: var(--shadow-lg); -webkit-overflow-scrolling: touch;
    animation: svcPop 0.25s ease;
}
@keyframes svcPop { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.svc-modal-close { position: absolute; top: 0.5rem; right: 0.8rem; background: none; border: none; font-size: 2rem; line-height: 1; color: var(--color-text-light); cursor: pointer; padding: 0.2rem 0.4rem; }
.svc-modal-close:hover { color: var(--color-primary); }
.svc-modal-title { font-family: var(--font-heading); font-size: 1.6rem; color: var(--color-text); margin: 0 0 var(--space-sm); padding-right: 2rem; }
.svc-modal-book { margin-top: var(--space-md); }
.svc-modal-body p { font-size: 0.95rem; color: var(--color-text-light); line-height: 1.7; margin-bottom: var(--space-sm); }
.svc-modal-body ul { list-style: none; margin: 0 0 var(--space-sm) 0; padding: 0; }
.svc-modal-body li { position: relative; padding-left: 1.3rem; margin-bottom: 0.4rem; font-size: 0.95rem; color: var(--color-text-light); line-height: 1.6; }
.svc-modal-body li::before { content: '✦'; position: absolute; left: 0; top: 0.05em; color: var(--color-secondary); font-size: 0.78rem; }
.svc-modal-body strong { color: var(--color-text); font-weight: 600; }
.service-readmore {
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-primary);
    padding: 0.4rem 0;
    margin-bottom: var(--space-sm);
    transition: color var(--transition-base);
    align-self: flex-start;
}
.service-readmore:hover { color: var(--color-primary-dark); }

.services-note { text-align: center; margin-top: var(--space-lg); font-size: 0.9rem; color: var(--color-text-muted); font-style: italic; }

/* ========================================
   BENEFITS BANNER
   ======================================== */
.benefits-banner {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-tertiary) 100%);
    padding: var(--space-xl) 0; color: var(--color-white); position: relative; overflow: hidden;
}
.benefits-banner::before {
    content: ''; position: absolute; top: -50%; right: -10%; width: 500px; height: 500px;
    background: rgba(255,255,255,0.04); border-radius: 50%; pointer-events: none;
}
.benefits-banner::after {
    content: ''; position: absolute; bottom: -30%; left: -5%; width: 400px; height: 400px;
    background: rgba(255,255,255,0.03); border-radius: 50%; pointer-events: none;
}

.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-lg); position: relative; z-index: 1; }
.benefit-item { text-align: center; padding: var(--space-md); }
.benefit-number { display: block; font-family: var(--font-heading); font-size: 2.5rem; font-weight: 700; opacity: 0.25; margin-bottom: var(--space-xs); line-height: 1; }
.benefit-item h4 { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 600; margin-bottom: var(--space-xs); }
.benefit-item p { font-size: 0.9rem; opacity: 0.85; font-weight: 300; line-height: 1.6; }

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

.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md); }

.testimonial-card {
    background: var(--color-card); border-radius: var(--radius-md); padding: var(--space-lg);
    box-shadow: var(--shadow-sm); border: 1px solid var(--color-border);
    display: flex; flex-direction: column; transition: box-shadow var(--transition-base);
}
.testimonial-card:hover { box-shadow: var(--shadow-md), var(--shadow-glow); }

.testimonial-stars { color: var(--color-secondary); font-size: 1.1rem; letter-spacing: 2px; margin-bottom: var(--space-sm); }
.testimonial-text { font-size: 0.95rem; line-height: 1.8; color: var(--color-text-light); font-style: italic; flex-grow: 1; margin-bottom: var(--space-md); }
.testimonial-author { border-top: 1px solid var(--color-border); padding-top: var(--space-sm); }
.testimonial-author strong { display: block; font-size: 0.9rem; color: var(--color-text); margin-bottom: 2px; }
.testimonial-author span { font-size: 0.8rem; color: var(--color-text-muted); text-transform: uppercase; letter-spacing: 1px; }

/* ========================================
   HÁZIREND
   ======================================== */
.hazirend { background: var(--color-bg); }
.rules-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-md); max-width: 960px; margin: 0 auto; }
.rule-card {
    background: var(--color-card); border: 1px solid var(--color-border); border-radius: var(--radius-md);
    padding: var(--space-lg); box-shadow: var(--shadow-sm); transition: box-shadow var(--transition-base);
}
.rule-card:hover { box-shadow: var(--shadow-md), var(--shadow-glow); }
.rule-card h3 { font-family: var(--font-heading); font-size: 1.35rem; font-weight: 600; color: var(--color-primary-dark); margin-bottom: var(--space-sm); }
.rule-card ul { list-style: none; margin: 0; }
.rule-card li { position: relative; padding-left: 1.4rem; margin-bottom: 0.55rem; font-size: 0.92rem; color: var(--color-text-light); line-height: 1.6; }
.rule-card li:last-child { margin-bottom: 0; }
.rule-card li::before { content: '✦'; position: absolute; left: 0; top: 0.1em; color: var(--color-secondary); font-size: 0.72rem; }
.rules-closing { text-align: center; margin-top: var(--space-xl); font-family: var(--font-heading); font-style: italic; font-size: 1.35rem; color: var(--color-primary-dark); line-height: 1.7; }
.rules-closing span { display: block; font-style: normal; font-family: var(--font-body); font-size: 0.95rem; letter-spacing: 1px; color: var(--color-text-muted); margin-top: var(--space-sm); }

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact { background: var(--color-bg-alt); }

.contact-content { display: grid; grid-template-columns: 1fr 1.2fr; gap: var(--space-xl); align-items: start; }

.contact-info { display: grid; gap: var(--space-md); }

.info-card {
    background: var(--color-card); border-radius: var(--radius-md); padding: var(--space-lg);
    box-shadow: var(--shadow-sm); border: 1px solid var(--color-border);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md), var(--shadow-glow); }

.info-icon { font-size: 1.5rem; margin-bottom: var(--space-sm); color: var(--color-primary); display: flex; align-items: center; justify-content: center; }
.info-card h4 { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 600; margin-bottom: var(--space-xs); color: var(--color-text); }
.info-card p { font-size: 0.9rem; color: var(--color-text-light); line-height: 1.6; }
.info-card a { color: var(--color-primary); font-weight: 500; }
.info-card a:hover { color: var(--color-primary-dark); }

/* Online booking CTA */
.booking-cta {
    display: flex; align-items: center; justify-content: space-between; gap: var(--space-lg);
    flex-wrap: wrap; max-width: 900px; margin: 0 auto var(--space-md);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-tertiary) 100%);
    color: var(--color-white); padding: var(--space-lg) var(--space-xl); border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}
.booking-cta h3 { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 600; margin-bottom: 0.25rem; }
.booking-cta p { font-size: 0.92rem; opacity: 0.9; font-weight: 300; max-width: 460px; }
.booking-cta .btn-primary { background: var(--color-white); color: var(--color-primary-dark); border-color: var(--color-white); white-space: nowrap; }
.booking-cta .btn-primary:hover { background: var(--color-secondary-light); border-color: var(--color-secondary-light); color: var(--color-text); }
.booking-or { text-align: center; color: var(--color-text-muted); font-size: 0.9rem; margin-bottom: var(--space-lg); }

/* Embedded online scheduler — branded card */
.booking-embed {
    position: relative; max-width: 880px; margin: 0 auto var(--space-lg); text-align: center;
    background: var(--color-card); border: 1px solid var(--color-border); border-radius: var(--radius-lg);
    padding: var(--space-lg) var(--space-lg) var(--space-md); box-shadow: var(--shadow-md); overflow: hidden;
}
.booking-embed::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--color-secondary), var(--color-primary), var(--color-tertiary));
}
.booking-lotus { width: 44px; height: 44px; color: var(--color-secondary); fill: currentColor; display: block; margin: var(--space-xs) auto var(--space-sm); }
.booking-embed-title { font-family: var(--font-heading); font-size: clamp(1.6rem, 3vw, 2rem); font-weight: 600; color: var(--color-text); margin-bottom: var(--space-xs); }
.booking-embed-sub { color: var(--color-text-light); font-size: 0.95rem; max-width: 620px; margin: 0 auto var(--space-md); line-height: 1.6; }
.booking-frame { border-radius: var(--radius-md); overflow: auto; box-shadow: var(--shadow-sm); border: 1px solid var(--color-border); background: var(--color-bg); -webkit-overflow-scrolling: touch; }
.booking-frame iframe { width: 100%; height: 720px; border: 0; display: block; }
.booking-fallback { margin-top: var(--space-sm); font-size: 0.88rem; color: var(--color-text-muted); }
.booking-fallback a { color: var(--color-primary); font-weight: 500; }
@media (max-width: 768px) { .booking-embed { padding: var(--space-md); } .booking-frame iframe { height: 520px; } }

/* Contact Form */
.contact-form-wrapper {
    background: var(--color-card); border-radius: var(--radius-lg); padding: var(--space-xl);
    box-shadow: var(--shadow-md); border: 1px solid var(--color-border);
}
.contact-form h3 { font-family: var(--font-heading); font-size: 1.75rem; font-weight: 600; margin-bottom: var(--space-lg); color: var(--color-text); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); }
.form-group { margin-bottom: var(--space-md); }
.form-group label { display: block; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--color-text); margin-bottom: var(--space-xs); }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 0.875rem 1rem; font-family: var(--font-body); font-size: 0.95rem;
    color: var(--color-text); background: var(--color-bg); border: 1px solid var(--color-border);
    border-radius: var(--radius-sm); transition: border-color var(--transition-base), box-shadow var(--transition-base);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(192, 134, 127, 0.18); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--color-text-muted); font-weight: 300; }
.form-group select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23555555' d='M6 9L1 4h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note { font-size: 0.8rem; color: var(--color-text-muted); text-align: center; margin-top: var(--space-sm); }

/* ========================================
   PRICING
   ======================================== */
.pricing { background: var(--color-bg); }
/* "Spa menu" moment — the one dark, screenshot-worthy section */
.price-table {
    max-width: 760px; margin: 0 auto;
    background: linear-gradient(165deg, #382a33 0%, #2E2228 100%);
    border: 1px solid rgba(220, 193, 138, 0.28); border-radius: var(--radius-lg);
    padding: var(--space-lg) var(--space-lg); box-shadow: var(--shadow-lg);
    position: relative; overflow: hidden;
}
.price-table::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, transparent, var(--color-secondary), transparent); }
.price-row { display: flex; align-items: baseline; gap: 0.75rem; padding: 0.9rem 0; border-bottom: 1px dashed rgba(220, 193, 138, 0.18); }
.price-row:last-child { border-bottom: none; }
.price-name { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 600; color: #F0E2DC; white-space: nowrap; }
.price-name em { font-family: var(--font-body); font-style: normal; font-size: 0.8rem; font-weight: 400; color: rgba(240, 226, 220, 0.55); margin-left: 0.4rem; }
.price-dots { flex: 1; border-bottom: 2px dotted rgba(220, 193, 138, 0.25); transform: translateY(-4px); min-width: 20px; }
.price-amount { font-weight: 600; color: var(--color-secondary-light); font-size: 1.05rem; white-space: nowrap; }
.price-note { text-align: center; margin-top: var(--space-md); font-size: 0.85rem; color: var(--color-text-muted); font-style: italic; }

.pricing-layout { display: grid; grid-template-columns: 1.6fr 1fr; gap: var(--space-lg); max-width: 1040px; margin: 0 auto; align-items: start; }
.pricing-layout .price-table { max-width: none; margin: 0; }
.loyalty-card { background: linear-gradient(160deg, var(--color-tertiary) 0%, var(--color-primary-dark) 100%); color: var(--color-white); border-radius: var(--radius-lg); padding: var(--space-lg); box-shadow: var(--shadow-md); position: relative; overflow: hidden; }
.loyalty-card h3 { font-family: var(--font-heading); font-size: 1.55rem; font-weight: 600; margin-bottom: var(--space-sm); color: var(--color-white); }
.loyalty-card p { font-size: 0.92rem; opacity: 0.9; line-height: 1.6; font-weight: 300; }
.loyalty-discount { font-family: var(--font-heading); font-size: 2.6rem; font-weight: 700; color: var(--color-secondary-light); margin: var(--space-sm) 0; display: flex; align-items: center; gap: 0.5rem; line-height: 1; }
.loyalty-gift { font-size: 1.5rem; }
.loyalty-btn { margin-top: var(--space-md); background: var(--color-secondary); border-color: var(--color-secondary); color: var(--color-text); box-shadow: none; }
.loyalty-btn:hover { background: var(--color-secondary-light); border-color: var(--color-secondary-light); color: var(--color-text); }

/* ========================================
   GALLERY
   ======================================== */
.gallery { background: var(--color-bg); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-sm); grid-auto-flow: dense; }
/* The first photo earns a 2×2 feature tile — with 6 visible tiles the grid closes into a perfect rectangle */
.gallery-item:first-child { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
.gallery-item {
    position: relative; padding: 0; border: none; cursor: pointer; overflow: hidden;
    border-radius: var(--radius-md); aspect-ratio: 4 / 3; background: var(--color-bg-alt);
    box-shadow: var(--shadow-sm);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease, filter 0.4s ease; }
.gallery-item::after {
    content: '⊕'; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
    font-size: 2rem; color: var(--color-white); background: rgba(30,25,18,0.35);
    opacity: 0; transition: opacity var(--transition-base);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover::after, .gallery-item:focus-visible::after { opacity: 1; }
.gallery-note { text-align: center; margin-top: var(--space-lg); font-size: 0.9rem; color: var(--color-text-muted); font-style: italic; }

/* Lightbox */
.lightbox {
    position: fixed; inset: 0; z-index: 2000; display: none;
    align-items: center; justify-content: center; padding: var(--space-lg);
    background: rgba(20,16,12,0.92); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.lightbox.open { display: flex; animation: fadeIn 0.25s ease; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); }
.lightbox-close {
    position: absolute; top: 1.5rem; right: 1.5rem; width: 48px; height: 48px;
    background: rgba(255,255,255,0.12); border: none; color: var(--color-white); font-size: 2rem;
    border-radius: 50%; cursor: pointer; line-height: 1; transition: background var(--transition-base);
}
.lightbox-close:hover { background: rgba(255,255,255,0.25); }
.lightbox-nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 52px; height: 52px; border-radius: 50%; border: none; cursor: pointer; z-index: 2;
    background: rgba(255,255,255,0.12); color: var(--color-white); font-size: 2.2rem; line-height: 1;
    display: flex; align-items: center; justify-content: center; transition: background var(--transition-base);
}
.lightbox-nav:hover { background: rgba(255,255,255,0.28); }
.lightbox-prev { left: 2.5%; }
.lightbox-next { right: 2.5%; }
.lightbox-counter { position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.85); font-size: 0.85rem; letter-spacing: 1.5px; }
.gallery-more::before {
    content: attr(data-more); position: absolute; inset: 0; z-index: 1;
    display: flex; align-items: center; justify-content: center;
    background: rgba(46,34,40,0.74); color: var(--color-white);
    font-family: var(--font-heading); font-size: 2rem; font-weight: 600; letter-spacing: 1px;
}
.gallery-more::after { content: none; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@media (max-width: 600px) {
    .lightbox-nav { width: 44px; height: 44px; font-size: 1.9rem; }
    .lightbox-prev { left: 4px; }
    .lightbox-next { right: 4px; }
}

/* ========================================
   SOCIAL CTA (Facebook / Messenger)
   ======================================== */
.social-cta { background: var(--color-bg); padding: 0 0 var(--space-xxl); }
.social-cta-box {
    max-width: 880px; margin: 0 auto; text-align: center;
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-tertiary) 100%);
    color: var(--color-white); border-radius: var(--radius-lg);
    padding: var(--space-xl) var(--space-lg); box-shadow: var(--shadow-md);
    position: relative; overflow: hidden;
}
.social-cta-box::before {
    content: ''; position: absolute; top: -60%; right: -8%; width: 380px; height: 380px;
    background: rgba(255,255,255,0.05); border-radius: 50%; pointer-events: none;
}
.social-cta-title { font-family: var(--font-heading); font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 400; margin-bottom: var(--space-sm); }
.social-cta-title em { font-style: italic; color: var(--color-secondary-light); }
.social-cta-text { font-size: 1rem; font-weight: 300; opacity: 0.92; max-width: 560px; margin: 0 auto var(--space-lg); line-height: 1.7; }
.social-cta-buttons { display: flex; gap: var(--space-sm); justify-content: center; flex-wrap: wrap; }
.social-btn-fb, .social-btn-msg { gap: 0.55rem; }
.social-btn-fb { background: var(--color-white); color: var(--color-primary-dark); border-color: var(--color-white); }
.social-btn-fb:hover { background: var(--color-secondary-light); border-color: var(--color-secondary-light); color: var(--color-text); transform: translateY(-2px); }
.social-btn-msg { background: transparent; color: var(--color-white); border-color: rgba(255,255,255,0.55); }
.social-btn-msg:hover { background: rgba(255,255,255,0.14); border-color: var(--color-white); color: var(--color-white); transform: translateY(-2px); }
@media (max-width: 600px) {
    .social-cta-box { padding: var(--space-lg) var(--space-md); }
    .social-cta-buttons .btn { width: 100%; }
}

/* ========================================
   FAQ
   ======================================== */
.faq { background: var(--color-bg-alt); }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: var(--space-sm); }
.faq-item { background: var(--color-card); border: 1px solid var(--color-border); border-radius: var(--radius-md); overflow: hidden; transition: box-shadow var(--transition-base); }
.faq-item.open { box-shadow: var(--shadow-md), var(--shadow-glow); }
.faq-question {
    width: 100%; display: flex; align-items: center; justify-content: space-between; gap: var(--space-md);
    padding: 1.3rem var(--space-lg); background: none; border: none; cursor: pointer; text-align: left;
    font-family: var(--font-heading); font-size: 1.2rem; font-weight: 600; color: var(--color-text);
}
.faq-icon { position: relative; width: 18px; height: 18px; flex-shrink: 0; }
.faq-icon::before, .faq-icon::after {
    content: ''; position: absolute; top: 50%; left: 0; width: 18px; height: 2px;
    background: var(--color-primary); border-radius: 2px; transition: transform var(--transition-base);
}
.faq-icon::after { transform: rotate(90deg); }
.faq-item.open .faq-icon::after { transform: rotate(0); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-hidden { display: none; }
.faq-more { display: block; margin: var(--space-md) auto 0; background: none; border: none; cursor: pointer; font-family: var(--font-body); font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; color: var(--color-label); transition: color var(--transition-base); padding: 0.6rem 1rem; }
.faq-more:hover { color: var(--color-primary-dark); }
.faq-answer p { padding: 0 var(--space-lg) 1.3rem; color: var(--color-text-light); font-size: 0.95rem; line-height: 1.7; }

/* ========================================
   FLOATING CTA + BACK TO TOP
   ======================================== */
.floating-cta {
    position: fixed; bottom: calc(1.5rem + env(safe-area-inset-bottom, 0px)); right: 1.5rem; z-index: 900;
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: var(--color-primary-dark); color: var(--color-white);
    padding: 0.9rem 1.4rem; border-radius: 100px; font-size: 0.85rem; font-weight: 600;
    letter-spacing: 0.5px; box-shadow: 0 8px 28px rgba(122,85,96,0.45), 0 0 30px rgba(201,169,110,0.25);
    transition: transform var(--transition-base), background var(--transition-base), opacity var(--transition-base), visibility var(--transition-base);
    opacity: 0; visibility: hidden;
}
.floating-cta.on { opacity: 1; visibility: visible; }
.floating-cta.duck { opacity: 0; visibility: hidden; }
.floating-cta:hover { background: var(--color-tertiary); color: var(--color-white); transform: translateY(-3px); }
.floating-cta-icon { display: inline-flex; align-items: center; }

.back-to-top {
    position: fixed; bottom: calc(1.5rem + env(safe-area-inset-bottom, 0px)); left: 1.5rem; z-index: 900;
    width: 46px; height: 46px; border-radius: 50%; border: none; cursor: pointer;
    background: var(--color-text); color: var(--color-white); font-size: 1.2rem;
    box-shadow: var(--shadow-md); opacity: 0; visibility: hidden;
    transition: opacity var(--transition-base), visibility var(--transition-base), transform var(--transition-base);
}
.back-to-top.show { opacity: 0.85; visibility: visible; }
.back-to-top:hover { opacity: 1; transform: translateY(-3px); }

/* ========================================
   FOOTER
   ======================================== */
.footer { background: var(--color-text); color: var(--color-accent); padding: var(--space-xxl) 0 var(--space-lg); position: relative; }
.footer::before {
    content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 300px; height: 2px; background: linear-gradient(90deg, transparent, var(--color-secondary), transparent);
}

.footer-content { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: var(--space-xl); margin-bottom: var(--space-xl); }

.footer-logo { font-family: var(--font-heading); font-size: 2rem; font-weight: 600; color: var(--color-white); display: inline-block; margin-bottom: var(--space-sm); }
.footer-fulllogo { display: block; height: 140px; width: auto; margin-bottom: var(--space-xs); }
.footer-brand p { font-size: 0.9rem; opacity: 0.7; max-width: 300px; line-height: 1.7; }

.footer-links h4, .footer-social h4 { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 600; color: var(--color-white); margin-bottom: var(--space-md); }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: var(--space-xs); }
.footer-links a { color: var(--color-accent); opacity: 0.7; font-size: 0.9rem; transition: opacity var(--transition-base); }
.footer-links a:hover { opacity: 1; color: var(--color-white); }

.social-links { display: flex; gap: var(--space-sm); }
.social-links a { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.1); color: var(--color-white); font-size: 0.75rem; font-weight: 600; transition: background var(--transition-base), transform var(--transition-base); }
.social-links a:hover { background: var(--color-primary); transform: translateY(-2px); color: var(--color-white); }
.footer-contact { margin-top: var(--space-md); font-size: 0.85rem; opacity: 0.7; line-height: 1.6; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: var(--space-lg); text-align: center; }
.footer-bottom p { font-size: 0.8rem; opacity: 0.5; }
.footer-legal { margin-bottom: 0.5rem; opacity: 0.75 !important; }
.footer-legal a { color: var(--color-accent); }
.footer-legal a:hover { color: var(--color-white); }

/* ========================================
   LEGAL PAGES (Impresszum, Adatkezelés)
   ======================================== */
.legal-wrap { max-width: 820px; margin: 0 auto; padding: 130px var(--container-padding) var(--space-xxl); }
.legal-wrap .legal-back { display: inline-block; margin-bottom: var(--space-md); font-size: 0.85rem; font-weight: 500; color: var(--color-primary); }
.legal-wrap h1 { font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 400; color: var(--color-text); margin-bottom: var(--space-md); }
.legal-wrap h2 { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 600; color: var(--color-primary-dark); margin: var(--space-lg) 0 var(--space-xs); }
.legal-wrap p, .legal-wrap li { color: var(--color-text-light); margin-bottom: var(--space-xs); font-size: 0.95rem; }
.legal-wrap ul { margin: 0 0 var(--space-sm) 1.4rem; }
.legal-wrap strong { color: var(--color-text); }
.legal-note { background: var(--color-bg-alt); border-left: 3px solid var(--color-secondary); padding: var(--space-md); border-radius: var(--radius-sm); margin-bottom: var(--space-lg); font-size: 0.88rem; }
.legal-table { width: 100%; border-collapse: collapse; margin-bottom: var(--space-md); }
.legal-table td { padding: 0.6rem 0.5rem; border-bottom: 1px solid var(--color-border); font-size: 0.92rem; vertical-align: top; }
.legal-table td:first-child { font-weight: 600; color: var(--color-text); width: 38%; }
.fill { color: var(--color-primary-dark); background: rgba(194,160,94,0.14); padding: 0 4px; border-radius: 3px; }

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: var(--color-text);
    color: var(--color-accent);
    padding: var(--space-md) var(--space-lg) calc(var(--space-md) + env(safe-area-inset-bottom, 0px));
    transform: translateY(100%);
    transition: transform var(--transition-base);
    box-shadow: 0 -4px 30px rgba(0,0,0,0.15);
}
.cookie-banner.show {
    transform: translateY(0);
}
.cookie-content {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    flex-wrap: wrap;
}
.cookie-content p {
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
    color: var(--color-accent);
}
.cookie-content a {
    color: var(--color-secondary-light);
    text-decoration: underline;
}
.cookie-content a:hover {
    color: var(--color-white);
}
.cookie-actions { display: flex; gap: 0.5rem; flex-shrink: 0; }
.cookie-btn {
    padding: 0.6rem 1.4rem;
    font-size: 0.75rem;
    flex-shrink: 0;
}
.cookie-btn-decline { background: transparent; color: var(--color-accent); border-color: rgba(240,226,220,0.45); }
.cookie-btn-decline:hover { border-color: var(--color-accent); color: var(--color-white); background: rgba(255,255,255,0.06); }
@media (max-width: 768px) {
    /* compact banner: small text, buttons side by side */
    .cookie-banner { padding: 0.75rem var(--space-md) calc(0.75rem + env(safe-area-inset-bottom, 0px)); }
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 0.6rem;
    }
    .cookie-content p { font-size: 0.76rem; line-height: 1.45; }
    .cookie-actions {
        width: 100%;
        flex-direction: row;
    }
    .cookie-btn {
        flex: 1 1 0;
        width: auto;
        min-width: 0;
        padding: 0.55rem 0.6rem;
    }
}
@media (max-width: 992px) {
    .about-content { grid-template-columns: 1fr; }
    .about-image { order: -1; max-width: 500px; margin: 0 auto; }
    
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .contact-content { grid-template-columns: 1fr; }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-layout { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr 1fr; }
}

/* Collapse the nav to a hamburger drawer until there's real room for the full row */
@media (max-width: 1280px) {
    .nav-links {
        position: fixed; top: 0; right: -100%; width: 70%; max-width: 300px;
        height: 100vh; height: 100dvh;
        background: var(--color-bg); flex-direction: column; justify-content: flex-start; align-items: center;
        gap: var(--space-md); box-shadow: -10px 0 40px rgba(0,0,0,0.1); transition: right var(--transition-slow);
        overflow-y: auto; -webkit-overflow-scrolling: touch;
        padding: 1.5rem 0 calc(1.5rem + env(safe-area-inset-bottom));
    }
    /* Centered when everything fits, scrollable when it doesn't */
    .nav-links li:first-child { margin-top: auto; }
    .nav-links li:last-child { margin-bottom: auto; }
    .nav-links.active { right: 0; }
    .nav-link { font-size: 1rem; color: var(--color-text) !important; padding: 0.5rem 0; display: inline-block; }
    .nav-toggle { display: block; }
    /* Bigger, easier-to-tap language switcher in the drawer */
    .lang-switch button { font-size: 0.85rem; padding: 0.4rem 0.85rem; }
}

@media (max-width: 768px) {
    :root { --space-xxl: 4rem; --space-xl: 2.5rem; }
    
    .nav-link { font-size: 1rem; }

    .services-grid, .testimonials-grid, .benefits-grid, .rules-grid { grid-template-columns: 1fr; }
    /* Tighter service cards on phones */
    .service-image { height: 150px; }
    .service-body { padding: var(--space-md); }
    .service-title { font-size: 1.3rem; }
    .service-desc { font-size: 0.92rem; line-height: 1.65; margin-bottom: var(--space-sm); }
    .svc-modal { padding: var(--space-sm); }
    .svc-modal-box { padding: var(--space-lg); max-height: 90vh; }
    .svc-modal-title { font-size: 1.35rem; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    /* 2-col mobile: 6 uniform tiles = 3 full rows, no orphan cells */
    .gallery-item:first-child { grid-column: auto; grid-row: auto; aspect-ratio: 4 / 3; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    /* ≥16px stops iOS Safari from auto-zooming into form fields */
    .form-group input, .form-group select, .form-group textarea { font-size: 1rem; }
    .footer-content { grid-template-columns: 1fr; text-align: center; gap: var(--space-lg); }
    .footer-brand p { max-width: 100%; }
    .social-links { justify-content: center; }
    .about-features { justify-content: center; }
    .scroll-indicator { display: none; }
    .nav-link-cta { display: inline-block; margin-top: var(--space-sm); }
    .floating-cta-text { display: none; }
    .floating-cta { padding: 1rem; }
    .floating-cta-icon svg { width: 24px; height: 24px; }
    .faq-question { font-size: 1.05rem; padding: 1.1rem var(--space-md); }
    .price-table { padding: var(--space-sm) var(--space-md); }
    .price-row { flex-wrap: wrap; gap: 0.25rem 0.75rem; }
    .price-name { white-space: normal; font-size: 1.1rem; }
    .price-dots { display: none; }
    .price-amount { margin-left: auto; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.25rem; }
    .btn { padding: 0.875rem 1.75rem; font-size: 0.8rem; }
    .section-title { font-size: 1.75rem; }
    .contact-form-wrapper { padding: var(--space-lg); }
    .service-image { height: 128px; }
    .service-title { font-size: 1.2rem; }
}

/* ========================================
   ACCESSIBILITY
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
    .reveal { opacity: 1; transform: none; }
}

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 3px solid var(--color-primary); outline-offset: 2px; }

/* ========================================
   COHESION TOUCHES
   ======================================== */
/* Resonance arcs under every section title — sound rippling from the bowl */
.section-header .section-title::after {
    content: ''; display: block; width: 64px; height: 22px; margin: var(--space-sm) auto 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 22'%3E%3Cg fill='none' stroke='%23C2A05E' stroke-width='1.5' stroke-linecap='round'%3E%3Cpath d='M24 21a8 8 0 0 1 16 0'/%3E%3Cpath d='M18 21a14 14 0 0 1 28 0' opacity='.75'/%3E%3Cpath d='M12 21a20 20 0 0 1 40 0' opacity='.45'/%3E%3C/g%3E%3C/svg%3E") center/contain no-repeat;
}

/* Slightly warmer card borders for cohesion */
.service-card, .testimonial-card, .info-card, .rule-card, .faq-item, .price-table { border-color: rgba(192,134,127,0.16); }

/* Collapsible "Magamról" story */
.story-more { display: none; }
.story-toggle { display: block; margin: var(--space-md) auto 0; background: none; border: none; cursor: pointer; font-family: var(--font-body); font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; color: var(--color-primary); transition: color var(--transition-base); }
.story-toggle:hover { color: var(--color-primary-dark); }

/* Bulleted answers inside the Házirend accordion */
.faq-answer ul { margin: 0; padding: 0 var(--space-lg) 1.3rem 2.6rem; }
.faq-answer li { color: var(--color-text-light); font-size: 0.95rem; line-height: 1.7; margin-bottom: 0.4rem; }
.faq-answer li:last-child { margin-bottom: 0; }

/* Language switcher */
.lang-li { display: flex; align-items: center; }
.lang-switch { display: inline-flex; gap: 2px; border: 1px solid var(--color-border); border-radius: 100px; padding: 2px; background: rgba(255,255,255,0.55); }
.lang-switch button { border: none; background: none; cursor: pointer; font-family: var(--font-body); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.5px; color: var(--color-text-muted); padding: 0.25rem 0.55rem; border-radius: 100px; transition: background var(--transition-base), color var(--transition-base); }
.lang-switch button:hover { color: var(--color-text); }
.lang-switch button.active { background: var(--color-secondary); color: var(--color-text); }

/* Google map in contact section */
.contact-map { margin-top: var(--space-xl); max-width: 1000px; margin-left: auto; margin-right: auto; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--color-border); }
.contact-map iframe { width: 100%; height: 360px; border: 0; display: block; }
.map-placeholder { min-height: 300px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: var(--space-sm); background: var(--color-bg); padding: var(--space-lg); text-align: center; }
.map-note { font-size: 0.85rem; color: var(--color-text-muted); max-width: 420px; }

/* GDPR consent checkbox in the booking form */
.form-consent { display: flex; align-items: flex-start; gap: 0.6rem; margin-bottom: var(--space-md); }
.form-consent input[type="checkbox"] { width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0; accent-color: var(--color-primary); cursor: pointer; }
.form-consent label { font-size: 0.8rem; font-weight: 400; text-transform: none; letter-spacing: 0; color: var(--color-text-light); margin: 0; cursor: pointer; line-height: 1.5; }
.form-consent a { text-decoration: underline; }

/* Service expandable price/duration line */
.svc-pricing { margin-top: var(--space-sm); padding-top: var(--space-sm); border-top: 1px dashed var(--color-border); font-size: 0.92rem; color: var(--color-text-light); }
.svc-pricing strong { color: var(--color-text); }
.svc-subhead { margin-top: var(--space-md) !important; padding-top: var(--space-sm); border-top: 1px dashed var(--color-border); }
.svc-subhead strong { font-family: var(--font-heading); font-size: 1.15rem; color: var(--color-tertiary); font-weight: 600; }
.svc-tagline { text-align: center; font-family: var(--font-heading); font-style: italic; color: var(--color-primary-dark); font-size: 0.98rem; margin: var(--space-xs) 0 var(--space-sm) !important; }

/* Map inside the contact info column (2026-08-08) */
.contact-info .contact-map { margin: 0; max-width: none; }
@media (max-width: 992px) { .contact-info .map-placeholder { min-height: 180px; } }

/* Per-photo crop focus for the service card windows (2026-08-08).
   The 150/128px phone letterbox center-cropped subjects away; each image's
   object-position anchors the slice on its actual subject. */
.service-image img[src$="lavakagylo.webp"] { object-position: 50% 45%; }
.service-image img[src$="hangtalfurdo.webp"] { object-position: 50% 50%; }
.service-image img[src$="fejmasszazs.webp"] { object-position: 50% 40%; }
.service-image img[src$="hangtalkezeles.webp"] { object-position: 50% 45%; }
.service-image img[src$="metamorf.webp"] { object-position: 50% 50%; }
.service-image img[src$="dupla.webp"] { object-position: 50% 50%; }
.service-image img[src$="tertisztitas.webp"] { object-position: 50% 55%; }
.service-image img[src$="ferfi.webp"] { object-position: 50% 42%; }
.service-image img[src$="taoista.webp"] { object-position: 50% 40%; }
.service-image img[src$="lingam.webp"] { object-position: 50% 45%; }
.service-image img[src$="taoista-lingam.webp"] { object-position: 50% 50%; }

/* Andrea's 2026-08-08 service tiles: anchor above the baked-in caption */
.service-image img[src$="tantra.webp"] { object-position: 50% 45%; }
