/* ============================================
   SHERIDAN MUSIC STUDIO — Custom Styles
   Palette: Plum (#4a154b) + Amber (#d4a017)
   Fonts: Playfair Display + Inter
   ============================================ */

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

:root {
    --plum: #4a154b;
    --plum-dark: #320f35;
    --plum-deeper: #1e0820;
    --plum-light: #6b206e;
    --amber: #d4a017;
    --amber-light: #e8b94a;
    --amber-dark: #b8860f;
    --cream: #faf6f0;
    --cream-dark: #f0e8da;
    --text: #1a1a1a;
    --text-light: #555;
    --white: #ffffff;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', system-ui, sans-serif;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 30px rgba(74, 21, 75, 0.08);
    --shadow-lg: 0 12px 60px rgba(74, 21, 75, 0.12);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    color: var(--text);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Typography --- */
.section__eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--amber-dark);
    margin-bottom: 16px;
}

.section__eyebrow--center {
    text-align: center;
}

.section__title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--plum-dark);
    margin-bottom: 24px;
}

.section__title--center {
    text-align: center;
}

.text-accent {
    color: var(--amber-dark);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
}

.btn--primary {
    background: var(--amber);
    color: var(--plum-deeper);
    border-color: var(--amber);
}

.btn--primary:hover {
    background: var(--amber-light);
    border-color: var(--amber-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 160, 23, 0.3);
}

.btn--ghost {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn--ghost:hover {
    background: var(--white);
    color: var(--plum-dark);
    border-color: var(--white);
}

.btn--outline {
    background: transparent;
    color: var(--plum);
    border-color: var(--plum);
}

.btn--outline:hover {
    background: var(--plum);
    color: var(--white);
}

.btn--small {
    padding: 10px 24px;
    font-size: 0.8125rem;
}

.btn--full {
    width: 100%;
    justify-content: center;
}

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
}

.nav.scrolled {
    background: rgba(30, 8, 32, 0.95);
    backdrop-filter: blur(20px);
    padding: 14px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.nav__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
}

.nav__logo svg {
    color: var(--amber);
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav__links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
    position: relative;
}

.nav__links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--amber);
    transition: width 0.3s ease;
}

.nav__links a:hover {
    color: var(--white);
}

.nav__links a:hover::after {
    width: 100%;
}

.nav__cta {
    background: var(--amber);
    color: var(--plum-deeper) !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
}

.nav__cta::after {
    display: none;
}

.nav__cta:hover {
    background: var(--amber-light);
    transform: translateY(-1px);
}

/* Mobile Toggle */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav__toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.nav__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--plum-deeper);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu__link {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    color: var(--white);
    transition: color 0.3s ease;
}

.mobile-menu__link:hover {
    color: var(--amber);
}

.mobile-menu__cta {
    margin-top: 16px;
    font-family: var(--font-sans);
    font-size: 1rem;
    background: var(--amber);
    color: var(--plum-deeper);
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 600;
}

/* --- Hero --- */
.hero {
    min-height: 100vh;
    background: var(--plum-deeper);
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 80%, rgba(212, 160, 23, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(107, 32, 110, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.hero__grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 140px 24px 80px;
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero__eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 24px;
}

.hero__headline {
    font-family: var(--font-serif);
    font-size: clamp(2.75rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 28px;
}

.hero__accent {
    color: var(--amber);
}

.hero__accent--italic {
    font-style: italic;
    color: var(--amber-light);
}

.hero__body {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    max-width: 520px;
    margin-bottom: 40px;
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero__info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero__info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
}

.hero__info-item svg {
    color: var(--amber);
    flex-shrink: 0;
}

/* Hero Image */
.hero__image {
    position: relative;
}

.hero__image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero__image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 3/4;
}

.hero__image-accent {
    position: absolute;
    inset: 0;
    border: 2px solid var(--amber);
    border-radius: var(--radius-lg);
    transform: translate(16px, 16px);
    pointer-events: none;
    opacity: 0.4;
}

.hero__floating-card {
    position: absolute;
    bottom: -20px;
    left: -30px;
    background: var(--amber);
    color: var(--plum-deeper);
    padding: 20px 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.hero__floating-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero__floating-value {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
}

/* Hero Scroll */
.hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    z-index: 1;
    animation: float 2s ease-in-out infinite;
}

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

/* --- About --- */
.about {
    padding: 120px 0;
    background: var(--cream);
}

.about__grid {
    display: grid;
    grid-template-columns: 0.8fr 1fr;
    gap: 80px;
    align-items: center;
}

.about__visual {
    position: relative;
}

.about__visual img {
    border-radius: var(--radius-lg);
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 5/6;
    box-shadow: var(--shadow-lg);
}

.about__stat {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: var(--plum);
    color: var(--white);
    padding: 24px 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.about__stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--amber);
    line-height: 1;
    margin-bottom: 4px;
}

.about__stat-label {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.7);
}

.about__content {
    padding: 20px 0;
}

.about__text {
    font-size: 1.0625rem;
    line-height: 1.85;
    color: var(--text-light);
    margin-bottom: 20px;
}

.about__features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}

.about__feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.about__feature svg {
    color: var(--amber-dark);
    flex-shrink: 0;
    margin-top: 2px;
}

.about__feature strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.125rem;
    color: var(--plum-dark);
    margin-bottom: 2px;
}

.about__feature span {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* --- Experience --- */
.experience {
    padding: 120px 0;
    background: var(--plum);
    position: relative;
    overflow: hidden;
}

.experience::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 0%, rgba(212, 160, 23, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.experience .section__eyebrow {
    color: var(--amber);
}

.experience .section__title {
    color: var(--white);
}

.experience__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 64px;
    position: relative;
    z-index: 1;
}

.experience__card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s ease;
}

.experience__card:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.experience__card-number {
    font-family: var(--font-serif);
    font-size: 4rem;
    font-weight: 900;
    color: rgba(212, 160, 23, 0.15);
    line-height: 1;
    padding: 32px 32px 0;
}

.experience__card-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    padding: 16px 32px 0;
}

.experience__card p {
    font-size: 0.9375rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.6);
    padding: 16px 32px 24px;
}

.experience__card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 3/2;
}

/* --- Events --- */
.events {
    padding: 120px 0;
    background: var(--cream);
}

.events__header {
    margin-bottom: 56px;
}

.events__list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.event {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: 32px;
    align-items: center;
    padding: 32px 0;
    border-bottom: 1px solid rgba(74, 21, 75, 0.1);
    transition: all 0.3s ease;
}

.event:first-child {
    border-top: 1px solid rgba(74, 21, 75, 0.1);
}

.event:hover {
    padding-left: 16px;
}

.event__date {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.event__day {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--amber-dark);
}

.event__num {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--plum-dark);
}

.event__name {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--plum-dark);
    margin-bottom: 6px;
}

.event__desc {
    font-size: 0.9375rem;
    color: var(--text-light);
}

.events__note {
    margin-top: 32px;
    font-size: 0.875rem;
    color: var(--text-light);
}

.events__note a {
    color: var(--plum);
    font-weight: 600;
    border-bottom: 1px solid var(--amber);
}

/* --- Gallery --- */
.gallery {
    padding: 120px 0;
    background: var(--cream-dark);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 20px;
    margin-top: 64px;
}

.gallery__item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
}

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

.gallery__item:hover img {
    transform: scale(1.05);
}

.gallery__item--large {
    grid-column: 1 / 7;
    grid-row: 1 / 3;
}

.gallery__item--wide {
    grid-column: 6 / 13;
    grid-row: 2 / 3;
}

.gallery__item:not(.gallery__item--large):not(.gallery__item--wide) {
    grid-column: span 3;
}

/* --- Visit --- */
.visit {
    padding: 120px 0;
    background: var(--cream);
}

.visit__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.visit__details {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 48px;
}

.visit__detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.visit__detail svg {
    color: var(--amber-dark);
    flex-shrink: 0;
    margin-top: 2px;
}

.visit__detail strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.125rem;
    color: var(--plum-dark);
    margin-bottom: 4px;
}

.visit__detail p {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.6;
}

.visit__detail a {
    color: var(--plum);
    border-bottom: 1px solid rgba(74, 21, 75, 0.2);
    transition: border-color 0.3s ease;
}

.visit__detail a:hover {
    border-color: var(--amber-dark);
}

/* Form */
.visit__form-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(74, 21, 75, 0.06);
}

.visit__form-title {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--plum-dark);
    margin-bottom: 32px;
}

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form__group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.form__group label {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-light);
}

.form__group input,
.form__group select,
.form__group textarea {
    padding: 14px 18px;
    border: 1.5px solid rgba(74, 21, 75, 0.15);
    border-radius: var(--radius);
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    color: var(--text);
    background: var(--cream);
    transition: all 0.3s ease;
    outline: none;
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
    border-color: var(--amber-dark);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(212, 160, 23, 0.1);
}

.form__group textarea {
    resize: vertical;
    min-height: 100px;
}

.form__note {
    text-align: center;
    font-size: 0.8125rem;
    color: var(--text-light);
    margin-top: 16px;
}

.form__success {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    padding: 40px 20px;
}

.form__success.show {
    display: flex;
}

.form__success h4 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--plum-dark);
}

.form__success p {
    font-size: 0.9375rem;
    color: var(--text-light);
}

/* --- Map --- */
.map {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.map__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.6) brightness(0.7);
}

.map__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(30, 8, 32, 0.4);
}

.map__card {
    background: var(--white);
    padding: 40px 56px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.map__card h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--plum-dark);
    margin-bottom: 8px;
}

.map__card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

/* --- Footer --- */
.footer {
    background: var(--plum-deeper);
    color: var(--white);
    padding: 80px 0 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.footer__logo svg {
    color: var(--amber);
}

.footer__brand p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    max-width: 300px;
}

.footer__links strong,
.footer__contact strong {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 20px;
}

.footer__links a {
    display: block;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    padding: 6px 0;
    transition: color 0.3s ease;
}

.footer__links a:hover {
    color: var(--white);
}

.footer__contact p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
}

.footer__contact a {
    color: rgba(255, 255, 255, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    transition: border-color 0.3s ease;
}

.footer__contact a:hover {
    border-color: var(--amber);
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer__bottom p {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.35);
}

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

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

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero__grid {
        grid-template-columns: 1fr 0.6fr;
        gap: 40px;
    }
    
    .about__grid {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }
    
    .experience__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
    
    .gallery__grid {
        grid-template-columns: repeat(6, 1fr);
        grid-template-rows: repeat(2, 220px);
    }
    
    .gallery__item--large {
        grid-column: 1 / 5;
        grid-row: 1 / 3;
    }
    
    .gallery__item--wide {
        grid-column: 5 / 7;
        grid-row: 2 / 3;
    }
    
    .gallery__item:not(.gallery__item--large):not(.gallery__item--wide) {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .nav__links {
        display: none;
    }
    
    .nav__toggle {
        display: flex;
    }
    
    .hero__grid {
        grid-template-columns: 1fr;
        padding: 120px 24px 100px;
        gap: 48px;
    }
    
    .hero__image {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .hero__floating-card {
        left: 0;
        bottom: -16px;
    }
    
    .about__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .about__visual {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .about__stat {
        right: 0;
    }
    
    .experience__grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .event {
        grid-template-columns: 80px 1fr;
        gap: 16px;
    }
    
    .event .btn {
        display: none;
    }
    
    .gallery__grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    
    .gallery__item--large,
    .gallery__item--wide {
        grid-column: span 1;
        grid-row: auto;
    }
    
    .gallery__item {
        height: 220px;
    }
    
    .visit__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .visit__form-wrap {
        padding: 32px 24px;
    }
    
    .form__row {
        grid-template-columns: 1fr;
    }
    
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .map__card {
        padding: 32px 24px;
        margin: 0 16px;
    }
}

@media (max-width: 480px) {
    .hero__headline {
        font-size: 2.25rem;
    }
    
    .hero__actions {
        flex-direction: column;
    }
    
    .hero__actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .section__title {
        font-size: 1.75rem;
    }
    
    .experience__card-number {
        font-size: 2.5rem;
    }
}
