/* ========================================
   Ma Bea's Guesthouse — Styles
   Classic & Elegant | Deep Navy + Warm Gold
   ======================================== */

/* --- CSS Custom Properties --- */
:root {
    --navy-950: #050E1A;
    --navy-900: #0C1F3F;
    --navy-800: #112D56;
    --navy-700: #1A3F6F;
    --navy-600: #234F82;
    --gold-500: #C8A45E;
    --gold-400: #D4B572;
    --gold-300: #E0C88A;
    --gold-600: #A8863E;
    --cream-50: #FAF8F4;
    --cream-100: #F5F0E8;
    --cream-200: #EDE6D8;
    --warm-gray-50: #F9F8F6;
    --warm-gray-100: #F3F0EA;
    --warm-gray-200: #E8E3D9;
    --warm-gray-300: #D4CFC4;
    --warm-gray-400: #B8B0A2;
    --warm-gray-500: #8A8078;
    --warm-gray-600: #6B635B;
    --warm-gray-700: #4A443E;
    --warm-gray-800: #2D2824;
    --warm-gray-900: #1A1714;

    --font-serif: 'Playfair Display', 'Georgia', serif;
    --font-body: 'Lora', 'Georgia', serif;
    --font-sans: 'Inter', 'Segoe UI', sans-serif;

    --shadow-sm: 0 1px 3px rgba(12, 31, 63, 0.06);
    --shadow-md: 0 4px 16px rgba(12, 31, 63, 0.08);
    --shadow-lg: 0 8px 32px rgba(12, 31, 63, 0.12);
    --shadow-xl: 0 16px 48px rgba(12, 31, 63, 0.16);

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;

    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--warm-gray-800);
    background-color: var(--cream-50);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img, svg {
    display: block;
    max-width: 100%;
}

a {
    color: var(--gold-600);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--navy-700);
}

h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 500;
    line-height: 1.25;
    color: var(--navy-900);
}

/* --- Skip Link --- */
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: var(--navy-900);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    z-index: 1000;
    font-family: var(--font-sans);
    font-size: 0.875rem;
}

.skip-link:focus {
    top: 1rem;
}

/* --- Container --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* --- Section Eyebrow --- */
.section-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-500);
    margin-bottom: 0.75rem;
}

/* --- Section Title --- */
.section-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 500;
    margin-bottom: 1.25rem;
    color: var(--navy-900);
}

/* --- Lead --- */
.lead {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--warm-gray-600);
    margin-bottom: 1.5rem;
}

/* --- Section Subtitle --- */
.section-subtitle {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--warm-gray-500);
    max-width: 560px;
}

/* --- Section Header --- */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header .section-subtitle {
    margin: 0 auto;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 500;
    padding: 0.8125rem 1.75rem;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    white-space: nowrap;
}

.btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.btn-gold {
    background: var(--gold-500);
    color: var(--navy-950);
    border-color: var(--gold-500);
}

.btn-gold:hover {
    background: var(--gold-400);
    border-color: var(--gold-400);
    color: var(--navy-950);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-outline-light {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
}

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

.btn-outline-navy:hover {
    background: var(--navy-900);
    color: #fff;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

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

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(12, 31, 63, 0.0);
    transition: background var(--transition-base), box-shadow var(--transition-base);
}

.nav.scrolled {
    background: rgba(12, 31, 63, 0.97);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    text-decoration: none;
    color: #fff;
}

.nav-brand-icon {
    width: 28px;
    height: 28px;
    stroke: var(--gold-500);
    flex-shrink: 0;
}

.nav-brand-text {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-menu ul {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.5rem 0.875rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.nav-menu a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.nav-cta {
    background: var(--gold-500) !important;
    color: var(--navy-950) !important;
    font-weight: 600 !important;
    margin-left: 0.5rem;
}

.nav-cta:hover {
    background: var(--gold-400) !important;
    color: var(--navy-950) !important;
}

/* Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    z-index: 101;
}

.nav-toggle-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all var(--transition-base);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(5, 14, 26, 0.72) 0%,
        rgba(12, 31, 63, 0.65) 50%,
        rgba(5, 14, 26, 0.82) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
    padding: 8rem 1.5rem 4rem;
    color: #fff;
}

.hero-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-400);
    margin-bottom: 1.25rem;
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 500;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 1.5rem;
}

.hero-headline br {
    display: none;
}

.hero-sub {
    font-size: 1.125rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.25rem;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

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

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
}

.hero-trust-item svg {
    width: 16px;
    height: 16px;
    stroke: var(--gold-400);
    flex-shrink: 0;
}

/* --- About --- */
.about {
    padding: 6rem 0;
    background: var(--cream-50);
}

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

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-main img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}

.about-img-secondary {
    position: absolute;
    bottom: -2rem;
    right: -1.5rem;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--cream-50);
}

.about-img-secondary img {
    width: 240px;
    height: 180px;
    object-fit: cover;
    display: block;
}

.about-content .section-title {
    margin-bottom: 1.5rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem 1.5rem;
    margin-top: 2rem;
    list-style: none;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--warm-gray-700);
}

.about-feature svg {
    width: 18px;
    height: 18px;
    stroke: var(--gold-500);
    flex-shrink: 0;
}

/* --- Rooms --- */
.rooms {
    padding: 6rem 0;
    background: var(--warm-gray-100);
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.room-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.room-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.room-card-img {
    overflow: hidden;
    height: 240px;
}

.room-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.room-card:hover .room-card-img img {
    transform: scale(1.05);
}

.room-card-body {
    padding: 1.75rem;
}

.room-card-title {
    font-size: 1.375rem;
    margin-bottom: 0.625rem;
}

.room-card-desc {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--warm-gray-500);
    margin-bottom: 1.25rem;
}

.room-card-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
}

.room-card-amenities li {
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 500;
    padding: 0.3125rem 0.75rem;
    background: var(--cream-100);
    color: var(--warm-gray-600);
    border-radius: 100px;
}

.rooms-note {
    text-align: center;
    font-size: 0.9375rem;
    color: var(--warm-gray-500);
}

.rooms-note a {
    color: var(--gold-600);
    font-weight: 600;
}

.rooms-note a:hover {
    color: var(--navy-700);
}

/* --- Location --- */
.location {
    padding: 6rem 0;
    background: var(--cream-50);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
}

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

.location-detail {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.location-detail svg {
    width: 24px;
    height: 24px;
    stroke: var(--gold-500);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.location-detail strong {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--navy-900);
    margin-bottom: 0.25rem;
}

.location-detail span,
.location-detail a {
    font-size: 0.9375rem;
    color: var(--warm-gray-500);
    line-height: 1.6;
}

.location-detail a:hover {
    color: var(--gold-600);
}

.location-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    min-height: 400px;
}

/* --- Testimonials --- */
.testimonials {
    padding: 6rem 0;
    background: var(--navy-900);
}

.testimonials .section-eyebrow {
    color: var(--gold-400);
}

.testimonials .section-title {
    color: #fff;
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
    transition: all var(--transition-base);
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.testimonial-quote {
    width: 32px;
    height: 32px;
    color: var(--gold-500);
    opacity: 0.5;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gold-400);
    letter-spacing: 0.02em;
}

/* --- CTA --- */
.cta {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(5, 14, 26, 0.88) 0%,
        rgba(12, 31, 63, 0.80) 60%,
        rgba(12, 31, 63, 0.60) 100%
    );
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 560px;
}

.cta-eyebrow {
    color: var(--gold-400);
}

.cta-title {
    color: #fff;
    margin-bottom: 1.25rem;
}

.cta-text {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

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

/* --- Contact --- */
.contact {
    padding: 6rem 0;
    background: var(--warm-gray-100);
}

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

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

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

.contact-detail svg {
    width: 22px;
    height: 22px;
    stroke: var(--gold-500);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.contact-detail strong {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--navy-900);
    margin-bottom: 0.125rem;
}

.contact-detail span,
.contact-detail a {
    font-size: 0.9375rem;
    color: var(--warm-gray-500);
}

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

/* --- Contact Form --- */
.contact-form-wrap {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
}

.contact-form-title {
    font-size: 1.5rem;
    margin-bottom: 1.75rem;
    color: var(--navy-900);
}

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

.form-group label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--warm-gray-600);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--warm-gray-800);
    background: var(--cream-50);
    border: 1.5px solid var(--warm-gray-200);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold-500);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(200, 164, 94, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--warm-gray-400);
}

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

.form-success {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin-top: 1rem;
    padding: 1rem;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    color: #166534;
}

.form-success svg {
    width: 20px;
    height: 20px;
    stroke: #22c55e;
    flex-shrink: 0;
}

/* --- Footer --- */
.footer {
    background: var(--navy-950);
    color: rgba(255, 255, 255, 0.6);
    padding: 4rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer-brand-link {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    color: #fff;
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 500;
    text-decoration: none;
    margin-bottom: 0.875rem;
}

.footer-brand-icon {
    width: 24px;
    height: 24px;
    stroke: var(--gold-500);
}

.footer-tagline {
    font-size: 0.9375rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer h4 {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-500);
    margin-bottom: 1.25rem;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: #fff;
}

.footer address {
    font-style: normal;
    font-size: 0.9375rem;
    line-height: 1.8;
}

.footer address a {
    color: rgba(255, 255, 255, 0.6);
}

.footer address a:hover {
    color: var(--gold-400);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.5rem 0;
}

.footer-bottom p {
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.35);
}

/* --- Scroll Reveal (progressive enhancement) --- */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .reveal.revealed {
        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; }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .about-grid,
    .location-grid,
    .contact-grid {
        gap: 3rem;
    }

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

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

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        height: 100dvh;
        background: var(--navy-900);
        padding: 5rem 2rem 2rem;
        transition: right var(--transition-base);
        box-shadow: var(--shadow-xl);
    }

    .nav-menu.open {
        right: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        align-items: stretch;
        gap: 0.25rem;
    }

    .nav-menu a {
        padding: 0.75rem 0.5rem;
        font-size: 1rem;
    }

    .nav-cta {
        margin-left: 0;
        margin-top: 0.75rem;
        text-align: center;
        display: block !important;
    }

    .hero-content {
        padding: 7rem 1.5rem 3rem;
    }

    .hero-headline br {
        display: none;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        justify-content: center;
    }

    .about-grid,
    .location-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-images {
        max-width: 480px;
    }

    .about-img-secondary {
        right: 0;
    }

    .rooms-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }

    .cta-actions {
        flex-direction: column;
    }

    .cta-actions .btn {
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.125rem;
    }

    .about,
    .rooms,
    .location,
    .testimonials,
    .cta,
    .contact {
        padding: 4rem 0;
    }

    .about-img-main img {
        height: 320px;
    }

    .about-img-secondary {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 1rem;
        border: none;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

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