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

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

body {
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Grain overlay */
.grain {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1000;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 500;
    background: rgba(250, 249, 246, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(26, 39, 68, 0.06);
    transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 4px 30px rgba(15, 26, 46, 0.08);
}

.nav-link {
    font-family: 'Lato', sans-serif;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--navy, #1a2744);
    text-decoration: none;
    position: relative;
    padding: 0.25rem 0;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #D4A853;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #D4A853;
}

.nav-link:hover::after {
    width: 100%;
}

/* Mobile menu */
.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    z-index: 400;
    background: rgba(250, 249, 246, 0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(26, 39, 68, 0.06);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.mobile-nav-link {
    font-family: 'Lato', sans-serif;
    font-size: 1.125rem;
    font-weight: 500;
    color: #1a2744;
    text-decoration: none;
    display: block;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: #D4A853;
}

.mobile-menu-btn .line {
    transition: all 0.3s ease;
}

.mobile-menu-btn[aria-expanded="true"] .line:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.mobile-menu-btn[aria-expanded="true"] .line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn[aria-expanded="true"] .line:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
    width: 100%;
}

/* Overline */
.overline {
    font-family: 'Lato', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #D4A853;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.overline::before {
    content: '';
    width: 2rem;
    height: 1px;
    background: #D4A853;
}

/* Section title */
.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 500;
    line-height: 1.2;
    color: #1a2744;
    margin-bottom: 1.5rem;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: #1a2744;
    color: #faf9f6;
    font-family: 'Lato', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    border: 1px solid #1a2744;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary:hover {
    background: #0f1a2e;
    border-color: #0f1a2e;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(15, 26, 46, 0.25);
}

.btn-primary .arrow {
    transition: transform 0.3s ease;
}

.btn-primary:hover .arrow {
    transform: translate(4px, -4px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: transparent;
    color: #1a2744;
    font-family: 'Lato', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    border: 1px solid rgba(26, 39, 68, 0.25);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: #D4A853;
    color: #b8923f;
    transform: translateY(-2px);
}

.btn-light {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: #faf9f6;
    color: #1a2744;
    font-family: 'Lato', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-light:hover {
    background: #D4A853;
    color: #1a2744;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 168, 83, 0.3);
}

.btn-outline-light {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: transparent;
    color: #faf9f6;
    font-family: 'Lato', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    border: 1px solid rgba(250, 249, 246, 0.4);
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    border-color: #faf9f6;
    background: rgba(250, 249, 246, 0.1);
    transform: translateY(-2px);
}

/* Hero */
.hero {
    padding-top: 120px;
    padding-bottom: 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #faf9f6 0%, #f5f3ee 50%, #eae6db 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 140%;
    background: radial-gradient(ellipse, rgba(212, 168, 83, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 500;
    line-height: 1.15;
    color: #1a2744;
    margin-bottom: 1.5rem;
    max-width: 540px;
}

.hero-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 1.125rem;
    line-height: 1.75;
    color: rgba(26, 39, 68, 0.7);
    margin-bottom: 2.5rem;
    max-width: 480px;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 4rem;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    font-weight: 600;
    color: #1a2744;
    line-height: 1;
}

.stat-label {
    font-family: 'Lato', sans-serif;
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(26, 39, 68, 0.5);
}

.stat-divider {
    width: 1px;
    height: 3rem;
    background: rgba(26, 39, 68, 0.12);
}

.hero-image-wrapper {
    position: relative;
}

.hero-image-frame {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(15, 26, 46, 0.15);
}

.hero-image-frame img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.hero-accent {
    position: absolute;
    top: -24px;
    right: -24px;
    width: 120px;
    height: 120px;
    border: 2px solid #D4A853;
    border-radius: 4px;
    z-index: -1;
}

/* About */
.about {
    padding: 100px 0;
    background: #faf9f6;
}

.about-grid {
    display: grid;
    grid-template-columns: 0.85fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image-col {
    position: relative;
}

.about-image {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(15, 26, 46, 0.1);
}

.about-image img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.about-image-accent {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    background: #D4A853;
    border-radius: 4px;
    z-index: -1;
    opacity: 0.2;
}

.about-content {
    padding-left: 1rem;
}

.about-text {
    font-family: 'Lato', sans-serif;
    font-size: 1.0625rem;
    line-height: 1.8;
    color: rgba(26, 39, 68, 0.7);
    margin-bottom: 1.25rem;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.value-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.value-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(212, 168, 83, 0.1);
    border: 1px solid rgba(212, 168, 83, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b8923f;
}

.value-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a2744;
    margin-bottom: 0.25rem;
}

.value-desc {
    font-family: 'Lato', sans-serif;
    font-size: 0.9375rem;
    color: rgba(26, 39, 68, 0.6);
    line-height: 1.6;
}

/* Services */
.services {
    padding: 100px 0;
    background: #0f1a2e;
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(212, 168, 83, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.services .section-title {
    color: #faf9f6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.service-card {
    background: rgba(250, 249, 246, 0.04);
    border: 1px solid rgba(250, 249, 246, 0.08);
    border-radius: 6px;
    padding: 2.5rem 2rem;
    transition: all 0.4s ease;
}

.service-card:hover {
    background: rgba(250, 249, 246, 0.08);
    border-color: rgba(212, 168, 83, 0.3);
    transform: translateY(-4px);
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(212, 168, 83, 0.12);
    border: 1px solid rgba(212, 168, 83, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4A853;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: rgba(212, 168, 83, 0.2);
    border-color: rgba(212, 168, 83, 0.5);
}

.service-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #faf9f6;
    margin-bottom: 0.75rem;
}

.service-desc {
    font-family: 'Lato', sans-serif;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(250, 249, 246, 0.55);
}

/* CTA Banner */
.cta-banner {
    padding: 80px 0;
    background: #1a2744;
    position: relative;
    overflow: hidden;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 500;
    color: #faf9f6;
    line-height: 1.3;
    margin-bottom: 0.75rem;
}

.cta-text {
    font-family: 'Lato', sans-serif;
    font-size: 1.0625rem;
    color: rgba(250, 249, 246, 0.6);
    line-height: 1.7;
    max-width: 480px;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    flex-shrink: 0;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: #faf9f6;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    background: #fff;
    border: 1px solid rgba(26, 39, 68, 0.06);
    border-radius: 6px;
    padding: 2.5rem 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 15px 40px rgba(15, 26, 46, 0.08);
    transform: translateY(-4px);
}

.testimonial-quote-mark {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 4rem;
    line-height: 1;
    color: #D4A853;
    opacity: 0.3;
    position: absolute;
    top: 1rem;
    left: 1.5rem;
}

.testimonial-text {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(26, 39, 68, 0.75);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-info {
    border-left: 2px solid #D4A853;
    padding-left: 1rem;
}

.author-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1rem;
    font-weight: 600;
    color: #1a2744;
}

.author-detail {
    font-family: 'Lato', sans-serif;
    font-size: 0.8125rem;
    color: rgba(26, 39, 68, 0.5);
}

/* Contact */
.contact {
    padding: 100px 0;
    background: #f5f3ee;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-text {
    font-family: 'Lato', sans-serif;
    font-size: 1.0625rem;
    line-height: 1.75;
    color: rgba(26, 39, 68, 0.6);
    margin-bottom: 2.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(212, 168, 83, 0.1);
    border: 1px solid rgba(212, 168, 83, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b8923f;
}

.contact-label {
    font-family: 'Lato', sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(26, 39, 68, 0.4);
    margin-bottom: 0.25rem;
}

.contact-value {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: #1a2744;
    text-decoration: none;
    line-height: 1.5;
}

.contact-map {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(15, 26, 46, 0.08);
}

.contact-map img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Form */
.contact-form-col {
    background: #fff;
    border-radius: 8px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(15, 26, 46, 0.06);
    border: 1px solid rgba(26, 39, 68, 0.04);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    font-family: 'Lato', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(26, 39, 68, 0.6);
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: 'Lato', sans-serif;
    font-size: 0.9375rem;
    color: #1a2744;
    background: #faf9f6;
    border: 1px solid rgba(26, 39, 68, 0.12);
    border-radius: 4px;
    outline: none;
    transition: all 0.3s ease;
    -webkit-appearance: none;
}

.form-input:focus {
    border-color: #D4A853;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.1);
}

.form-input::placeholder {
    color: rgba(26, 39, 68, 0.3);
}

.form-select {
    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='%231a2744' 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 1rem center;
    padding-right: 2.5rem;
}

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

.btn-submit {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: #1a2744;
    color: #faf9f6;
    font-family: 'Lato', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #0f1a2e;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(15, 26, 46, 0.25);
}

.btn-submit-arrow {
    transition: transform 0.3s ease;
}

.btn-submit:hover .btn-submit-arrow {
    transform: translate(4px, -4px);
}

.form-success {
    text-align: center;
    padding: 3rem 1rem;
}

.success-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: rgba(212, 168, 83, 0.1);
    border: 2px solid rgba(212, 168, 83, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b8923f;
}

.success-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a2744;
    margin-bottom: 0.75rem;
}

.success-text {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: rgba(26, 39, 68, 0.6);
    line-height: 1.7;
    max-width: 320px;
    margin: 0 auto;
}

/* Footer */
.footer {
    background: #09101c;
    padding: 60px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(250, 249, 246, 0.06);
}

.footer-brand {
    max-width: 320px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.footer-tagline {
    font-family: 'Lato', sans-serif;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(250, 249, 246, 0.45);
}

.footer-heading {
    font-family: 'Lato', sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(250, 249, 246, 0.4);
    margin-bottom: 1.25rem;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 0.625rem;
}

.footer-list a {
    font-family: 'Lato', sans-serif;
    font-size: 0.9375rem;
    color: rgba(250, 249, 246, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-list a:hover {
    color: #D4A853;
}

.footer-contact p {
    font-family: 'Lato', sans-serif;
    font-size: 0.9375rem;
    color: rgba(250, 249, 246, 0.6);
    line-height: 1.7;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.5rem 0;
}

.footer-bottom p {
    font-family: 'Lato', sans-serif;
    font-size: 0.8125rem;
    color: rgba(250, 249, 246, 0.3);
}

.footer-legal {
    font-size: 0.75rem !important;
}

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

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* Responsive */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-image-wrapper {
        max-width: 480px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image-col {
        max-width: 480px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid .testimonial-card:last-child {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: span 2;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .stat-divider {
        display: none;
    }

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

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

    .testimonials-grid .testimonial-card:last-child {
        grid-column: span 1;
        max-width: 100%;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: span 1;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.25rem;
    }
}

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

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

    .cta-actions {
        flex-direction: column;
        width: 100%;
    }

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

    .contact-form-col {
        padding: 1.5rem;
    }
}
