#home .section-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
}

.hero-logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 2rem;
}

.hero-logo {
    max-width: 280px;
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    border: 3px solid var(--gold);
    box-shadow: 0 0 24px rgba(201, 169, 98, 0.3), 0 8px 32px rgba(0, 0, 0, 0.4);
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(201, 169, 98, 0.5);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--gold-light);
}

.pill-dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--gold);
}

.hero-title-main {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 5vw, 3.1rem);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 0.5rem;
}

.hero-title-sub {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold-light);
    margin-bottom: 1.75rem;
}

.hero-body {
    font-size: 0.98rem;
    line-height: 1.8;
    width: 100%;
    margin-bottom: 2rem;
}

.hero-body p {
    margin-bottom: 1rem;
}

.hero-body p:last-child {
    margin-bottom: 0;
}

.hero-body ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
    list-style: none;
}

.hero-body li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1rem;
}

.hero-body li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

.hero-body a {
    color: var(--gold-light);
    text-decoration: underline;
    transition: color 0.2s ease;
}

.hero-body a:hover {
    color: var(--gold);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    align-items: center;
    margin-bottom: 2rem;
}

.hero-social {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.hero-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(201, 169, 98, 0.4);
    color: var(--gold-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-social-link:hover {
    background: rgba(201, 169, 98, 0.1);
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-1px);
}

.btn-primary,
.btn-secondary {
    padding: 0.7rem 1.6rem;
    border-radius: 999px;
    border: 1px solid var(--gold);
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer;
    background: transparent;
    color: var(--gold-light);
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease, transform 0.15s ease, box-shadow 0.25s ease;
}

.btn-primary {
    background: linear-gradient(120deg, var(--gold), var(--gold-light));
    color: #121212;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.8);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.9);
}

.btn-secondary:hover {
    background: rgba(201, 169, 98, 0.08);
    transform: translateY(-1px);
}
