.mobile-phone-bar {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1rem;
    background:
        radial-gradient(circle at top left, hsl(var(--accent) / 0.22), transparent 48%),
        linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(var(--primary) / 0.95) 55%, hsl(var(--accent) / 0.92) 100%);
    border-bottom: 1px solid hsl(var(--primary-foreground) / 0.12);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
}

.mobile-phone-bar a {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    max-width: 24rem;
    padding: 0.7rem 1rem;
    margin: 0 auto;
    border: 1px solid hsl(var(--primary-foreground) / 0.16);
    border-radius: 9999px;
    background: hsl(var(--primary-foreground) / 0.08);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: hsl(var(--accent-foreground));
    text-decoration: none;
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.mobile-phone-bar a:hover {
    transform: translateY(-1px);
    background: hsl(var(--primary-foreground) / 0.12);
    border-color: hsl(var(--primary-foreground) / 0.24);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.mobile-phone-icon {
    display: grid;
    place-items: center;
    width: 2.4rem;
    height: 2.4rem;
    flex-shrink: 0;
    border-radius: 9999px;
    background: hsl(var(--accent));
    color: hsl(var(--accent-foreground));
    box-shadow: inset 0 1px 0 hsl(var(--primary-foreground) / 0.15), 0 8px 16px rgba(0, 0, 0, 0.18);
}

.mobile-phone-icon svg {
    width: 1rem;
    height: 1rem;
}

.mobile-phone-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.1;
}

.mobile-phone-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: hsl(var(--primary-foreground) / 0.7);
}

.mobile-phone-number {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: hsl(var(--accent-foreground));
}

.desktop-phone-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-left: 0.25rem;
    padding: 0.6rem 0.9rem;
    border: 1px solid hsl(var(--border));
    border-radius: 9999px;
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: hsl(var(--foreground));
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.15s ease, border-color 0.15s ease, background-color 0.15s ease;
}

.desktop-phone-link svg {
    width: 0.95rem;
    height: 0.95rem;
}

.desktop-phone-link:hover {
    color: hsl(var(--accent));
    border-color: hsl(var(--accent) / 0.45);
    background-color: hsl(var(--accent) / 0.08);
}

.site-main-offset {
    padding-top: 7rem;
}

.hero-image-clear {
    filter: brightness(1.08) saturate(1.08);
}

.hero-overlay-clear {
    background:
        linear-gradient(90deg, hsl(var(--primary) / 0.72) 0%, hsl(var(--primary) / 0.56) 38%, hsl(var(--primary) / 0.28) 72%, hsl(var(--primary) / 0.18) 100%),
        linear-gradient(180deg, hsl(var(--primary) / 0.28), hsl(var(--primary) / 0.36));
}

.hero-content-shell {
    position: relative;
}

.hero-copy {
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.38);
}

.hero-copy h1,
.hero-copy p {
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.42);
}

.hero-primary-btn,
.hero-secondary-btn {
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
}

.hero-secondary-btn {
    background-color: rgba(15, 15, 15, 0.28);
    border-color: rgba(255, 255, 255, 0.62);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
}

.hero-secondary-btn:hover {
    background-color: rgba(255, 255, 255, 0.16);
}

@media (min-width: 768px) {
    .site-main-offset {
        padding-top: 8.25rem;
    }
}

@media (min-width: 1024px) {
    .mobile-phone-bar {
        display: none;
    }

    .site-main-offset {
        padding-top: 5rem;
    }
}
