/* ============================================
   HRDÝ NA TEPLICU — Dizajnový systém v2
   Ing. Radoslav Šeliga — Starosta Spišskej Teplice
   Inšpirácia: SkinMedical glass cards, PureBliss warmth,
   mist conic borders, Svetlana elegancia
   ============================================ */

/* --- Custom Properties --- */
:root {
    --gold:           #C9A55A;
    --gold-light:     #E2C992;
    --gold-dark:      #A8854A;
    --gold-soft:      rgba(201, 165, 90, 0.12);
    --cream:          #FDF8F0;
    --cream-warm:     #F5EDE0;
    --cream-dark:     #EDE5D6;
    --dark:           #1E1B16;
    --dark-warm:      #2A2520;
    --dark-card:      #33302A;
    --red:            #C0392B;
    --red-soft:       rgba(192, 57, 43, 0.12);
    --white:          #FFFFFF;
    --text:           #3D3529;
    --text-light:     #7A7064;
    --text-muted:     #A69B8C;
    --border:         rgba(201, 165, 90, 0.18);
    --border-light:   rgba(201, 165, 90, 0.10);
    --shadow:         0 4px 20px rgba(30, 27, 22, 0.06);
    --shadow-strong:  0 12px 40px rgba(30, 27, 22, 0.10);
    --shadow-gold:    0 4px 20px rgba(201, 165, 90, 0.15);
    --transition:     0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --radius:         20px;
    --radius-sm:      12px;
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Inter', 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.75;
    color: var(--text);
    background: var(--cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 3vw, 1.5rem); }
h4 { font-size: clamp(1rem, 2.5vw, 1.2rem); }

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

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

img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

section {
    padding: 5rem 0;
    position: relative;
}

/* --- Navigation — Warm Cream Glass --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(253, 248, 240, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    transition: all 0.4s ease;
}

.nav.scrolled {
    background: rgba(253, 248, 240, 0.95);
    box-shadow: 0 2px 30px rgba(30, 27, 22, 0.08);
    border-bottom-color: var(--border);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.nav-brand {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    letter-spacing: -0.01em;
}

.brand-heart {
    color: var(--red);
    font-size: 1.1em;
}

.brand-accent {
    color: var(--gold);
}

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

.nav-links a {
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.5rem 0.9rem;
    border-radius: 8px;
    position: relative;
    transition: all var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transition: width var(--transition);
    border-radius: 1px;
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 70%;
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    background: var(--gold-soft);
    border: 1px solid var(--border);
    color: var(--gold-dark);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    padding: 0.45rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--transition);
    text-transform: uppercase;
}

.nav-toggle:hover {
    background: rgba(201, 165, 90, 0.18);
}

/* --- Mobile Drawer — Warm Overlay --- */
.mobile-drawer {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(160deg,
        var(--cream) 0%,
        var(--cream-warm) 50%,
        rgba(232, 196, 184, 0.15) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 10000;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-drawer.open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-drawer-header {
    position: absolute;
    top: 1.2rem;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.5rem;
}

.mobile-drawer-brand {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--dark);
}

.mobile-drawer-close {
    background: var(--gold-soft);
    border: 1px solid var(--border);
    color: var(--dark);
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all var(--transition);
}

.mobile-drawer-close:hover {
    background: rgba(201, 165, 90, 0.2);
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    width: 100%;
    max-width: 320px;
    padding: 0 1.5rem;
}

.mobile-nav-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    color: var(--dark);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.92rem;
    letter-spacing: 0.02em;
    transform: translateY(15px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-drawer.open .mobile-nav-card {
    transform: translateY(0);
    opacity: 1;
}

.mobile-drawer.open .mobile-nav-card:nth-child(1) { transition-delay: 0.06s; }
.mobile-drawer.open .mobile-nav-card:nth-child(2) { transition-delay: 0.12s; }
.mobile-drawer.open .mobile-nav-card:nth-child(3) { transition-delay: 0.18s; }
.mobile-drawer.open .mobile-nav-card:nth-child(4) { transition-delay: 0.24s; }
.mobile-drawer.open .mobile-nav-card:nth-child(5) { transition-delay: 0.30s; }

.mobile-nav-card:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: var(--border);
    transform: translateY(-2px);
}

.mobile-nav-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gold-soft), rgba(201, 165, 90, 0.06));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* --- Hero Section — Warm Dark Gradient --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(170deg, #1E1B16 0%, #2A2520 45%, #1E1B16 100%);
    color: var(--cream);
    position: relative;
    overflow: hidden;
    padding: 7rem 0 5rem;
}

/* Warm glow orbs */
.hero::after {
    content: '';
    position: absolute;
    top: 10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle,
        rgba(201, 165, 90, 0.14) 0%,
        rgba(201, 165, 90, 0.04) 40%,
        transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: orbFloat1 12s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

.hero-orb-2 {
    position: absolute;
    bottom: 5%;
    left: -8%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle,
        rgba(192, 57, 43, 0.08) 0%,
        rgba(192, 57, 43, 0.02) 40%,
        transparent 70%);
    border-radius: 50%;
    filter: blur(50px);
    animation: orbFloat2 15s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

/* Morphing decorative shapes (PureBliss-inspired) */
.hero-deco {
    position: absolute;
    width: 180px;
    height: 180px;
    border: 1px solid rgba(201, 165, 90, 0.08);
    border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%;
    animation: morph 12s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.hero-deco-1 {
    top: 15%;
    left: 8%;
    box-shadow: 0 0 40px rgba(201, 165, 90, 0.06), inset 0 0 30px rgba(201, 165, 90, 0.04);
}

.hero-deco-2 {
    bottom: 20%;
    right: 12%;
    width: 120px;
    height: 120px;
    animation-delay: -4s;
    animation-duration: 16s;
}

@keyframes morph {
    0%, 100% { border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%; }
    33% { border-radius: 50% 50% 40% 60% / 60% 50% 50% 40%; }
    66% { border-radius: 40% 60% 60% 40% / 50% 40% 50% 60%; }
}

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(20px, -30px); }
    66% { transform: translate(-15px, 15px); }
}

@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0); }
    40% { transform: translate(-25px, 20px); }
    80% { transform: translate(15px, -25px); }
}

/* Dot pattern */
.hero-pattern {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(201, 165, 90, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 0;
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(201, 165, 90, 0.1);
    border: 1px solid rgba(201, 165, 90, 0.2);
    color: var(--gold-light);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.45rem 1.1rem;
    border-radius: 100px;
    width: fit-content;
}

.hero h1 {
    color: var(--cream);
    line-height: 1.15;
}

.hero h1 .line-wrap {
    display: block;
    overflow: hidden;
}

.hero-gold {
    color: var(--gold-light);
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: rgba(253, 248, 240, 0.65);
    line-height: 1.7;
    max-width: 480px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.hero-badge-item {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(253, 248, 240, 0.7);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.72rem;
    letter-spacing: 0.03em;
    padding: 0.35rem 0.8rem;
    border-radius: 8px;
}

.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(201, 165, 90, 0.12);
}

.hero-stat { text-align: center; }

.stat-number {
    display: block;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--gold-light);
    line-height: 1.2;
}

.stat-label {
    display: block;
    font-size: 0.68rem;
    color: rgba(253, 248, 240, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.25rem;
    font-weight: 500;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.hero-photo-wrap {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.hero-photo {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(201, 165, 90, 0.15);
}

.hero-photo-badge {
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.55rem 1.3rem;
    border-radius: 100px;
    white-space: nowrap;
    box-shadow: var(--shadow-gold);
}

.hero-signature-wrap { text-align: center; }

.hero-signature-text {
    font-family: 'Great Vibes', cursive;
    font-size: 2.6rem;
    color: rgba(253, 248, 240, 0.3);
    clip-path: inset(0 100% 0 0);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.85rem 1.8rem;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    letter-spacing: 0.03em;
    transition: all var(--transition);
    cursor: pointer;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, #d4b876 0%, var(--gold) 30%, var(--gold-dark) 100%);
    color: var(--white);
    border-color: rgba(201, 165, 90, 0.4);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 50%, #8a6e38 100%);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 165, 90, 0.3);
}

.btn-outline {
    background: transparent;
    color: rgba(253, 248, 240, 0.85);
    border-color: rgba(253, 248, 240, 0.2);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(253, 248, 240, 0.4);
    color: var(--cream);
    transform: translateY(-2px);
}

.btn-outline-dark {
    background: transparent;
    color: var(--dark);
    border-color: var(--border);
}

.btn-outline-dark:hover {
    background: var(--gold-soft);
    border-color: var(--gold);
    color: var(--gold-dark);
    transform: translateY(-2px);
}

.btn-gold {
    background: linear-gradient(135deg, #d4b876 0%, var(--gold) 30%, var(--gold-dark) 100%);
    color: var(--white);
    border-color: rgba(201, 165, 90, 0.4);
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 165, 90, 0.35);
    color: var(--white);
}

/* --- Section Dividers — Ornamental (not SVG waves) --- */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 0.5rem 0;
    pointer-events: none;
    position: relative;
    z-index: 3;
}

.section-divider .divider-line {
    flex: 1;
    max-width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.4;
}

.section-divider .divider-symbol {
    color: var(--gold);
    font-size: 1.2rem;
    opacity: 0.5;
}

.section-divider-dark {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 0.5rem 0;
    pointer-events: none;
    position: relative;
    z-index: 3;
}

.section-divider-dark .divider-line {
    flex: 1;
    max-width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 165, 90, 0.4), transparent);
}

.section-divider-dark .divider-symbol {
    color: var(--gold-light);
    font-size: 1.2rem;
    opacity: 0.3;
}

/* --- Section Backgrounds --- */
.section-cream {
    background: var(--cream);
}

.section-white {
    background: var(--white);
    background-image:
        radial-gradient(ellipse 80% 50% at 5% 95%, rgba(201, 165, 90, 0.04) 0%, transparent 55%),
        radial-gradient(ellipse 50% 70% at 95% 10%, rgba(201, 165, 90, 0.03) 0%, transparent 55%);
}

.section-dark {
    background: var(--dark);
    color: var(--cream);
    overflow: hidden;
    position: relative;
}

.section-dark::before {
    content: '';
    position: absolute;
    inset: -20%;
    background:
        radial-gradient(ellipse 60% 40% at 20% 50%, rgba(201, 165, 90, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 40% 60% at 80% 30%, rgba(201, 165, 90, 0.04) 0%, transparent 55%);
    animation: ambientDrift 25s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0;
}

@keyframes ambientDrift {
    0%   { transform: translateX(-3%) translateY(0); }
    50%  { transform: translateX(2%) translateY(-2%); }
    100% { transform: translateX(3%) translateY(-1%); }
}

.section-dark .container {
    position: relative;
    z-index: 1;
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
    color: var(--cream);
}

/* --- Section Header --- */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold-dark);
    background: var(--gold-soft);
    border: 1px solid var(--border-light);
    padding: 0.35rem 1rem;
    border-radius: 100px;
    margin-bottom: 1rem;
}

.section-dark .section-tag {
    color: var(--gold-light);
    background: rgba(201, 165, 90, 0.1);
    border-color: rgba(201, 165, 90, 0.2);
}

.section-header h2 {
    margin-bottom: 0.75rem;
}

.section-header p {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 580px;
    margin: 0 auto;
}

.section-dark .section-header p {
    color: rgba(253, 248, 240, 0.6);
}

.gold-line {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    border-radius: 2px;
    margin: 1rem auto 0;
}

/* --- Stats Bar --- */
.stats-bar {
    background: var(--dark-warm);
    padding: 2.5rem 0;
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    text-align: center;
}

.stats-item .stats-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-size: clamp(1.6rem, 4vw, 2.5rem);
    color: var(--gold-light);
    line-height: 1.2;
}

.stats-item .stats-label {
    font-size: 0.78rem;
    color: rgba(253, 248, 240, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
    margin-top: 0.3rem;
}

/* --- About Preview — Glass Card Style --- */
.about-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

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

.about-photo-wrap img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-strong);
}

.about-photo-badge {
    position: absolute;
    bottom: -12px;
    right: 20px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-gold);
}

.about-text h2 { margin-bottom: 1rem; }
.about-text p { margin-bottom: 1rem; color: var(--text-light); }
.about-text .btn { margin-top: 0.5rem; }

/* --- Glass Cards (SkinMedical-inspired) --- */
.glass-card {
    position: relative;
    background:
        radial-gradient(ellipse at top left, rgba(201, 165, 90, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(168, 133, 74, 0.06) 0%, transparent 50%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.92) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

/* Golden top line */
.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, rgba(201, 165, 90, 0.6) 0%, rgba(201, 165, 90, 0.3) 40%, transparent 100%);
    border-radius: var(--radius) var(--radius) 0 0;
    transition: opacity 0.4s ease;
}

.glass-card:hover {
    transform: translateY(-4px);
    border-color: rgba(201, 165, 90, 0.3);
    box-shadow:
        0 16px 48px rgba(201, 165, 90, 0.12),
        0 8px 24px rgba(0, 0, 0, 0.04);
}

.glass-card:hover::before {
    background: linear-gradient(90deg, var(--gold) 0%, rgba(201, 165, 90, 0.4) 50%, transparent 100%);
}

.glass-card .card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--gold-soft), rgba(201, 165, 90, 0.05));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
}

.glass-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.glass-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-light);
}

/* Bento Grid using glass cards */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

/* --- Quote Section --- */
.quote-section {
    text-align: center;
    padding: 4.5rem 0;
}

.quote-text {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.3rem, 3vw, 1.9rem);
    font-weight: 400;
    color: var(--cream);
    font-style: italic;
    max-width: 650px;
    margin: 0 auto 1rem;
    line-height: 1.5;
}

.quote-author {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--gold-light);
    font-weight: 600;
    letter-spacing: 0.03em;
}

/* --- Page Hero (subpages) --- */
.page-hero {
    background: linear-gradient(180deg, #1E1B16 0%, #2A2520 100%);
    color: var(--cream);
    padding: 8rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: -20%;
    background:
        radial-gradient(ellipse 60% 40% at 20% 50%, rgba(201, 165, 90, 0.07) 0%, transparent 60%),
        radial-gradient(ellipse 40% 60% at 80% 30%, rgba(201, 165, 90, 0.05) 0%, transparent 55%);
    animation: ambientDrift 20s ease-in-out infinite alternate;
    pointer-events: none;
}

.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--cream); margin-bottom: 1rem; }

.page-hero .page-hero-subtitle {
    font-size: 1.05rem;
    color: rgba(253, 248, 240, 0.6);
    max-width: 560px;
    margin: 0 auto;
}

.page-hero .section-tag {
    color: var(--gold-light);
    background: rgba(201, 165, 90, 0.1);
    border-color: rgba(201, 165, 90, 0.2);
    margin-bottom: 1rem;
}

/* --- Values Grid --- */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.value-card {
    text-align: center;
    padding: 2rem 1.25rem;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: all var(--transition);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-strong);
    border-color: var(--border);
}

.value-card:hover::before { opacity: 1; }

.value-icon {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    display: block;
}

.value-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.value-card p { font-size: 0.85rem; color: var(--text-light); }

/* --- Timeline --- */
.timeline {
    position: relative;
    padding-left: 2.5rem;
    max-width: 700px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold), rgba(201, 165, 90, 0.2));
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    padding-bottom: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.5rem;
    top: 0.4rem;
    width: 12px;
    height: 12px;
    background: var(--gold);
    border: 3px solid var(--dark);
    border-radius: 50%;
    z-index: 1;
}

.timeline-year {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.78rem;
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.25rem;
}

.timeline-item h3 { font-size: 1.05rem; margin-bottom: 0.3rem; color: var(--cream); }
.timeline-item p { font-size: 0.9rem; color: rgba(253, 248, 240, 0.6); }

/* --- Reference Cards --- */
.reference-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.reference-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.reference-card::before {
    content: '\201C';
    position: absolute;
    top: 0.8rem;
    right: 1.5rem;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 4rem;
    color: rgba(201, 165, 90, 0.1);
    line-height: 1;
}

.reference-card .ref-quote {
    font-style: italic;
    font-size: 0.95rem;
    color: var(--text);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.reference-card .ref-author {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--dark);
}

.reference-card .ref-title {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* --- Results Summary --- */
.results-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.result-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(201, 165, 90, 0.12);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.result-card:hover {
    background: rgba(201, 165, 90, 0.06);
    border-color: rgba(201, 165, 90, 0.25);
}

.result-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-size: clamp(2rem, 5vw, 2.8rem);
    color: var(--gold-light);
    line-height: 1.1;
}

.result-label {
    font-size: 0.85rem;
    color: rgba(253, 248, 240, 0.55);
    margin-top: 0.5rem;
    font-weight: 500;
}

/* --- Accordion --- */
.accordion {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item { margin-bottom: 0.6rem; }

.accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1.1rem 1.4rem;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--dark);
    transition: all var(--transition);
    text-align: left;
}

.accordion-header:hover {
    background: var(--cream-warm);
    border-color: var(--border);
}

.accordion-header.active {
    background: var(--dark);
    color: var(--cream);
    border-color: var(--dark);
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.accordion-icon {
    font-size: 1rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.accordion-header.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-top: none;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.accordion-content.open { max-height: 2000px; }

.accordion-body { padding: 1.4rem; }

.accordion-body ul { list-style: none; padding: 0; }

.accordion-body li {
    padding: 0.45rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(201, 165, 90, 0.08);
    color: var(--text-light);
}

.accordion-body li:last-child { border-bottom: none; }

.accordion-body li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.85rem;
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
}

.accordion-count {
    background: var(--gold-soft);
    color: var(--gold-dark);
    font-size: 0.68rem;
    font-weight: 700;
    padding: 0.15rem 0.55rem;
    border-radius: 50px;
    margin-left: 0.5rem;
}

.accordion-header.active .accordion-count {
    background: rgba(201, 165, 90, 0.15);
    color: var(--gold-light);
}

/* --- Data Table --- */
.data-table-wrap {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}

.data-table thead {
    background: var(--dark);
    color: var(--cream);
}

.data-table th {
    padding: 1rem 1.25rem;
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.data-table td {
    padding: 0.8rem 1.25rem;
    border-bottom: 1px solid rgba(201, 165, 90, 0.08);
}

.data-table tbody tr:hover { background: var(--gold-soft); }
.data-table tbody tr:last-child td { border-bottom: none; }

.data-table tfoot {
    background: var(--cream-warm);
    font-weight: 700;
}

.data-table tfoot td { border-top: 2px solid var(--gold); }
.data-table .highlight-row { background: rgba(201, 165, 90, 0.06); }

/* INEKO Badge */
.ineko-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #d4b876 0%, var(--gold) 30%, var(--gold-dark) 100%);
    color: var(--white);
    padding: 1.5rem 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-gold);
}

.ineko-score {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 1;
}

.ineko-label {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
}

.ineko-sublabel { font-size: 0.75rem; opacity: 0.8; }

/* --- Plan Cards --- */
.plan-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.plan-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-strong);
    border-color: var(--border);
}

.plan-card:hover::before { opacity: 1; }

.plan-card .plan-icon { font-size: 1.8rem; margin-bottom: 1rem; }
.plan-card h3 { margin-bottom: 0.75rem; font-size: 1.1rem; }
.plan-card ul { list-style: none; }

.plan-card li {
    padding: 0.3rem 0;
    padding-left: 1.2rem;
    position: relative;
    font-size: 0.88rem;
    color: var(--text-light);
}

.plan-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65rem;
    width: 5px;
    height: 5px;
    background: var(--gold);
    border-radius: 50%;
}

.plan-highlight {
    grid-column: 1 / -1;
    background: var(--dark);
    color: var(--cream);
    text-align: center;
    padding: 3rem;
    border: 1px solid rgba(201, 165, 90, 0.15);
}

.plan-highlight::before { display: none; }
.plan-highlight h3 { color: var(--cream); font-size: 1.25rem; }
.plan-highlight p { color: rgba(253, 248, 240, 0.7); max-width: 560px; margin: 0 auto; font-size: 1rem; }

/* --- Contact Form --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: start;
}

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

.form-group label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.78rem;
    color: var(--dark);
    margin-bottom: 0.35rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--text);
    transition: all var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(201, 165, 90, 0.1);
}

.form-group textarea { min-height: 140px; resize: vertical; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-submit { margin-top: 0.5rem; }

.form-submit .btn {
    width: 100%;
    justify-content: center;
    padding: 0.95rem;
    font-size: 0.92rem;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem 1.2rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(72, 187, 120, 0.08);
    border: 1px solid rgba(72, 187, 120, 0.25);
    color: #2F855A;
}

.form-message.error {
    display: block;
    background: rgba(192, 57, 43, 0.08);
    border: 1px solid rgba(192, 57, 43, 0.25);
    color: #C0392B;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.4rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all var(--transition);
}

.contact-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-strong);
}

.contact-card-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--gold-soft), rgba(201, 165, 90, 0.05));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-card h4 { font-size: 0.92rem; margin-bottom: 0.2rem; }
.contact-card p { font-size: 0.85rem; color: var(--text-light); line-height: 1.5; }
.contact-card a { color: var(--gold-dark); font-weight: 600; }
.contact-card a:hover { color: var(--gold); }

.map-wrap {
    margin-top: 1.5rem;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
}

.map-wrap iframe { width: 100%; height: 280px; display: block; border: none; }

/* --- Footer --- */
.footer {
    background: var(--dark);
    color: rgba(253, 248, 240, 0.65);
    padding: 3rem 0 1.5rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer-brand {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--cream);
    margin-bottom: 0.75rem;
}

.footer-desc {
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(253, 248, 240, 0.5);
}

.footer h4 {
    color: var(--gold-light);
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.footer-links a {
    display: block;
    color: rgba(253, 248, 240, 0.5);
    padding: 0.25rem 0;
    font-size: 0.88rem;
    transition: all var(--transition);
}

.footer-links a:hover {
    color: var(--gold-light);
    padding-left: 0.2rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(201, 165, 90, 0.08);
    font-size: 0.78rem;
    color: rgba(253, 248, 240, 0.3);
}

/* --- Back to Top --- */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    background: var(--dark);
    border: 1px solid rgba(201, 165, 90, 0.2);
    border-radius: var(--radius-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
    z-index: 99;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: var(--gold-light);
    font-size: 1.2rem;
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
}

.back-to-top:hover {
    background: var(--dark-warm);
    transform: translateY(-3px);
    border-color: var(--gold);
}

/* --- Content blocks --- */
.content-block { margin-bottom: 2.5rem; }
.content-block h2 { margin-bottom: 1rem; }
.content-block h3 { margin-bottom: 0.75rem; }
.content-block p { margin-bottom: 1rem; color: var(--text-light); }

.content-block li {
    padding: 0.3rem 0;
    padding-left: 1.4rem;
    position: relative;
    color: var(--text-light);
    font-size: 0.92rem;
}

.content-block li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65rem;
    width: 5px;
    height: 5px;
    background: var(--gold);
    border-radius: 50%;
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.bio-intro {
    font-size: 1.1rem;
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--text);
    line-height: 1.8;
    border-left: 3px solid var(--gold);
    padding-left: 1.5rem;
    margin-bottom: 2rem;
    font-style: italic;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; text-align: center; }
    .hero-content { align-items: center; }
    .hero-badges { justify-content: center; }
    .btn-group { justify-content: center; }
    .about-preview { grid-template-columns: 1fr; text-align: center; }
    .about-photo-wrap { max-width: 380px; margin: 0 auto; }
    .bento-grid { grid-template-columns: repeat(2, 1fr); }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .plan-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .two-col { grid-template-columns: 1fr; }
    .reference-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero-deco { display: none; }
}

@media (max-width: 900px) {
    .nav-links { display: none; }
    .nav-toggle { display: flex; }
    .mobile-drawer { display: flex; }
}

@media (max-width: 768px) {
    .hero-orb-2 { display: none; }
    .hero::after { width: 300px; height: 300px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-stats { grid-template-columns: repeat(2, 1fr); }
    .results-summary { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    body { font-size: 15px; }
    section { padding: 3.5rem 0; }
    .hero { min-height: 90vh; padding: 6rem 0 4rem; }
    .bento-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); }
    .hero-photo-wrap { max-width: 260px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .hero-signature-text { clip-path: none !important; }
}

/* --- Utility --- */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
