*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy: #0a1628;
    --navy-light: #132038;
    --navy-mid: #1a2d4a;
    --gold: #c8a45e;
    --gold-light: #dbb96e;
    --gold-dark: #a8873e;
    --cream: #faf8f4;
    --cream-dark: #f0ece4;
    --white: #ffffff;
    --text-dark: #0a1628;
    --text-light: #f5f3ef;
    --text-muted: #6b7a8d;
    --text-muted-light: rgba(255,255,255,0.6);
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', system-ui, sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

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

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

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

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

/* ─── NAV ─── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 22, 40, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(200, 164, 94, 0.12);
    transition: background 0.3s ease;
}

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

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

.nav__logo em {
    color: var(--gold);
    font-style: italic;
}

.nav__logo-icon {
    color: var(--gold);
}

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

.nav__link {
    color: var(--text-muted-light);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    transition: color 0.25s ease;
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s var(--ease-out);
}

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

.nav__link:hover::after {
    width: 100%;
}

.nav__cta {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: color 0.25s ease, transform 0.25s ease;
}

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

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
}

.nav__toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.3s var(--ease-out), opacity 0.2s ease;
}

.nav__toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.nav__toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ─── HERO ─── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--navy);
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background: url('https://images.pexels.com/photos/7447123/pexels-photo-7447123.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1080') center center / cover no-repeat;
    transform: scale(1.05);
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.92) 0%, rgba(10, 22, 40, 0.78) 50%, rgba(10, 22, 40, 0.85) 100%);
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 24px 80px;
    width: 100%;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(200, 164, 94, 0.1);
    border: 1px solid rgba(200, 164, 94, 0.3);
    border-radius: 100px;
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.hero__badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.4); }
}

.hero__headline {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    max-width: 700px;
}

.hero__headline em {
    color: var(--gold);
    font-style: italic;
    font-weight: 700;
}

.hero__sub {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: var(--text-muted-light);
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 40px;
    font-weight: 300;
}

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

/* ─── BUTTONS ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    border-radius: 6px;
    transition: all 0.3s var(--ease-out);
    white-space: nowrap;
}

.btn--gold {
    background: var(--gold);
    color: var(--navy);
    border: 2px solid var(--gold);
}

.btn--gold:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(200, 164, 94, 0.35);
}

.btn--ghost {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.25);
}

.btn--ghost:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.06);
    transform: translateY(-2px);
}

.btn--outline-gold {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.btn--outline-gold:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-2px);
}

.btn--lg {
    padding: 18px 36px;
    font-size: 1rem;
}

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

/* ─── FLOATING STAT CARDS ─── */
.hero__stats {
    position: absolute;
    right: 24px;
    bottom: 80px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--white);
    min-width: 240px;
    transition: transform 0.3s var(--ease-out), border-color 0.3s ease;
}

.stat-card:hover {
    transform: translateX(-6px);
    border-color: rgba(200, 164, 94, 0.4);
}

.stat-card--1 { transform: translateY(-20px); }
.stat-card--1:hover { transform: translateY(-20px) translateX(-6px); }
.stat-card--2 { transform: translateY(20px); }
.stat-card--2:hover { transform: translateY(20px) translateX(-6px); }
.stat-card--3 { transform: translateY(-10px); }
.stat-card--3:hover { transform: translateY(-10px) translateX(-6px); }
.stat-card--4 { transform: translateY(10px); }
.stat-card--4:hover { transform: translateY(10px) translateX(-6px); }

.stat-card__number {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}

.stat-card__label {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted-light);
    line-height: 1.4;
}

.stat-card__text {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-muted-light);
    line-height: 1.4;
}

.stat-card svg {
    color: var(--gold);
    flex-shrink: 0;
}

/* ─── SECTION HEADERS ─── */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    color: var(--navy);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.section-title em {
    color: var(--gold-dark);
    font-style: italic;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
    font-weight: 300;
}

/* ─── SERVICES ─── */
.services {
    padding: 120px 0;
    background: var(--cream);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.service-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(10, 22, 40, 0.06);
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(10, 22, 40, 0.12);
}

.service-card__img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.service-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.service-card:hover .service-card__img img {
    transform: scale(1.08);
}

.service-card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 22, 40, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-card__overlay {
    opacity: 1;
}

.service-card__body {
    padding: 28px 32px 32px;
}

.service-card__title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.service-card__body p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    font-weight: 300;
}

/* ─── ABOUT ─── */
.about {
    padding: 120px 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

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

.about__visual {
    position: relative;
}

.about__img-main {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0,0,0,0.3);
}

.about__img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about__img-accent {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 55%;
    border-radius: 16px;
    overflow: hidden;
    border: 4px solid var(--navy);
    box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

.about__img-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about__badge {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--gold);
    color: var(--navy);
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(200, 164, 94, 0.4);
}

.about__badge-year {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.about__badge-text {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 700;
}

.about__content {
    color: var(--white);
}

.about__content .section-tag {
    color: var(--gold);
}

.about__content .section-title {
    color: var(--white);
    text-align: left;
}

.about__content .section-title em {
    color: var(--gold);
}

.about__text {
    font-size: 1.05rem;
    color: var(--text-muted-light);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 20px;
}

.about__highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 40px;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
}

.highlight svg {
    color: var(--gold);
    flex-shrink: 0;
}

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

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

.gallery__item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
}

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

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

.gallery__item-label {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(10, 22, 40, 0.85);
    backdrop-filter: blur(8px);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.3s var(--ease-out);
}

.gallery__item:hover .gallery__item-label {
    opacity: 1;
    transform: translateY(0);
}

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

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

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

/* ─── CTA ─── */
.cta {
    padding: 120px 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(200, 164, 94, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cta__inner {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta__inner .section-tag {
    color: var(--gold);
}

.cta__headline {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.cta__headline em {
    color: var(--gold);
    font-style: italic;
}

.cta__text {
    font-size: 1.1rem;
    color: var(--text-muted-light);
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 40px;
}

.cta__actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

/* ─── CONTACT ─── */
.contact {
    padding: 120px 0;
    background: var(--cream);
}

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

.contact__info .section-title {
    text-align: left;
}

.contact__text {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 40px;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-detail__icon {
    width: 52px;
    height: 52px;
    background: var(--navy);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

.contact-detail strong {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 6px;
}

.contact-detail span,
.contact-detail a {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.contact-detail a:hover {
    color: var(--gold-dark);
}

/* ─── FORM ─── */
.contact__form-wrap {
    background: var(--white);
    border-radius: 20px;
    padding: 48px;
    box-shadow: 0 8px 40px rgba(10, 22, 40, 0.08);
}

.contact__form-title {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 32px;
    letter-spacing: -0.01em;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 14px 18px;
    background: var(--cream);
    border: 2px solid transparent;
    border-radius: 10px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: border-color 0.25s ease, background 0.25s ease;
    outline: none;
}

.form-input::placeholder {
    color: var(--text-muted);
}

.form-input:focus {
    border-color: var(--gold);
    background: var(--white);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230a1628' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
    cursor: pointer;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-success {
    text-align: center;
    padding: 48px 24px;
}

.form-success svg {
    margin: 0 auto 20px;
}

.form-success h4 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 12px;
}

.form-success p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ─── FOOTER ─── */
.footer {
    background: var(--navy);
    padding: 64px 0 32px;
    color: var(--white);
}

.footer__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.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 em {
    color: var(--gold);
    font-style: italic;
}

.footer__logo-mark {
    color: var(--gold);
    font-size: 1.2rem;
}

.footer__tagline {
    font-size: 0.9rem;
    color: var(--text-muted-light);
    font-weight: 300;
    max-width: 280px;
    line-height: 1.6;
}

.footer__links {
    display: flex;
    gap: 32px;
}

.footer__links a {
    color: var(--text-muted-light);
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.25s ease;
}

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

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    flex-wrap: wrap;
    gap: 16px;
}

.footer__bottom p {
    font-size: 0.8rem;
    color: var(--text-muted-light);
    font-weight: 300;
}

.footer__bottom a {
    color: var(--gold);
    transition: color 0.25s ease;
}

.footer__bottom a:hover {
    color: var(--gold-light);
}

/* ─── SCROLL REVEAL ─── */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

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

/* ─── MOBILE ─── */
@media (max-width: 1024px) {
    .hero__stats {
        position: relative;
        right: auto;
        bottom: auto;
        flex-direction: row;
        flex-wrap: wrap;
        margin-top: 48px;
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
        padding: 0 24px;
    }

    .stat-card {
        flex: 1;
        min-width: 180px;
        transform: none !important;
    }

    .stat-card:hover {
        transform: translateY(-4px) !important;
    }

    .hero__content {
        padding-bottom: 0;
    }

    .about__layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about__visual {
        max-width: 500px;
    }

    .contact__layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .nav__links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(10, 22, 40, 0.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 32px 24px;
        gap: 24px;
        transform: translateY(-120%);
        transition: transform 0.4s var(--ease-out);
        border-bottom: 1px solid rgba(200, 164, 94, 0.15);
    }

    .nav__links.open {
        transform: translateY(0);
    }

    .nav__toggle {
        display: flex;
    }

    .nav__cta {
        justify-content: center;
    }

    .hero {
        min-height: auto;
        padding-bottom: 40px;
    }

    .hero__content {
        padding: 120px 24px 60px;
    }

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

    .stat-card {
        min-width: auto;
        width: 100%;
    }

    .services__grid {
        grid-template-columns: 1fr;
    }

    .gallery__grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .gallery__item--large {
        grid-column: 1 / -1;
        grid-row: auto;
        aspect-ratio: 16/9;
    }

    .gallery__item--wide {
        grid-column: 1 / -1;
        grid-row: auto;
        aspect-ratio: 16/9;
    }

    .gallery__item:not(.gallery__item--large):not(.gallery__item--wide) {
        grid-column: span 1;
        aspect-ratio: 4/3;
    }

    .about__img-accent {
        right: -10px;
        bottom: -20px;
        width: 50%;
    }

    .about__highlights {
        grid-template-columns: 1fr;
    }

    .contact__form-wrap {
        padding: 32px 24px;
    }

    .footer__top {
        flex-direction: column;
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero__actions {
        flex-direction: column;
    }

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

    .cta__actions {
        flex-direction: column;
        align-items: center;
    }

    .cta__actions .btn {
        width: 100%;
        max-width: 320px;
    }
}

@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(32px);
    }

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

@media not all and (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 1;
        transform: none;
    }
}
