/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 300;
    color: #1a1414;
    background: #FDF8F6;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
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; }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 400; line-height: 1.15; }
.accent { color: #7B2D3B; font-style: italic; }

/* ── Section Shared ── */
.section-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #7B2D3B;
    margin-bottom: 16px;
    position: relative;
    padding-left: 32px;
}
.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 20px;
    height: 1px;
    background: #7B2D3B;
}
.section-title {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 300;
    color: #1a1414;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}
.section-desc {
    font-size: 1.05rem;
    color: #6B6560;
    max-width: 520px;
    line-height: 1.7;
}
.section-header { margin-bottom: 64px; }

/* ── Navigation ── */
.nav-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}
.nav-fixed.scrolled {
    background: rgba(253, 248, 246, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 rgba(123, 45, 59, 0.08);
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    height: 72px;
    gap: 40px;
}
.nav-logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
    flex-shrink: 0;
}
.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 500;
    color: #FDF8F6;
    letter-spacing: 0.04em;
    transition: color 0.4s ease;
}
.nav-fixed.scrolled .logo-text { color: #7B2D3B; }
.logo-sub {
    font-size: 0.6rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(253, 248, 246, 0.6);
    margin-top: 2px;
    transition: color 0.4s ease;
}
.nav-fixed.scrolled .logo-sub { color: #6B6560; }
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-left: auto;
}
.nav-link {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: rgba(253, 248, 246, 0.75);
    transition: color 0.3s ease;
    position: relative;
}
.nav-fixed.scrolled .nav-link { color: #6B6560; }
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: #F5E6E0;
    transition: width 0.3s ease;
}
.nav-fixed.scrolled .nav-link::after { background: #7B2D3B; }
.nav-link:hover::after { width: 100%; }
.nav-link:hover { color: #FDF8F6; }
.nav-fixed.scrolled .nav-link:hover { color: #7B2D3B; }
.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: #FDF8F6;
    background: rgba(253, 248, 246, 0.12);
    border: 1px solid rgba(253, 248, 246, 0.2);
    padding: 8px 18px;
    border-radius: 100px;
    transition: all 0.3s ease;
}
.nav-fixed.scrolled .nav-cta {
    color: #7B2D3B;
    background: rgba(123, 45, 59, 0.06);
    border-color: rgba(123, 45, 59, 0.15);
}
.nav-cta:hover { background: rgba(253, 248, 246, 0.2); }
.nav-fixed.scrolled .nav-cta:hover { background: rgba(123, 45, 59, 0.1); }

/* Mobile Menu Toggle */
.menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    margin-left: auto;
    z-index: 1001;
}
.menu-line {
    width: 22px;
    height: 1.5px;
    background: #FDF8F6;
    transition: all 0.3s ease;
    transform-origin: center;
}
.nav-fixed.scrolled .menu-line { background: #7B2D3B; }
.menu-btn.active .menu-line:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
.menu-btn.active .menu-line:nth-child(2) { opacity: 0; }
.menu-btn.active .menu-line:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(61, 20, 26, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu-link {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 300;
    color: rgba(253, 248, 246, 0.8);
    transition: color 0.3s ease;
}
.mobile-menu-link:hover { color: #F5E6E0; }
.mobile-menu-cta {
    font-size: 1rem;
    font-weight: 500;
    color: #F5E6E0;
    border: 1px solid rgba(245, 230, 224, 0.3);
    padding: 12px 28px;
    border-radius: 100px;
    margin-top: 16px;
}

/* ── Hero ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 24px 80px;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #3d141a 0%, #7B2D3B 35%, #b82248 65%, #d44064 100%);
}
.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: radial-gradient(circle at 1px 1px, rgba(253,248,246,0.8) 1px, transparent 0);
    background-size: 40px 40px;
}
.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 820px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(253, 248, 246, 0.7);
    margin-bottom: 40px;
}
.badge-line {
    width: 32px;
    height: 1px;
    background: rgba(253, 248, 246, 0.3);
}
.hero-headline {
    font-size: clamp(2.25rem, 5.5vw, 4rem);
    font-weight: 300;
    color: #FDF8F6;
    line-height: 1.15;
    margin-bottom: 28px;
    letter-spacing: -0.015em;
}
.headline-accent {
    color: #F5E6E0;
    font-style: italic;
    font-weight: 300;
}
.hero-sub {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: rgba(253, 248, 246, 0.65);
    max-width: 540px;
    margin: 0 auto 48px;
    line-height: 1.75;
}
.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 64px;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.03em;
    padding: 14px 28px;
    border-radius: 100px;
    transition: all 0.3s ease;
}
.btn-primary {
    background: #FDF8F6;
    color: #7B2D3B;
}
.btn-primary:hover { background: #F5E6E0; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.btn-outline {
    border: 1px solid rgba(253, 248, 246, 0.3);
    color: #FDF8F6;
}
.btn-outline:hover { border-color: rgba(253, 248, 246, 0.6); background: rgba(253, 248, 246, 0.08); }
.btn-white {
    background: #fff;
    color: #7B2D3B;
}
.btn-white:hover { background: #F5E6E0; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.btn-ghost {
    border: 1px solid rgba(123, 45, 59, 0.2);
    color: #7B2D3B;
}
.btn-ghost:hover { border-color: #7B2D3B; background: rgba(123, 45, 59, 0.04); }
.btn-outline-sm {
    border: 1px solid rgba(123, 45, 59, 0.2);
    color: #7B2D3B;
    padding: 10px 24px;
    font-size: 13px;
    border-radius: 100px;
}
.btn-outline-sm:hover { border-color: #7B2D3B; }
.btn-full { width: 100%; justify-content: center; }
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
}
.stat-num {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: #FDF8F6;
    line-height: 1;
}
.stat-label {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(253, 248, 246, 0.5);
    margin-top: 4px;
}
.stat-divider {
    width: 1px;
    height: 32px;
    background: rgba(253, 248, 246, 0.2);
}
.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(253, 248, 246, 0.4);
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}
.scroll-line {
    width: 1px;
    height: 32px;
    background: linear-gradient(to bottom, rgba(253,248,246,0.4), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* ── Services ── */
.services {
    padding: 120px 0;
    background: #FDF8F6;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}
.service-card {
    background: #fff;
    padding: 40px 32px;
    transition: all 0.4s ease;
    position: relative;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #7B2D3B, #d44064);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(123, 45, 59, 0.08); }
.service-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(123, 45, 59, 0.12);
    border-radius: 12px;
    margin-bottom: 24px;
    color: #7B2D3B;
    transition: all 0.3s ease;
}
.service-card:hover .service-icon { background: #7B2D3B; color: #FDF8F6; border-color: #7B2D3B; }
.service-title {
    font-size: 1.35rem;
    font-weight: 500;
    color: #1a1414;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}
.service-desc {
    font-size: 0.92rem;
    color: #6B6560;
    line-height: 1.7;
    margin-bottom: 20px;
}
.service-features { list-style: none; }
.service-features li {
    font-size: 0.85rem;
    color: #6B6560;
    padding: 6px 0;
    border-bottom: 1px solid rgba(107, 101, 96, 0.08);
    display: flex;
    align-items: center;
    gap: 8px;
}
.service-features li::before {
    content: '';
    width: 4px;
    height: 4px;
    background: #7B2D3B;
    border-radius: 50%;
    flex-shrink: 0;
}
.service-features li:last-child { border-bottom: none; }

/* ── Why Us ── */
.why-us {
    padding: 120px 0;
    background: #FDF0ED;
}
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.why-content .section-desc { margin-bottom: 48px; }
.why-features { display: flex;
    flex-direction: column;
    gap: 28px;
}
.why-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.why-feature-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(123, 45, 59, 0.15);
    border-radius: 10px;
    color: #7B2D3B;
    margin-top: 2px;
}
.why-feature-title {
    font-size: 1.05rem;
    font-weight: 500;
    color: #1a1414;
    margin-bottom: 4px;
    font-family: 'Inter', sans-serif;
}
.why-feature-text {
    font-size: 0.9rem;
    color: #6B6560;
    line-height: 1.65;
}
.why-image { position: relative; }
.image-frame {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/5;
}
.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border: 1px solid rgba(123, 45, 59, 0.15);
    border-radius: 16px;
    z-index: -1;
}

/* ── Gallery ── */
.gallery {
    padding: 120px 0;
    background: #FDF8F6;
}
.gallery .section-header { text-align: center; }
.gallery .section-header .section-desc { margin: 0 auto; }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    position: relative;
}
.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(61, 20, 26, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

/* ── CTA Banner ── */
.cta-banner {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}
.cta-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #3d141a 0%, #7B2D3B 50%, #b82248 100%);
}
.cta-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: radial-gradient(circle at 1px 1px, rgba(253,248,246,0.8) 1px, transparent 0);
    background-size: 32px 32px;
}
.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}
.cta-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(253, 248, 246, 0.5);
    margin-bottom: 20px;
}
.cta-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 300;
    color: #FDF8F6;
    line-height: 1.25;
    margin-bottom: 40px;
    letter-spacing: -0.01em;
}
.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ── Location ── */
.location {
    padding: 120px 0;
    background: #FDF8F6;
}
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.info-block {
    display: flex;
    gap: 20px;
    padding: 28px 0;
    border-bottom: 1px solid rgba(107, 101, 96, 0.1);
}
.info-block:first-child { padding-top: 0; }
.info-block:last-child { border-bottom: none; }
.info-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(123, 45, 59, 0.12);
    border-radius: 12px;
    color: #7B2D3B;
}
.info-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #6B6560;
    margin-bottom: 6px;
}
.info-value {
    font-size: 0.95rem;
    color: #1a1414;
    line-height: 1.7;
}
.info-value a {
    color: #7B2D3B;
    transition: color 0.3s ease;
}
.info-value a:hover { color: #b82248; }
.location-map {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 8px 32px rgba(123, 45, 59, 0.08);
}

/* ── Contact ── */
.contact {
    padding: 120px 0;
    background: #FDF0ED;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.contact-info .section-desc { margin-bottom: 40px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-detail {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.95rem;
    color: #1a1414;
    transition: color 0.3s ease;
}
.contact-detail:hover { color: #7B2D3B; }
.contact-detail svg { color: #7B2D3B; flex-shrink: 0; }

/* Form */
.contact-form-wrapper {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(123, 45, 59, 0.06);
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #6B6560;
}
.form-input {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    color: #1a1414;
    background: #FDF8F6;
    border: 1px solid rgba(107, 101, 96, 0.15);
    border-radius: 10px;
    padding: 12px 16px;
    outline: none;
    transition: all 0.3s ease;
    width: 100%;
}
.form-input:focus { border-color: #7B2D3B; background: #fff; box-shadow: 0 0 0 3px rgba(123, 45, 59, 0.06); }
.form-input::placeholder { color: #B8B0AC; }
.form-select { appearance: none; cursor: pointer; 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='%236B6560' 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: 40px; }
.form-textarea { resize: vertical; min-height: 120px; }
.form-success {
    text-align: center;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.success-icon { color: #7B2D3B; }
.success-title { font-size: 1.5rem; color: #1a1414; }
.success-text { font-size: 0.95rem; color: #6B6560; line-height: 1.7; max-width: 360px; }

/* ── Footer ── */
.footer {
    background: #1a1414;
    color: rgba(253, 248, 246, 0.6);
    padding: 80px 0 0;
}
.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 64px;
    padding-bottom: 64px;
    border-bottom: 1px solid rgba(253, 248, 246, 0.08);
}
.footer-logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
    margin-bottom: 16px;
}
.footer-logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: #FDF8F6;
    letter-spacing: 0.04em;
}
.footer-logo-sub {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(253, 248, 246, 0.4);
    margin-top: 2px;
}
.footer-tagline {
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 280px;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-link {
    font-size: 0.9rem;
    color: rgba(253, 248, 246, 0.5);
    transition: color 0.3s ease;
}
.footer-link:hover { color: #F5E6E0; }
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-phone, .footer-email {
    font-size: 0.9rem;
    color: rgba(253, 248, 246, 0.6);
    transition: color 0.3s ease;
}
.footer-phone:hover, .footer-email:hover { color: #F5E6E0; }
.footer-address { font-size: 0.9rem; line-height: 1.7; }
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    font-size: 0.8rem;
    color: rgba(253, 248, 246, 0.3);
}

/* ── Scroll Reveal ── */
.scroll-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { gap: 48px; }
    .contact-grid { gap: 48px; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 48px; }
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .menu-btn { display: flex; }
    .mobile-menu { display: flex; }
    .hero { padding: 100px 20px 80px; min-height: 100svh; }
    .hero-stats { gap: 20px; }
    .stat-num { font-size: 1.25rem; }
    .services { padding: 80px 0; }
    .services-grid { grid-template-columns: 1fr; }
    .why-us { padding: 80px 0; }
    .why-grid { grid-template-columns: 1fr; }
    .why-image { order: -1; }
    .image-accent { display: none; }
    .gallery { padding: 80px 0; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .cta-banner { padding: 80px 0; }
    .location { padding: 80px 0; }
    .location-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact { padding: 80px 0; }
    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .contact-form-wrapper { padding: 28px; }
    .form-row { grid-template-columns: 1fr; }
    .footer { padding: 60px 0 0; }
    .footer-top { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
@media (max-width: 480px) {
    .hero-actions { flex-direction: column; width: 100%; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .gallery-grid { grid-template-columns: 1fr; }
    .cta-actions { flex-direction: column; width: 100%; }
    .cta-actions .btn { width: 100%; justify-content: center; }
}
