/* Theme */
:root {
    --accent: #ff7b3f;
    --accent-2: #00c2c7;
    --ink: #0f0f0f;
    --frost: #f5f5f5;
}

body {
    font-family: 'Work Sans', system-ui, -apple-system, sans-serif;
    background: #fff;
    color: var(--ink);
}

.navbar {
    letter-spacing: 0.02em;
}

.navbar .btn-accent {
    padding: 0.45rem 1rem;
}

.btn-accent {
    background: linear-gradient(120deg, var(--accent), var(--accent-2));
    color: #0f0f0f;
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-accent:hover,
.btn-accent:focus {
    color: #0f0f0f;
    filter: brightness(1.05);
}

.hero {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 20% 20%, rgba(0, 194, 199, 0.25), transparent 32%),
        radial-gradient(circle at 90% 10%, rgba(255, 123, 63, 0.25), transparent 30%),
        #000;
    color: #fff;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.35));
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 7rem 0 6rem;
}

.hero img {
    border: 4px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
}

.tagline {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
}

.tagline .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    background: var(--accent);
}

.section-heading {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    color: #555;
    font-size: 0.95rem;
}

.highlight-card {
    border: 1px solid #e7e7e7;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.04);
    transition: transform 150ms ease, box-shadow 150ms ease;
    background: #fff;
}

.highlight-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.press-card {
    border-left: 4px solid var(--accent);
    padding-left: 1rem;
}

.press-card a {
    text-decoration: none;
}

.press-card a:hover {
    color: var(--accent);
}

.gallery-grid img {
    object-fit: cover;
    height: 260px;
    transition: transform 180ms ease, box-shadow 180ms ease;
    border-radius: 16px;
}

.gallery-grid .card {
    border: none;
    background: #fff;
}

.gallery-grid .card:hover img {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.pill {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: var(--frost);
    color: var(--ink);
    font-weight: 600;
    letter-spacing: 0.04em;
}

.texture {
    background-image: radial-gradient(#111 1px, transparent 0);
    background-size: 18px 18px;
    opacity: 0.5;
}

@media (max-width: 767px) {
    .hero-content {
        padding: 5rem 0 4rem;
    }

    .gallery-grid img {
        height: 220px;
    }
}
