/* ==========================================================================
   Кабинет Велчев — Ultra-Premium Private Surgical Practice Design System
   Designed by Senior .NET & UI/UX Specialist
   ========================================================================== */

:root {
    /* Brand Palette - Deep Navy Slate, Pure Whites, Medical Emerald & Bronze Gold */
    --void: #f8fafc;
    --card-bg: #ffffff;
    --card-bg-subtle: #f1f5f9;
    --drape: #f8fafc;
    --field: #e2e8f0;
    
    --linen: #0f172a;       /* Deep slate/graphite */
    --linen-light: #1e293b; /* Secondary dark */
    --steel: #475569;       /* Muted slate text */
    --mute: #64748b;        /* Subtle meta text */
    --faint: #94a3b8;       /* Placeholders / very light */
    
    --teal: #0d9488;        /* Medical surgical emerald/teal */
    --teal-dark: #0f766e;   /* Hover teal */
    --teal-light: #ccfbf1;  /* Soft teal tint */
    --teal-glow: rgba(13, 148, 136, 0.25);
    
    --gold: #b45309;        /* Warm bronze/gold accent */
    --gold-light: #fef3c7;
    
    --iodine: #0d9488;
    --iodine-ink: #0f766e;
    --paper: #ffffff;
    --case: #020617;
    
    --rule: rgba(15, 23, 42, 0.08);
    --rule-accent: rgba(13, 148, 136, 0.2);
    --rule-dark: rgba(255, 255, 255, 0.12);
    
    /* Typography */
    --ui: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --display: "Playfair Display", Georgia, serif;
    --body: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    /* Spacing & Dimensions */
    --gutter: clamp(1.25rem, 4.5vw, 4rem);
    --block: clamp(3.5rem, 7vw, 6.5rem);
    --rail-h: 4.5rem;
    --max-w: 1240px;
    
    /* Elevation & Curves */
    --radius-sm: 8px;
    --radius: 14px;
    --radius-lg: 22px;
    --radius-pill: 9999px;
    
    --shadow-sm: 0 2px 8px -2px rgba(15, 23, 42, 0.06), 0 1px 4px -1px rgba(15, 23, 42, 0.04);
    --shadow: 0 12px 30px -10px rgba(15, 23, 42, 0.08), 0 4px 12px -4px rgba(15, 23, 42, 0.04);
    --shadow-lg: 0 25px 50px -12px rgba(15, 23, 42, 0.14), 0 8px 24px -8px rgba(15, 23, 42, 0.06);
    --shadow-glow: 0 16px 36px -10px rgba(13, 148, 136, 0.35);
    
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    color-scheme: light;
    scrollbar-color: var(--faint) var(--void);
    scrollbar-width: thin;
    scroll-padding-top: var(--rail-h);
}

html, body {
    margin: 0;
    background: var(--void);
    color: var(--linen);
    font-family: var(--body);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100%;
}

::selection {
    background: var(--teal-light);
    color: var(--teal-dark);
}

:focus-visible {
    outline: 2px solid var(--teal);
    outline-offset: 3px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button, input, textarea, select {
    font-family: inherit;
}

/* ==========================================================================
   Base Layout Container
   ========================================================================== */

.site {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--void);
    position: relative;
    overflow-x: hidden;
}

main {
    flex: 1;
}

/* ==========================================================================
   Header & Navigation (Glassmorphism Rail)
   ========================================================================== */

.rail {
    position: sticky;
    top: 0;
    z-index: 50;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1.5rem;
    align-items: center;
    min-height: var(--rail-h);
    padding: 0 var(--gutter);
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid var(--rule);
    transition: all 300ms var(--ease);
}

.mark {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--ui);
    font-weight: 700;
    font-size: 1.12rem;
    letter-spacing: -0.01em;
    color: var(--linen);
    text-decoration: none;
    transition: opacity 200ms var(--ease);
}

.mark:hover {
    opacity: 0.9;
}

.mark-logo-wrap {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--linen) 0%, #1e293b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px -2px rgba(15, 23, 42, 0.25);
    flex-shrink: 0;
}

.mark-logo-wrap img, .mark-logo {
    width: 1.3rem;
    height: 1.3rem;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.mark-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.mark-name {
    font-weight: 700;
    color: var(--linen);
    font-size: 1.05rem;
}

.mark-role {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--teal);
}

.nav {
    display: flex;
    gap: 2.2rem;
    justify-content: center;
    font-family: var(--ui);
    font-size: 0.94rem;
    font-weight: 500;
}

.nav a {
    position: relative;
    padding: 0.6rem 0.2rem;
    color: var(--steel);
    transition: color 200ms var(--ease);
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 2px;
    background: var(--teal);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 250ms var(--ease);
}

.nav a.active, .nav a:hover {
    color: var(--linen);
}

.nav a.active {
    font-weight: 600;
}

.nav a.active::after, .nav a:hover::after {
    transform: scaleX(1);
}

.rail-end {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.rail-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-family: var(--ui);
    font-size: 0.88rem;
    font-weight: 600;
    color: #ffffff;
    background: var(--teal);
    padding: 0.6rem 1.25rem;
    border-radius: var(--radius-pill);
    box-shadow: 0 4px 14px -3px var(--teal-glow);
    transition: all 220ms var(--ease);
}

.rail-phone svg {
    width: 1rem;
    height: 1rem;
    fill: currentColor;
}

.rail-phone:hover {
    background: var(--teal-dark);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px -4px var(--teal-glow);
}

.lang {
    display: flex;
    background: var(--field);
    padding: 3px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--rule);
}

.lang button {
    font-family: var(--ui);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--steel);
    background: transparent;
    border: 0;
    padding: 0.35rem 0.65rem;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: all 200ms var(--ease);
}

.lang button:hover {
    color: var(--linen);
}

.lang button[aria-pressed="true"] {
    color: var(--linen);
    background: #ffffff;
    box-shadow: var(--shadow-sm);
}

/* ==========================================================================
   Hero Section — Prestige Medical Presentation
   ========================================================================== */

.hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    align-items: center;
    gap: clamp(2.5rem, 5vw, 5.5rem);
    padding: clamp(3rem, 6vw, 6rem) var(--gutter);
    max-width: var(--max-w);
    margin: 0 auto;
    overflow: visible;
}

.hero-bg-glow {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.12) 0%, rgba(248, 250, 252, 0) 70%);
    pointer-events: none;
    z-index: 0;
}

.hero-copy {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-badge-wrap {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.45rem 0.95rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--rule);
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.5rem;
}

.hero-badge-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--teal);
    position: relative;
}

.hero-badge-pulse::after {
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: var(--teal);
    opacity: 0.4;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.hero-badge-text {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--steel);
}

.hero-dr-name {
    display: block;
    font-family: var(--display);
    font-size: clamp(2.6rem, 5.2vw, 4.4rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--linen);
    margin-bottom: 0.4rem;
}

.hero-title-role {
    display: block;
    font-family: var(--ui);
    font-size: clamp(1.25rem, 2.2vw, 1.65rem);
    font-weight: 600;
    color: var(--teal-dark);
    margin-bottom: 1.4rem;
    letter-spacing: -0.01em;
}

.lede {
    font-size: clamp(1.05rem, 1.4vw, 1.18rem);
    line-height: 1.7;
    color: var(--steel);
    margin: 0 0 2rem;
    max-width: 52ch;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    flex-wrap: wrap;
    margin-bottom: 2.2rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--ui);
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
    padding: 1rem 2rem;
    border-radius: var(--radius);
    box-shadow: 0 8px 24px -6px var(--teal-glow);
    transition: all 250ms var(--ease);
    border: 0;
    cursor: pointer;
    text-decoration: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px -6px var(--teal-glow);
    filter: brightness(1.05);
    color: #ffffff;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--ui);
    font-size: 1rem;
    font-weight: 600;
    color: var(--linen);
    background: #ffffff;
    padding: 1rem 1.8rem;
    border-radius: var(--radius);
    border: 1px solid var(--rule);
    box-shadow: var(--shadow-sm);
    transition: all 250ms var(--ease);
    text-decoration: none;
}

.btn-secondary:hover {
    border-color: var(--linen);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.hero-meta {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

/* Status Component */
.status {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin: 0;
    font-family: var(--ui);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: var(--steel);
}

.status::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--faint);
    flex-shrink: 0;
}

.status[data-open="true"] {
    color: var(--teal-dark);
    font-weight: 600;
}

.status[data-open="true"]::before {
    background: var(--teal);
    box-shadow: 0 0 0 4px var(--teal-light);
}

.notice {
    font-size: 0.82rem;
    color: var(--mute);
    margin: 0;
}

/* Hero Portrait Card */
.hero-still {
    position: relative;
    margin: 0;
    z-index: 2;
}

.hero-photo-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #ffffff;
    padding: 8px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.hero-photo {
    width: 100%;
    aspect-ratio: 3.8 / 5;
    object-fit: cover;
    object-position: 60% 25%;
    border-radius: calc(var(--radius-lg) - 6px);
    display: block;
    transition: transform 700ms var(--ease);
}

.hero-still:hover .hero-photo {
    transform: scale(1.02);
}

.hero-portrait-badge {
    position: absolute;
    bottom: 1.8rem;
    left: 1.8rem;
    right: 1.8rem;
    padding: 1.25rem 1.4rem;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    box-shadow: 0 15px 35px -8px rgba(0, 0, 0, 0.35);
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.hp-title {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #ffffff;
}

.hp-desc {
    font-size: 0.78rem;
    color: #cbd5e1;
    line-height: 1.4;
}

/* ==========================================================================
   Trust Stats Strip (4 Pillars of Authority)
   ========================================================================== */

.trust-stats {
    max-width: var(--max-w);
    margin: 0 auto clamp(2rem, 4vw, 3.5rem);
    padding: 0 var(--gutter);
}

.trust-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #ffffff;
    border: 1px solid var(--rule);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.stat-item {
    padding: clamp(1.4rem, 2.5vw, 2.2rem) 1.6rem;
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--rule);
    transition: background-color 200ms var(--ease);
}

.stat-item:last-child {
    border-right: 0;
}

.stat-item:hover {
    background: rgba(248, 250, 252, 0.7);
}

.stat-num {
    font-family: var(--display);
    font-size: clamp(2rem, 3.2vw, 2.8rem);
    font-weight: 700;
    color: var(--teal-dark);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--linen);
    margin-bottom: 0.2rem;
}

.stat-sub {
    font-size: 0.78rem;
    color: var(--steel);
    line-height: 1.4;
}

/* ==========================================================================
   Interactive Info Strip (Phone, Location, Hours)
   ========================================================================== */

.strip-container {
    max-width: var(--max-w);
    margin: 0 auto 3rem;
    padding: 0 var(--gutter);
}

.strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.strip-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.8rem 1.8rem;
    background: #ffffff;
    border: 1px solid var(--rule);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    color: inherit;
    transition: all 250ms var(--ease);
}

.strip-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: rgba(13, 148, 136, 0.3);
}

.strip-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.2rem;
}

.strip-icon {
    width: 2.6rem;
    height: 2.6rem;
    border-radius: var(--radius-sm);
    background: var(--teal-light);
    color: var(--teal-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.strip-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    fill: currentColor;
}

.strip-tag {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--mute);
}

.strip-val {
    font-family: var(--ui);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--linen);
    margin-bottom: 0.35rem;
}

.strip-card:hover .strip-val {
    color: var(--teal-dark);
}

.strip-hint {
    font-size: 0.84rem;
    color: var(--steel);
    margin: 0;
}

/* ==========================================================================
   Section Headers (Shared)
   ========================================================================== */

.section-head {
    max-width: 680px;
    margin: 0 auto 3rem;
    text-align: center;
}

.section-tag {
    display: inline-block;
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--teal);
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: var(--display);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 700;
    color: var(--linen);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0 0 1rem;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--steel);
    line-height: 1.65;
    margin: 0;
}

/* ==========================================================================
   Pillars of Care / Philosophy Section
   ========================================================================== */

.section-pillars {
    padding: var(--block) var(--gutter);
    background: linear-gradient(180deg, var(--void) 0%, #f1f5f9 100%);
}

.pillars-wrapper {
    max-width: var(--max-w);
    margin: 0 auto;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.pillar-card {
    background: #ffffff;
    border-radius: var(--radius);
    padding: 2.2rem 1.8rem;
    border: 1px solid var(--rule);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    transition: all 300ms var(--ease);
}

.pillar-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(13, 148, 136, 0.3);
}

.pillar-icon-box {
    width: 3.2rem;
    height: 3.2rem;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 6px 16px -3px var(--teal-glow);
}

.pillar-icon-box svg {
    width: 1.5rem;
    height: 1.5rem;
    fill: currentColor;
}

.pillar-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--linen);
    margin: 0 0 0.75rem;
    letter-spacing: -0.01em;
}

.pillar-text {
    font-size: 0.92rem;
    color: var(--steel);
    line-height: 1.6;
    margin: 0;
}

/* ==========================================================================
   Clinical Specialties / Procedures Section
   ========================================================================== */

.section-specialties {
    padding: var(--block) var(--gutter);
    max-width: var(--max-w);
    margin: 0 auto;
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.specialty-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--rule);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    transition: all 300ms var(--ease);
}

.specialty-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.specialty-media {
    position: relative;
    height: 13rem;
    overflow: hidden;
    background: #cbd5e1;
}

.specialty-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 600ms var(--ease);
}

.specialty-card:hover .specialty-media img {
    transform: scale(1.05);
}

.specialty-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.35rem 0.85rem;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-pill);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.specialty-body {
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.specialty-title {
    font-size: 1.22rem;
    font-weight: 700;
    color: var(--linen);
    margin: 0 0 0.8rem;
    letter-spacing: -0.01em;
}

.specialty-desc {
    font-size: 0.92rem;
    color: var(--steel);
    line-height: 1.6;
    margin: 0 0 1.2rem;
    flex: 1;
}

.specialty-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    border-top: 1px solid var(--rule);
    padding-top: 1.1rem;
}

.specialty-list li {
    font-size: 0.85rem;
    color: var(--linen-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.specialty-list li::before {
    content: "✓";
    color: var(--teal);
    font-weight: 800;
    font-size: 0.85rem;
}

/* ==========================================================================
   Practice Gallery Showcase
   ========================================================================== */

.section-gallery-home {
    padding: var(--block) var(--gutter);
    background: #ffffff;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
}

.gallery-home-wrapper {
    max-width: var(--max-w);
    margin: 0 auto;
}

.preview {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 0.9fr;
    gap: 1.25rem;
    margin-bottom: 2.2rem;
}

.preview a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.preview figure {
    margin: 0;
    position: relative;
    overflow: hidden;
    min-height: 20rem;
    background: #e2e8f0;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: all 300ms var(--ease);
}

.preview a:hover figure {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 20rem;
    transition: transform 700ms var(--ease);
}

.preview a:hover img {
    transform: scale(1.04);
}

.preview-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(15, 23, 42, 0.75) 100%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.preview figcaption {
    font-family: var(--ui);
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.gallery-cta-row {
    display: flex;
    justify-content: center;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--ui);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--linen);
    padding: 0.85rem 1.8rem;
    border: 1.5px solid var(--rule);
    border-radius: var(--radius-pill);
    background: transparent;
    transition: all 220ms var(--ease);
    text-decoration: none;
}

.btn-outline:hover {
    border-color: var(--teal);
    color: var(--teal-dark);
    transform: translateY(-2px);
    background: #ffffff;
    box-shadow: var(--shadow-sm);
}

/* ==========================================================================
   Map & Arrival Block
   ========================================================================== */

.section-map {
    padding: var(--block) var(--gutter);
    max-width: var(--max-w);
    margin: 0 auto;
}

.map-frame {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--rule);
    box-shadow: var(--shadow-lg);
}

.map-copy {
    padding: clamp(2rem, 4vw, 3.2rem);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
    background: #ffffff;
}

.map-address-box h3 {
    font-family: var(--display);
    font-size: 1.6rem;
    color: var(--linen);
    margin: 0 0 0.6rem;
}

.map-address-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--teal-dark);
    margin: 0 0 1.2rem;
}

.map-steps {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin: 0 0 1.8rem;
}

.map-step {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.92rem;
    color: var(--steel);
    line-height: 1.5;
}

.map-step-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--teal);
    margin-top: 0.55rem;
    flex-shrink: 0;
}

.map-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    min-height: 24rem;
    border: 0;
    background: #f1f5f9;
}

/* ==========================================================================
   Patient FAQ Section
   ========================================================================== */

.section-faq {
    padding: var(--block) var(--gutter);
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.faq-wrapper {
    max-width: 820px;
    margin: 0 auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-card {
    background: #ffffff;
    border-radius: var(--radius);
    padding: 1.6rem 1.8rem;
    border: 1px solid var(--rule);
    box-shadow: var(--shadow-sm);
    transition: all 200ms var(--ease);
}

.faq-card:hover {
    border-color: rgba(13, 148, 136, 0.3);
    box-shadow: var(--shadow);
}

.faq-question {
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--linen);
    margin: 0 0 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.faq-question::before {
    content: "Q.";
    color: var(--teal);
    font-weight: 800;
}

.faq-answer {
    font-size: 0.95rem;
    color: var(--steel);
    line-height: 1.65;
    margin: 0;
}

/* ==========================================================================
   Final Conversion CTA Banner
   ========================================================================== */

.section-final-cta {
    padding: 0 var(--gutter) var(--block);
    max-width: var(--max-w);
    margin: 0 auto;
}

.cta-banner {
    position: relative;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: clamp(3rem, 5vw, 4.5rem) clamp(2rem, 5vw, 4rem);
    color: #ffffff;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 2.5rem;
    align-items: center;
}

.cta-banner::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.3) 0%, transparent 70%);
    pointer-events: none;
}

.cta-left {
    position: relative;
    z-index: 2;
}

.cta-tag {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--teal-light);
    margin-bottom: 0.85rem;
}

.cta-title {
    font-family: var(--display);
    font-size: clamp(2rem, 3.2vw, 2.7rem);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 1rem;
    letter-spacing: -0.01em;
}

.cta-desc {
    font-size: 1.05rem;
    color: #cbd5e1;
    line-height: 1.6;
    margin: 0;
    max-width: 48ch;
}

.cta-right {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.cta-phone-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--ui);
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    background: var(--teal);
    padding: 1.1rem 2rem;
    border-radius: var(--radius);
    box-shadow: 0 10px 25px -5px var(--teal-glow);
    transition: all 250ms var(--ease);
    width: 100%;
    justify-content: center;
    text-decoration: none;
}

.cta-phone-btn:hover {
    background: var(--teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px var(--teal-glow);
    color: #ffffff;
}

.cta-phone-btn svg {
    width: 1.25rem;
    height: 1.25rem;
    fill: currentColor;
}

.cta-secondary-link {
    color: #cbd5e1;
    font-size: 0.9rem;
    text-align: center;
    width: 100%;
    transition: color 200ms var(--ease);
    text-decoration: none;
}

.cta-secondary-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* ==========================================================================
   Contact Page Styling
   ========================================================================== */

.contact-page {
    padding: var(--block) var(--gutter);
    max-width: var(--max-w);
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3.5rem;
}

.contact-card {
    background: #ffffff;
    border: 1px solid var(--rule);
    border-radius: var(--radius-lg);
    padding: clamp(2rem, 3.5vw, 3rem);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-card-title {
    font-family: var(--display);
    font-size: 1.75rem;
    color: var(--linen);
    margin: 0 0 1.2rem;
}

.contact-big-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.8rem;
}

.contact-link-row {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    font-weight: 700;
    color: var(--linen);
    transition: color 200ms var(--ease);
    text-decoration: none;
}

.contact-link-row:hover {
    color: var(--teal-dark);
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.95rem;
}

.hours-table th {
    text-align: left;
    font-weight: 500;
    color: var(--steel);
    padding: 0.45rem 1rem 0.45rem 0;
    border-bottom: 1px solid var(--rule);
}

.hours-table td {
    text-align: right;
    font-weight: 600;
    color: var(--linen);
    padding: 0.45rem 0;
    border-bottom: 1px solid var(--rule);
}

.hours-table tr.closed td {
    color: var(--faint);
}

/* Contact Form */
.form-card {
    background: #ffffff;
    border: 1px solid var(--rule);
    border-radius: var(--radius-lg);
    padding: clamp(2rem, 3.5vw, 3rem);
    box-shadow: var(--shadow);
    max-width: 780px;
    margin: 0 auto 3.5rem;
}

.form-fields {
    display: grid;
    gap: 1.25rem;
    margin: 1.8rem 0 2rem;
}

.form-label {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-label span {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--steel);
}

.form-label input, .form-label textarea {
    font-size: 0.95rem;
    color: var(--linen);
    background: #f8fafc;
    border: 1.5px solid var(--rule);
    border-radius: var(--radius-sm);
    padding: 0.85rem 1.1rem;
    transition: all 200ms var(--ease);
}

.form-label input:focus, .form-label textarea:focus {
    background: #ffffff;
    border-color: var(--teal);
    outline: none;
    box-shadow: 0 0 0 3px var(--teal-light);
}

/* ==========================================================================
   Gallery Page Styling
   ========================================================================== */

.gallery-page {
    padding: var(--block) var(--gutter);
    max-width: var(--max-w);
    margin: 0 auto;
}

.filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: center;
    margin: 0 0 3rem;
}

.filters button {
    font-family: var(--ui);
    font-size: 0.9rem;
    font-weight: 600;
    background: #ffffff;
    color: var(--steel);
    border: 1px solid var(--rule);
    border-radius: var(--radius-pill);
    padding: 0.65rem 1.3rem;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: all 200ms var(--ease);
}

.filters button:hover {
    border-color: var(--teal);
    color: var(--teal-dark);
}

.filters button i {
    font-style: normal;
    opacity: 0.6;
    margin-left: 0.4rem;
    font-size: 0.8rem;
}

.filters button[aria-selected="true"] {
    color: #ffffff;
    background: var(--linen);
    border-color: var(--linen);
    box-shadow: 0 4px 12px -2px rgba(15, 23, 42, 0.25);
}

.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.cell {
    background: #ffffff;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--rule);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    padding: 0;
    text-align: left;
    transition: all 300ms var(--ease);
    display: flex;
    flex-direction: column;
}

.cell:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(13, 148, 136, 0.3);
}

.cell img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    transition: transform 600ms var(--ease);
}

.cell:hover img {
    transform: scale(1.03);
}

.cell .meta {
    padding: 1.25rem 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    background: #ffffff;
}

.cell .meta strong {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--linen);
}

.cell .meta span {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--teal);
}

/* Lightbox Modal */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.88);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    z-index: 100;
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    padding: clamp(2rem, 5vw, 4rem) var(--gutter);
    gap: 2.5rem;
    align-items: center;
    outline: none;
    animation: fadeIn 250ms var(--ease);
}

.lightbox img {
    width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--radius);
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.5);
}

.lightbox .lb-copy {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
}

.lightbox .lb-copy h2 {
    font-family: var(--display);
    font-size: 2rem;
    margin: 0 0 1rem;
    color: var(--linen);
}

.lightbox .counter {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--teal);
    margin: 0 0 0.75rem;
}

.lightbox .lb-nav {
    display: flex;
    gap: 0.75rem;
    margin-top: 2rem;
}

.lightbox .lb-nav button, .lightbox button.close {
    background: var(--void);
    color: var(--linen);
    border: 1px solid var(--rule);
    font-family: var(--ui);
    font-size: 0.82rem;
    font-weight: 600;
    border-radius: var(--radius-pill);
    padding: 0.6rem 1.2rem;
    cursor: pointer;
    transition: all 200ms var(--ease);
}

.lightbox .lb-nav button:hover, .lightbox button.close:hover {
    background: var(--linen);
    color: #ffffff;
}

.lightbox button.close {
    position: absolute;
    top: 1.5rem;
    right: var(--gutter);
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-foot {
    background: #ffffff;
    border-top: 1px solid var(--rule);
    padding: 4rem var(--gutter) 2.5rem;
    margin-top: auto;
}

.foot-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.foot-col h4 {
    font-family: var(--display);
    font-size: 1.3rem;
    color: var(--linen);
    margin: 0 0 1rem;
}

.foot-col p {
    font-size: 0.92rem;
    color: var(--steel);
    line-height: 1.6;
    margin: 0 0 0.8rem;
}

.foot-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.foot-links a {
    font-size: 0.92rem;
    color: var(--steel);
    transition: color 200ms var(--ease);
    text-decoration: none;
}

.foot-links a:hover {
    color: var(--teal-dark);
}

.foot-bottom {
    max-width: var(--max-w);
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid var(--rule);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    color: var(--mute);
    flex-wrap: wrap;
    gap: 1rem;
}

.admin-link {
    color: var(--faint);
    text-decoration: none;
    transition: color 200ms;
}

.admin-link:hover {
    color: var(--steel);
}

/* ==========================================================================
   Mobile Call Dock
   ========================================================================== */

.call-dock {
    display: none;
}

/* ==========================================================================
   Boot Loader & Errors
   ========================================================================== */

.boot {
    min-height: 100vh;
    display: grid;
    place-content: center;
    justify-items: center;
    text-align: center;
    background: var(--void);
    color: var(--linen);
    gap: 0.6rem;
}

.boot-spin {
    position: relative;
    width: 4.5rem;
    height: 4.5rem;
    display: grid;
    place-items: center;
    margin-bottom: 0.8rem;
}

.boot-spin img {
    width: 2.8rem;
    height: 2.8rem;
    object-fit: contain;
}

.boot-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 3px solid rgba(13, 148, 136, 0.15);
    border-top-color: var(--teal);
    animation: spin 900ms linear infinite;
}

.boot-name {
    font-family: var(--display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--linen);
    margin: 0;
}

.boot-role {
    font-family: var(--ui);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.76rem;
    font-weight: 600;
    color: var(--teal);
    margin: 0;
}

#blazor-error-ui {
    background: #b91c1c;
    color: #ffffff;
    bottom: 0;
    left: 0;
    display: none;
    padding: 0.8rem 1.4rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
    font-family: var(--ui);
    font-size: 0.9rem;
}

#blazor-error-ui .dismiss {
    cursor: pointer;
    float: right;
    font-weight: bold;
}

/* ==========================================================================
   Admin Interface (Clean & Professional)
   ========================================================================== */

.admin-site { min-height: 100vh; background: var(--void); }

.gate {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: var(--gutter);
}

.gate-card {
    width: min(100%, 25rem);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    background: #ffffff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--rule);
    box-shadow: var(--shadow-lg);
}

.gate-card h1 {
    font-family: var(--display);
    font-size: 2rem;
    margin: 0;
    color: var(--linen);
    text-align: center;
}

.admin {
    display: grid;
    grid-template-columns: 16rem 1fr;
    min-height: 100vh;
}

.admin-rail {
    position: sticky;
    top: 0;
    padding: 1.8rem 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    min-height: 100vh;
    background: #ffffff;
    border-right: 1px solid var(--rule);
}

.admin-rail nav {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.admin-rail nav button {
    font-family: var(--ui);
    font-size: 0.9rem;
    font-weight: 600;
    text-align: left;
    color: var(--steel);
    background: transparent;
    border: 0;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 180ms var(--ease);
}

.admin-rail nav button:hover {
    background: var(--void);
    color: var(--linen);
}

.admin-rail nav button[aria-pressed="true"] {
    color: #ffffff;
    background: var(--linen);
}

.rail-foot {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.admin-main {
    display: flex;
    flex-direction: column;
    background: var(--void);
    min-width: 0;
}

.admin-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.4rem 2.2rem;
    background: #ffffff;
    border-bottom: 1px solid var(--rule);
    position: sticky;
    top: 0;
    z-index: 10;
}

.admin-head h1 {
    font-family: var(--display);
    font-size: 1.8rem;
    margin: 0;
    color: var(--linen);
}

.state {
    font-size: 0.8rem;
    color: var(--mute);
    margin-top: 0.2rem;
}

.state.dirty { color: var(--gold); font-weight: 600; }

.actions { display: flex; gap: 0.6rem; align-items: center; }

.btn {
    font-family: var(--ui);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.65rem 1.2rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: 1px solid var(--rule);
    background: #ffffff;
    color: var(--linen);
    transition: all 180ms var(--ease);
}

.btn:disabled { opacity: 0.4; cursor: default; }
.btn.primary { background: var(--teal); color: #ffffff; border-color: var(--teal); }
.btn.primary:hover:not(:disabled) { background: var(--teal-dark); }
.btn.danger { color: #b91c1c; border-color: rgba(185, 28, 28, 0.3); }
.btn.danger:hover:not(:disabled) { background: #b91c1c; color: #ffffff; }

.panel {
    padding: 2.2rem;
    max-width: 900px;
}

.panel h2 {
    font-family: var(--display);
    font-size: 1.6rem;
    margin: 0 0 1.2rem;
    color: var(--linen);
}

.fields { display: grid; gap: 1rem; }
.fields.two { grid-template-columns: 1fr 1fr; }

label { display: flex; flex-direction: column; gap: 0.35rem; }

label > span, .bifield .lbl {
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--steel);
}

input:not([type="checkbox"]):not([type="file"]), textarea, select {
    font-family: var(--ui);
    font-size: 0.95rem;
    color: var(--linen);
    background: #ffffff;
    border: 1.5px solid var(--rule);
    border-radius: var(--radius-sm);
    padding: 0.75rem 0.95rem;
    width: 100%;
    transition: border-color 200ms;
}

input:focus-visible, textarea:focus-visible, select:focus-visible {
    border-color: var(--teal);
    outline: none;
}

.bifield { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.2rem; }
.bifield .pair { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }

.switch {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--steel);
    cursor: pointer;
    margin-top: 1rem;
}

.switch input {
    width: 1.2rem;
    height: 1.2rem;
    accent-color: var(--teal);
}

.brand-previews {
    display: grid;
    grid-template-columns: auto auto 1fr;
    gap: 1.5rem;
    align-items: start;
    margin-top: 1.2rem;
}

.thumb img {
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: var(--radius-sm);
    border: 1px solid var(--rule);
}

.hours-edit { border-collapse: separate; border-spacing: 0 0.5rem; }
.hours-edit th { text-align: left; font-weight: 500; color: var(--steel); padding-right: 1.4rem; font-size: 0.92rem; }
.hours-edit td { padding: 0 0.35rem; }
.hours-edit input[type="time"] { width: 8.5rem; }

.items { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.6rem; }
.item { background: #ffffff; border-radius: var(--radius-sm); border: 1px solid var(--rule); overflow: hidden; }

.item .row {
    display: grid;
    grid-template-columns: 2.4rem 3.5rem 1fr auto;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 0.75rem 1rem;
    background: transparent;
    border: 0;
    cursor: pointer;
    text-align: left;
}

.item .row img { width: 3.5rem; height: 2.6rem; object-fit: cover; border-radius: 4px; }
.item .t strong { font-weight: 600; font-size: 0.95rem; }
.item .edit { padding: 1.2rem; border-top: 1px solid var(--rule); background: #f8fafc; }

/* ==========================================================================
   Animations
   ========================================================================== */

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.6); opacity: 0; }
    100% { transform: scale(1); opacity: 0; }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

@media (max-width: 1080px) {
    .trust-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2) { border-right: 0; }
    .stat-item:nth-child(-n+2) { border-bottom: 1px solid var(--rule); }
    .pillars-grid { grid-template-columns: repeat(2, 1fr); }
    .specialties-grid { grid-template-columns: 1fr; }
    .preview { grid-template-columns: 1fr 1fr; }
    .preview a:last-child { display: none; }
    .foot-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 920px) {
    .hero {
        grid-template-columns: 1fr;
        padding-top: 1.25rem;
        gap: 1.75rem;
    }

    .hero-still {
        order: -1;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .rail-phone { display: none; }
    .nav { display: none; }
    
    .strip { grid-template-columns: 1fr; }
    .map-frame { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .cta-banner { grid-template-columns: 1fr; }
    .grid { grid-template-columns: 1fr; }
    .lightbox { grid-template-columns: 1fr; padding: 1.5rem 1rem 5rem; }
    .lightbox img { max-height: 48vh; }
    
    .foot-inner { grid-template-columns: 1fr; gap: 2rem; }
    
    /* Mobile Call Dock */
    .call-dock {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        position: fixed;
        left: 1rem;
        right: 1rem;
        bottom: 1.2rem;
        z-index: 40;
        background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
        color: #ffffff;
        text-align: center;
        text-decoration: none;
        font-family: var(--ui);
        font-size: 1rem;
        font-weight: 700;
        letter-spacing: 0.02em;
        padding: 0.95rem 1.5rem;
        border-radius: var(--radius-pill);
        box-shadow: 0 12px 30px -5px var(--teal-glow);
    }
    
    .call-dock svg {
        width: 1.2rem;
        height: 1.2rem;
        fill: currentColor;
    }
    
    .site { padding-bottom: 5.5rem; }
    
    .admin { grid-template-columns: 1fr; }
    .admin-rail { position: static; min-height: 0; flex-direction: row; flex-wrap: wrap; }
    .fields.two, .bifield .pair { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .trust-stats-grid { grid-template-columns: 1fr; }
    .stat-item { border-right: 0 !important; border-bottom: 1px solid var(--rule); }
    .stat-item:last-child { border-bottom: 0; }
    .pillars-grid { grid-template-columns: 1fr; }
    .preview { grid-template-columns: 1fr; }
    .preview a:last-child { display: block; }
}
