/* ============================================
   Clinic Copenhagen — Premium Medical Aesthetics
   Production CSS — Black + Gold Luxury Theme
   ============================================ */

/* ------------------------------------------
   1. CSS Custom Properties
   ------------------------------------------ */
:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-card: #161616;
    --bg-card-hover: #1c1c1c;
    --text-primary: #f5f5f5;
    --text-secondary: #a0a0a0;
    --text-muted: #5a5a5a;
    --gold: #C9A84C;
    --gold-light: #D4C078;
    --gold-dark: #A8893D;
    --border: rgba(201, 168, 76, 0.12);
    --border-subtle: rgba(255, 255, 255, 0.06);
    --shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
    --container-width: 1200px;
    --nav-height: 80px;
}

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

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

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

::selection {
    background-color: var(--gold);
    color: var(--bg-primary);
}

::-moz-selection {
    background-color: var(--gold);
    color: var(--bg-primary);
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: rgba(201, 168, 76, 0.3);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-dark);
}

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

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

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    outline: none;
}

input, textarea {
    font-family: inherit;
    outline: none;
}

/* ------------------------------------------
   3. Typography
   ------------------------------------------ */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.15;
    color: var(--text-primary);
}

h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 500;
    letter-spacing: 0.01em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
}

h4 {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
}

p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

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

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

.section-line.visible {
    animation: sectionLineGrow 0.8s var(--transition) forwards;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ------------------------------------------
   4. Layout
   ------------------------------------------ */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.section {
    padding: 8rem 0;
    position: relative;
    overflow-x: hidden;
}

.section-alt {
    background-color: var(--bg-secondary);
}

.section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-dark), var(--gold), var(--gold-dark), transparent);
    opacity: 0.4;
}

.section:last-of-type::after {
    display: none;
}

/* ------------------------------------------
   5. Utility Classes
   ------------------------------------------ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.95rem 2.4rem;
    background: var(--gold);
    color: var(--bg-primary);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover {
    background: var(--gold-light);
    box-shadow: 0 0 30px rgba(201, 168, 76, 0.3), 0 4px 15px rgba(201, 168, 76, 0.2);
    transform: translateY(-2px);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary.shimmer {
    animation: shimmer 3s ease-in-out infinite;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.95rem 2.4rem;
    background: transparent;
    color: var(--gold);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 4px;
    border: 1.5px solid var(--gold);
    cursor: pointer;
    transition: all var(--transition);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--bg-primary);
    box-shadow: 0 0 20px rgba(201, 168, 76, 0.2);
    transform: translateY(-2px);
}

.gold-text {
    color: var(--gold);
}

/* ------------------------------------------
   6. Navigation
   ------------------------------------------ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    z-index: 1000;
    transition: all var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.02em;
    text-decoration: none;
    flex-shrink: 0;
}

.nav-logo img {
    height: 40px;
    width: auto;
}

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

.nav-links a {
    color: var(--text-primary);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-decoration: none;
    position: relative;
    transition: color var(--transition);
    padding: 0.25rem 0;
}

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

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

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 0.6rem 1.6rem;
    background: var(--gold);
    color: var(--bg-primary) !important;
    font-size: 0.82rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all var(--transition);
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--gold-light) !important;
    color: var(--bg-primary) !important;
    box-shadow: 0 0 20px rgba(201, 168, 76, 0.25);
    transform: translateY(-1px);
}

/* Language Toggle */
.lang-toggle {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.7rem;
    border: 1px solid var(--border-subtle);
    border-radius: 4px;
    background: transparent;
    cursor: pointer;
    transition: all var(--transition);
    margin-right: 0.8rem;
    flex-shrink: 0;
}

.lang-toggle:hover {
    border-color: var(--gold);
}

.lang-flag {
    width: 16px;
    height: 11px;
    opacity: 0.45;
    filter: grayscale(0.6);
    transition: all var(--transition);
}

.lang-toggle:hover .lang-flag {
    opacity: 1;
    filter: grayscale(0);
}

.lang-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: color var(--transition);
}

.lang-active {
    color: var(--gold);
}

.lang-inactive {
    color: var(--text-muted);
}

.lang-divider {
    color: var(--text-muted);
    font-size: 0.7rem;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition);
    position: absolute;
}

.hamburger span:nth-child(1) {
    top: 8px;
}

.hamburger span:nth-child(2) {
    top: 15px;
}

.hamburger span:nth-child(3) {
    top: 22px;
}

.hamburger.active span:nth-child(1) {
    top: 15px;
    transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    top: 15px;
    transform: rotate(-45deg);
}

/* ------------------------------------------
   7. Mobile Menu
   ------------------------------------------ */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.3rem;
}

.mobile-menu-links a {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-primary);
    text-decoration: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.mobile-menu.active .mobile-menu-links a {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.active .mobile-menu-links a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-menu-links a:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active .mobile-menu-links a:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-menu-links a:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.active .mobile-menu-links a:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu.active .mobile-menu-links a:nth-child(6) { transition-delay: 0.35s; }
.mobile-menu.active .mobile-menu-links a:nth-child(7) { transition-delay: 0.4s; }
.mobile-menu.active .mobile-menu-links a:nth-child(8) { transition-delay: 0.45s; }

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

.mobile-menu-book {
    margin-top: 1.5rem;
    padding: 0.9rem 2.5rem;
    background: var(--gold);
    color: var(--bg-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 4px;
    text-decoration: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    transition-delay: 0.5s;
}

.mobile-menu.active .mobile-menu-book {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-book:hover {
    background: var(--gold-light);
    box-shadow: 0 0 30px rgba(201, 168, 76, 0.3);
}

/* ------------------------------------------
   8. Hero
   ------------------------------------------ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: #0a0a0a;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.55;
    filter: brightness(0.8) saturate(0.4);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 50% 50%, rgba(201, 168, 76, 0.06), transparent 60%),
        linear-gradient(to bottom, rgba(10, 10, 10, 0) 0%, rgba(10, 10, 10, 0.3) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-variant: small-caps;
}

.hero h1 {
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.hero-tagline {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
    transition: opacity 0.5s ease;
}

.hero-ctas {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    flex-wrap: wrap;
}

/* ------------------------------------------
   9. Trust Bar
   ------------------------------------------ */
.trust-bar {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 2.5rem 0;
    overflow-x: hidden;
}

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

.trust-badge {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    background: rgba(201, 168, 76, 0.04);
    border: 1px solid var(--border);
    border-radius: 8px;
    transition: all var(--transition);
}

.trust-badge:hover {
    background: rgba(201, 168, 76, 0.08);
    border-color: rgba(201, 168, 76, 0.25);
}

.trust-badge-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 168, 76, 0.1);
    border-radius: 8px;
    color: var(--gold);
}

.trust-badge-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.trust-badge-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.02em;
}

.trust-badge-sub {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Legacy trust classes */
.trust-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.trust-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.trust-text {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-secondary);
}

/* ------------------------------------------
   10. About Grid
   ------------------------------------------ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-image:hover img {
    transform: scale(1.03);
}

.about-text h3 {
    color: var(--gold);
    margin-bottom: 1rem;
}

.about-text p {
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

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

/* ------------------------------------------
   11. CC Lips
   ------------------------------------------ */
/* New stacked layout: images side-by-side on top, full-width text below */
.cc-lips-showcase {
    max-width: 900px;
    margin: 0 auto;
}

.cc-lips-images-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.cc-lips-images-row img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: all var(--transition);
}

.cc-lips-images-row img:hover {
    border-color: rgba(201, 168, 76, 0.3);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(201, 168, 76, 0.06);
    transform: translateY(-3px);
}

.cc-lips-text-full {
    text-align: center;
}

.cc-lips-text-full p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.cc-lips-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem 2rem;
    max-width: 650px;
    margin: 0 auto 2rem;
    text-align: left;
}

.cc-lips-features li {
    position: relative;
    padding-left: 1.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.cc-lips-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
}

/* Legacy grid layout (kept for backwards compat) */
.cc-lips-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.cc-lips-text p {
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.cc-lips-images {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cc-lips-images img {
    width: 100%;
    border-radius: 12px;
    transition: all var(--transition);
    border: 1px solid transparent;
    box-shadow: var(--shadow);
}

/* ------------------------------------------
   12. Treatment Cards
   ------------------------------------------ */
.treatments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.treatment-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 2.5rem;
    border-top: 2px solid var(--gold);
    border-right: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    border-left: 1px solid var(--border-subtle);
    transition: all var(--transition);
    position: relative;
}

.treatment-card:hover {
    transform: translateY(-6px);
    background: var(--bg-card-hover);
    border-top-color: var(--gold-light);
    box-shadow: 0 0 20px rgba(201, 168, 76, 0.08), 0 12px 40px rgba(0, 0, 0, 0.4);
}

.treatment-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.treatment-icon svg {
    width: 48px;
    height: 48px;
    fill: none;
    stroke: var(--gold);
    stroke-width: 1.5;
}

.treatment-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.treatment-card h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.treatment-card p {
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    color: var(--text-secondary);
}

.treatment-price {
    color: var(--gold);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1.2rem;
}

.treatment-link {
    color: var(--gold);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: all var(--transition);
}

.treatment-link:hover {
    color: var(--gold-light);
    gap: 0.7rem;
}

.treatment-link svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    transition: transform var(--transition);
}

.treatment-link:hover svg {
    transform: translateX(3px);
}

/* ------------------------------------------
   13. Price Section
   ------------------------------------------ */
.price-section {
    max-width: 900px;
    margin: 0 auto;
}

.tab-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 0.5rem;
}

.tab-nav::-webkit-scrollbar {
    display: none;
}

.tab-btn {
    padding: 0.6rem 1.5rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: var(--text-secondary);
    background: transparent;
    border: 1px solid var(--border-subtle);
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
    flex-shrink: 0;
    position: relative;
}

.tab-btn:hover {
    color: var(--text-primary);
    border-color: var(--border);
}

.tab-btn.active {
    background: var(--gold);
    color: var(--bg-primary);
    border-color: var(--gold);
    font-weight: 600;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--gold);
    border-radius: 1px;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
}

.price-table th {
    text-align: left;
    padding: 0.8rem;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
}

.price-table th:last-child {
    text-align: right;
}

.price-table tr {
    border-bottom: 1px solid var(--border-subtle);
    transition: background var(--transition);
}

.price-table tr:last-child {
    border-bottom: none;
}

.price-table tr:hover {
    background: rgba(201, 168, 76, 0.03);
}

.price-table td {
    padding: 1rem 0.8rem;
    font-size: 0.92rem;
    vertical-align: middle;
}

.price-table .treatment-name {
    color: var(--text-primary);
    font-weight: 500;
}

.price-table .treatment-time {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.price-table td:last-child {
    color: var(--gold);
    font-weight: 600;
    text-align: right;
    white-space: nowrap;
}

.price-table .treatment-cost {
    color: var(--gold);
    font-weight: 600;
    text-align: right;
    white-space: nowrap;
}

/* Extensions table — 4 columns */
.price-table-extensions {
    width: 100%;
    border-collapse: collapse;
}

.price-table-extensions thead th {
    padding: 0.8rem;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
    text-align: left;
}

.price-table-extensions thead th:not(:first-child) {
    text-align: right;
}

.price-table-extensions tbody tr {
    border-bottom: 1px solid var(--border-subtle);
    transition: background var(--transition);
}

.price-table-extensions tbody tr:last-child {
    border-bottom: none;
}

.price-table-extensions tbody tr:hover {
    background: rgba(201, 168, 76, 0.03);
}

.price-table-extensions td {
    padding: 0.9rem 0.8rem;
    font-size: 0.9rem;
    vertical-align: middle;
}

.price-table-extensions td:first-child {
    color: var(--text-primary);
    font-weight: 500;
}

.price-table-extensions td:not(:first-child) {
    text-align: right;
    color: var(--gold);
    font-weight: 600;
    white-space: nowrap;
}

.price-note {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
}

/* ------------------------------------------
   14. Gallery
   ------------------------------------------ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.gallery-card {
    aspect-ratio: 4 / 5;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.85), transparent);
    display: flex;
    align-items: flex-end;
    padding: 1.2rem;
    opacity: 0;
    transition: opacity var(--transition);
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--gold);
    font-weight: 600;
}

/* ------------------------------------------
   15. Team
   ------------------------------------------ */
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.team-card {
    background: var(--bg-card);
    border-radius: 16px;
    border-top: 3px solid var(--gold);
    border-right: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    border-left: 1px solid var(--border-subtle);
    padding: 2.5rem;
    text-align: center;
    transition: all var(--transition);
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.team-photo {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    border: 3px solid var(--gold);
    padding: 3px;
    background: var(--bg-primary);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.team-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 0.4rem;
}

.team-role {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.team-bio {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ------------------------------------------
   16. Reviews
   ------------------------------------------ */
.reviews-wrapper {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    overflow: hidden;
}

.reviews-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-card {
    flex: 0 0 100%;
    background: var(--bg-card);
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid var(--border);
    position: relative;
    min-height: 0;
}

.review-card::before {
    content: '\201C';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-family: var(--font-heading);
    font-size: 5rem;
    line-height: 1;
    color: var(--gold);
    opacity: 0.15;
    pointer-events: none;
}

.review-stars {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 1rem;
}

.review-stars svg {
    width: 16px;
    height: 16px;
    fill: var(--gold);
}

.stars-5::before {
    content: '\2605\2605\2605\2605\2605';
    color: var(--gold);
    font-size: 1.1rem;
    letter-spacing: 0.15em;
}

.review-text {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.review-author {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.review-source {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.2rem;
}

/* Carousel Controls */
.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.carousel-prev,
.carousel-next {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
    color: var(--text-secondary);
    flex-shrink: 0;
}

.carousel-prev:hover,
.carousel-next:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 168, 76, 0.08);
}

.carousel-prev svg,
.carousel-next svg {
    width: 20px;
    height: 20px;
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--text-muted);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all var(--transition);
}

.carousel-dot.active {
    background: var(--gold);
    width: 24px;
    border-radius: 4px;
}

.reviews-dots {
    display: flex;
    gap: 0.5rem;
}

.review-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--text-muted);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    padding: 0;
}

.review-dot.active {
    background: var(--gold);
    width: 24px;
    border-radius: 4px;
}

/* ------------------------------------------
   17. Contact
   ------------------------------------------ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(201, 168, 76, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
}

.contact-label {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    margin-bottom: 0.3rem;
}

.contact-value {
    color: var(--text-primary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-value a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color var(--transition);
}

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

.contact-details-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

@media (max-width: 600px) {
    .contact-details-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.contact-item-link {
    text-decoration: none;
    transition: opacity var(--transition);
}

.contact-item-link:hover {
    opacity: 0.8;
}

.contact-item-link:hover strong {
    color: var(--gold);
}

.hours-table {
    border-collapse: collapse;
    margin-top: 0.4rem;
}

.hours-table td {
    padding: 0.25rem 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.hours-table td:first-child {
    padding-right: 1.5rem;
    color: var(--text-primary);
    font-weight: 500;
}

.contact-cta {
    margin-top: 1.5rem;
}

.contact-map {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    height: 100%;
    min-height: 350px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 350px;
    border: none;
    filter: invert(0.9) hue-rotate(180deg) brightness(0.8) contrast(1.2) saturate(0.3);
}

/* ------------------------------------------
   18. Footer
   ------------------------------------------ */
.footer {
    background: #080808;
    border-top: 1px solid var(--border);
    padding: 3.5rem 0 2rem;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.02em;
    text-decoration: none;
}

.footer-logo img {
    height: 36px;
    width: auto;
}

/* ------------------------------------------
   Blog / Viden
   ------------------------------------------ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    overflow: hidden;
    transition: all var(--transition);
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    border-color: rgba(201, 168, 76, 0.25);
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.blog-card-image {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-bottom: 1px solid var(--border-subtle);
}

.blog-card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-tag {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gold);
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.15);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    margin-bottom: 0.8rem;
    width: fit-content;
}

.blog-card-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 0.6rem;
    line-height: 1.3;
}

.blog-card-excerpt {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    flex: 1;
}

.blog-card-date {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 1rem;
}

/* Article page */
.article-hero {
    padding: calc(var(--nav-height) + 4rem) 0 3rem;
    background: var(--bg-secondary);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.article-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: 1rem;
}

.article-meta {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 0.8rem;
}

.article-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 2rem;
}

.article-content p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.article-content h2 {
    font-size: 1.6rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.article-content h3 {
    font-size: 1.25rem;
    color: var(--gold);
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.article-content ul {
    margin-bottom: 1.5rem;
    padding-left: 0;
}

.article-content li {
    position: relative;
    padding-left: 1.5rem;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

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

.article-image {
    width: 100%;
    border-radius: 12px;
    margin: 2rem 0;
    border: 1px solid var(--border-subtle);
}

.article-faq {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-subtle);
}

.article-faq h2 {
    margin-top: 0;
}

.faq-item {
    margin-bottom: 1.5rem;
}

.faq-item h3 {
    margin-top: 0;
    font-size: 1.1rem;
}

.faq-item p {
    font-size: 0.95rem;
}

.article-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2.5rem;
    background: rgba(201, 168, 76, 0.04);
    border: 1px solid var(--border);
    border-radius: 16px;
}

.article-cta p {
    font-size: 1rem;
    margin-bottom: 1.2rem;
}

.article-price-ref {
    font-size: 0.88rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 1rem;
}

.related-articles {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-subtle);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (max-width: 968px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }

    .article-content {
        padding: 0 1.2rem;
    }
}

/* ------------------------------------------
   Documents Page
   ------------------------------------------ */
.docs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

.doc-card {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    text-decoration: none;
    transition: all var(--transition);
}

.doc-card:hover {
    border-color: rgba(201, 168, 76, 0.25);
    background: var(--bg-card-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.doc-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 168, 76, 0.08);
    border-radius: 10px;
}

.doc-info {
    flex: 1;
    min-width: 0;
}

.doc-info h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 0.2rem;
}

.doc-meta {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.doc-download {
    flex-shrink: 0;
    color: var(--text-muted);
    transition: color var(--transition);
}

.doc-card:hover .doc-download {
    color: var(--gold);
}

@media (max-width: 600px) {
    .docs-grid {
        grid-template-columns: 1fr;
    }
}

.footer-watermark {
    text-align: center;
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 1.5rem;
    letter-spacing: 0.04em;
    opacity: 0.5;
}

.footer-watermark a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--transition);
}

.footer-watermark a:hover {
    color: var(--gold);
    opacity: 1;
}

.footer-stps {
    font-size: 0.82rem;
    color: var(--text-secondary);
    max-width: 500px;
    line-height: 1.5;
}

.footer-copyright {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

/* ------------------------------------------
   19. Back to Top
   ------------------------------------------ */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition);
    border: none;
    box-shadow: 0 4px 15px rgba(201, 168, 76, 0.25);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--gold-light);
    box-shadow: 0 6px 25px rgba(201, 168, 76, 0.35);
    transform: translateY(-3px);
}

.back-to-top svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.5;
}

/* ------------------------------------------
   20. Lightbox
   ------------------------------------------ */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.95);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    cursor: zoom-out;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.lightbox.active img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
    z-index: 2001;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.lightbox-close svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

/* ------------------------------------------
   21. Animations
   ------------------------------------------ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

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

@keyframes shimmer {
    0%, 100% {
        box-shadow: 0 0 10px rgba(201, 168, 76, 0.15);
    }
    50% {
        box-shadow: 0 0 25px rgba(201, 168, 76, 0.3), 0 0 50px rgba(201, 168, 76, 0.1);
    }
}

@keyframes sectionLineGrow {
    0% {
        width: 0;
    }
    100% {
        width: 60px;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(12px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

/* ------------------------------------------
   22. Responsive — 968px
   ------------------------------------------ */
@media (max-width: 968px) {
    .nav-links {
        display: none;
    }

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

    .hamburger {
        display: flex;
    }

    .lang-toggle {
        margin-right: 0.5rem;
    }

    .hero-ctas {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-ctas .btn-primary,
    .hero-ctas .btn-outline {
        width: 100%;
        max-width: 300px;
    }

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

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-image {
        max-height: 400px;
    }

    .cc-lips-images-row {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .cc-lips-features {
        grid-template-columns: 1fr;
    }

    .cc-lips-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

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

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        aspect-ratio: auto;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .team-grid {
        max-width: 100%;
    }

    .trust-bar-inner {
        flex-wrap: wrap;
        gap: 1.5rem 2.5rem;
        justify-content: center;
    }

    .section {
        padding: 5rem 0;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    /* Premium responsive — 968px */
    .stats-grid {
        flex-wrap: wrap;
        gap: 0;
    }

    .stat-item {
        flex: 0 0 33.33%;
        padding: 1.5rem 1rem;
    }

    .stat-item:nth-child(3)::after {
        display: none;
    }

    /* footer mobile overrides moved to after base rules — see end of file */

    .deco-ring {
        display: none;
    }

    .hero-particles {
        display: none;
    }
}

/* ------------------------------------------
   23. Responsive — 600px
   ------------------------------------------ */
@media (max-width: 600px) {
    .container {
        padding: 0 1.2rem;
    }

    .section {
        padding: 3.5rem 0;
    }

    h1 {
        font-size: clamp(2rem, 8vw, 2.8rem);
    }

    h2 {
        font-size: clamp(1.6rem, 6vw, 2rem);
    }

    .trust-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .trust-badge {
        padding: 1rem;
    }

    .hero {
        min-height: 100svh;
    }

    .hero-subtitle {
        font-size: 0.72rem;
        letter-spacing: 0.2em;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .treatments-grid {
        grid-template-columns: 1fr;
    }

    .treatment-card {
        padding: 2rem;
    }

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

    .gallery-card {
        aspect-ratio: 4 / 5;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-card {
        padding: 2rem;
    }

    .trust-bar-inner {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .trust-item {
        justify-content: center;
    }

    .tab-nav {
        gap: 0.4rem;
        padding: 0 0 0.5rem;
        -webkit-overflow-scrolling: touch;
    }

    .tab-btn {
        padding: 0.5rem 1.1rem;
        font-size: 0.78rem;
    }

    .price-table td {
        padding: 0.8rem 0.4rem;
        font-size: 0.85rem;
    }

    .price-table-extensions td,
    .price-table-extensions th {
        padding: 0.7rem 0.4rem;
        font-size: 0.8rem;
    }

    .review-card {
        padding: 2rem 1.5rem;
    }

    .review-text {
        font-size: 1rem;
    }

    .btn-primary,
    .btn-outline {
        padding: 0.85rem 2rem;
        font-size: 0.85rem;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    /* Premium responsive — 600px */
    .stats-grid {
        flex-wrap: wrap;
    }

    .stat-item {
        flex: 0 0 50%;
        padding: 1.2rem 0.8rem;
    }

    .stat-item:nth-child(odd)::after {
        display: block;
    }

    .stat-item:nth-child(even)::after {
        display: none;
    }

    .stat-item:nth-child(5) {
        flex: 0 0 100%;
    }

    .stat-number {
        font-size: clamp(1.8rem, 6vw, 2.2rem);
    }

    /* Mobile: auto-scroll marquee, smaller cards */
    .reviews-marquee::before,
    .reviews-marquee::after {
        width: 30px;
    }

    .marquee-card {
        width: 280px;
        min-width: 280px;
        padding: 1.4rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .contact-map {
        min-height: 280px;
    }

    .contact-map iframe {
        min-height: 280px;
    }

    .back-to-top {
        bottom: 1.2rem;
        right: 1.2rem;
        width: 40px;
        height: 40px;
    }
}

/* ------------------------------------------
   Reduced Motion
   ------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .reveal,
    .reveal-up,
    .reveal-left,
    .reveal-scale,
    .reveal-stagger .reveal-child {
        opacity: 1;
        transform: none;
    }

    .hero-content .hero-subtitle,
    .hero-content h1,
    .hero-content .hero-tagline,
    .hero-content .hero-ctas {
        opacity: 1;
        transform: none;
    }

    .word-reveal .reveal-word {
        opacity: 1;
        transform: none;
    }

    .marquee-row-1,
    .marquee-row-2 {
        animation: none;
    }
}

/* ------------------------------------------
   24. Visual Dividers
   ------------------------------------------ */
.visual-divider {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.visual-divider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.3) saturate(0.5);
}

.visual-divider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
        to right,
        rgba(10, 10, 10, 0.7) 0%,
        rgba(10, 10, 10, 0.3) 50%,
        rgba(10, 10, 10, 0.7) 100%
    );
}

.visual-divider-text {
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 3vw, 2rem);
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.02em;
    text-align: center;
    padding: 0 2rem;
    opacity: 0.9;
}

@media (max-width: 600px) {
    .visual-divider {
        height: 200px;
    }
}

/* ------------------------------------------
   25. Price Page
   ------------------------------------------ */
.price-page-hero {
    padding: calc(var(--nav-height) + 4rem) 0 3rem;
    background: var(--bg-secondary);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.price-page-hero .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

.price-page-hero .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.55;
    filter: brightness(0.8) saturate(0.4);
}

.price-page-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
}

.price-page-hero .hero-subtitle {
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.price-page-hero .section-subtitle {
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

.price-link-section {
    padding-top: 1rem;
}

/* ============================================
   26. PREMIUM UPGRADE — $10K Level
   ============================================ */

/* ------------------------------------------
   26-pre. Password Gate
   ------------------------------------------ */
.password-gate {
    position: fixed;
    inset: 0;
    z-index: 10001;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    overflow: hidden;
    touch-action: none;
    overscroll-behavior: none;
}

html.gate-locked,
html.gate-locked body {
    overflow: hidden !important;
    height: 100dvh !important;
    max-height: 100dvh !important;
    position: fixed !important;
    width: 100% !important;
    top: 0 !important;
    left: 0 !important;
    touch-action: none !important;
    overscroll-behavior: none !important;
}

html.gate-locked .password-gate ~ * {
    display: none !important;
}

.password-gate.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.password-gate-inner {
    text-align: center;
    padding: 40px;
    max-width: 360px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.password-gate-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.02em;
    margin-bottom: 40px;
}

.password-gate-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 24px;
}

.password-gate-input {
    width: 100%;
    padding: 14px 20px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 4px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    text-align: center;
    letter-spacing: 0.1em;
    outline: none;
    transition: border-color var(--transition);
    margin-bottom: 16px;
}

.password-gate-input:focus {
    border-color: var(--gold);
}

.password-gate-btn {
    width: 100%;
    margin-bottom: 12px;
}

.password-gate-error {
    color: #e74c3c;
    font-size: 0.85rem;
    min-height: 20px;
}

/* ------------------------------------------
   26a. Global Noise Overlay
   ------------------------------------------ */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.03;
    mix-blend-mode: soft-light;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

/* ------------------------------------------
   26b. Scroll Progress Bar
   ------------------------------------------ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    width: 0%;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
    z-index: 1001;
    transition: width 0.1s linear;
    box-shadow: 0 0 8px rgba(201, 168, 76, 0.4);
}

/* ------------------------------------------
   26c. Hero Premium Upgrade
   ------------------------------------------ */
.hero-gradient-mesh {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse 60% 50% at 20% 40%, rgba(201, 168, 76, 0.06), transparent),
        radial-gradient(ellipse 50% 60% at 80% 60%, rgba(212, 192, 120, 0.04), transparent),
        radial-gradient(ellipse 70% 40% at 50% 20%, rgba(168, 137, 61, 0.05), transparent);
    background-size: 200% 200%;
    animation: meshMove 25s ease-in-out infinite alternate;
}

@keyframes meshMove {
    0%   { background-position: 0% 0%, 100% 100%, 50% 0%; }
    33%  { background-position: 100% 50%, 0% 50%, 80% 100%; }
    66%  { background-position: 50% 100%, 50% 0%, 20% 50%; }
    100% { background-position: 0% 50%, 100% 0%, 60% 80%; }
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

/* Hero staggered entrance */
.hero-content .hero-subtitle,
.hero-content h1,
.hero-content .hero-tagline,
.hero-content .hero-ctas {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

body.hero-loaded .hero-content .hero-subtitle {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

body.hero-loaded .hero-content h1 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

body.hero-loaded .hero-content .hero-tagline {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.9s;
}

body.hero-loaded .hero-content .hero-ctas {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1.2s;
}

/* Gold gradient text on h1 */
.hero h1 {
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark), var(--gold-light));
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 8s ease-in-out infinite;
}

@keyframes gradientShift {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ------------------------------------------
   26d. Enhanced Reveal Animations
   ------------------------------------------ */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Staggered children — parent class */
.reveal-stagger .reveal-child {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-stagger .reveal-child.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Word reveal for headings */
.word-reveal {
    overflow: hidden;
    display: inline-block;
}

.word-reveal .reveal-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* ------------------------------------------
   26e. Stats / Social Proof Section
   ------------------------------------------ */
.stats-section {
    padding: 5rem 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.04), transparent 60%);
    pointer-events: none;
}

.stats-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    flex: 1;
    text-align: center;
    padding: 2rem 1.5rem;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(201, 168, 76, 0.2), transparent);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 600;
    color: var(--gold);
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
}

/* ------------------------------------------
   26f. Reviews Marquee (Dual-Row)
   ------------------------------------------ */
.reviews-stats {
    text-align: center;
    margin-bottom: 3rem;
}

.reviews-stats-rating {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.reviews-stats-stars {
    color: var(--gold);
    font-size: 1.4rem;
    letter-spacing: 0.2em;
    margin-bottom: 0.5rem;
}

.reviews-stats-source {
    font-size: 0.82rem;
    color: var(--text-muted);
    letter-spacing: 0.04em;
}

.reviews-marquee {
    overflow: hidden;
    position: relative;
    padding: 1rem 0;
}

.reviews-marquee::before,
.reviews-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.reviews-marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-secondary), transparent);
}

.reviews-marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-secondary), transparent);
}

.marquee-row {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    padding: 0.5rem 0;
}

.marquee-row-1 {
    animation: marqueeLeft 80s linear infinite;
}

.marquee-row-2 {
    animation: marqueeRight 90s linear infinite;
    margin-top: 1.5rem;
}

/* marquee always runs, never pauses */

@keyframes marqueeLeft {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes marqueeRight {
    0%   { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* Marquee review cards */
.marquee-card {
    flex-shrink: 0;
    width: 340px;
    background: rgba(22, 22, 22, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 168, 76, 0.08);
    border-radius: 16px;
    padding: 1.8rem;
    transition: border-color 0.3s ease, transform 0.3s ease;
    position: relative;
}

.marquee-card:hover {
    border-color: rgba(201, 168, 76, 0.25);
    transform: translateY(-4px);
}

.marquee-card::before {
    content: '\201C';
    position: absolute;
    top: 0.6rem;
    left: 1.2rem;
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 1;
    color: var(--gold);
    opacity: 0.1;
    pointer-events: none;
}

.marquee-card .review-stars {
    margin-bottom: 0.8rem;
}

.marquee-card .review-text {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.marquee-card .review-author {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.88rem;
}

.marquee-card .review-source {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: block;
    margin-top: 0.15rem;
}

/* ------------------------------------------
   26g. Treatment Card Premium
   ------------------------------------------ */
.treatment-card {
    background: rgba(22, 22, 22, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(201, 168, 76, 0.08);
    border-top: none;
    position: relative;
    overflow: hidden;
}

.treatment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
    transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.treatment-card:hover::before {
    width: 100%;
}

.treatment-card:hover .treatment-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 25px rgba(201, 168, 76, 0.15);
}

.treatment-icon {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border-radius: 12px;
}

.treatment-price {
    display: inline-block;
    padding: 0.3rem 0.9rem;
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 20px;
    font-size: 0.9rem;
}

.treatment-card .treatment-price + .treatment-link {
    display: block;
    margin-top: 1rem;
}

/* ------------------------------------------
   26h. Gallery Enhancements
   ------------------------------------------ */
.gallery-card:hover .gallery-overlay span {
    transform: translateY(0);
}

.gallery-overlay span {
    transform: translateY(8px);
    transition: transform 0.3s ease;
}

.gallery-card:hover img {
    filter: brightness(1.1) contrast(1.05);
}

.gallery-card:hover {
    box-shadow: inset 0 0 0 2px rgba(201, 168, 76, 0.3);
}

/* Lightbox navigation */
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
    z-index: 2002;
}

.lightbox-nav:hover {
    background: rgba(201, 168, 76, 0.15);
    border-color: var(--gold);
}

.lightbox-prev { left: 2rem; }
.lightbox-next { right: 2rem; }

.lightbox-counter {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    z-index: 2001;
}

/* ------------------------------------------
   26i. Diagonal Section Transitions
   ------------------------------------------ */
.section-alt::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 30px;
    background: var(--bg-primary);
    clip-path: polygon(0 0, 100% 0, 100% 0%, 0 100%);
    z-index: 1;
}

/* ------------------------------------------
   26j. Floating Decorative Elements
   ------------------------------------------ */
.deco-ring {
    position: absolute;
    pointer-events: none;
    opacity: 0.04;
    animation: float 8s ease-in-out infinite;
}

.deco-ring svg {
    stroke: var(--gold);
    fill: none;
    stroke-width: 1;
}

.deco-ring-1 {
    top: 15%;
    right: 5%;
    width: 120px;
    height: 120px;
    animation-delay: 0s;
}

.deco-ring-2 {
    bottom: 20%;
    left: 3%;
    width: 80px;
    height: 80px;
    animation-delay: -3s;
}

/* ------------------------------------------
   26k. Enhanced Footer
   ------------------------------------------ */
.footer-cols-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--border-subtle);
    margin-bottom: 2rem;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.6;
    margin-top: 0.8rem;
    max-width: 300px;
}

.footer-col h4 {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gold);
    margin-bottom: 1.2rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.88rem;
    transition: color var(--transition), padding-left var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    color: var(--text-secondary);
}

.footer-social a:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 168, 76, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(201, 168, 76, 0.15);
}

/* ------------------------------------------
   26l. Gold Glow Accents
   ------------------------------------------ */
.section.glow-accent {
    background-image: radial-gradient(ellipse at 20% 50%, rgba(201, 168, 76, 0.03), transparent 50%);
}

/* ------------------------------------------
   26m. Page Load Animation
   ------------------------------------------ */
body {
    opacity: 0;
    transition: opacity 0.6s ease;
}

body.loaded {
    opacity: 1;
}

/* Loading screen */
.page-loader {
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.page-loader-logo {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    opacity: 0;
    animation: loaderFade 0.8s ease forwards;
}

@keyframes loaderFade {
    0%   { opacity: 0; transform: scale(0.9); }
    50%  { opacity: 1; transform: scale(1); }
    100% { opacity: 1; transform: scale(1); }
}

/* ------------------------------------------
   Footer Mobile Overrides (MUST be after base rules)
   ------------------------------------------ */
@media (max-width: 968px) {
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
        text-align: center;
    }

    .footer-brand p {
        max-width: 100%;
        margin: 0.8rem auto 0;
    }

    .footer-cols-row {
        grid-template-columns: 1fr 1fr;
    }

    .footer-col {
        text-align: center;
    }

    .footer-links {
        align-items: center;
    }
}

@media (max-width: 968px) {
    .nav-logo {
        font-size: 1.35rem;
        margin-right: auto;
    }
}
