/* ==========================================================================
   1. VARIABLES & RESET (Configuración inicial)
   ========================================================================== */
:root {
    /* Paleta ajustada al boceto */
    --color-bg-main: #FCFAF5;      
    --color-bg-alt: #F5F0E6;       
    --color-primary: #96714D;      
    --color-text-dark: #2B2824;    
    --color-text-muted: #5E5E5B;   
    --color-border: #E5DFD3;       
    --color-dark-card: #3A3631;    
    
    /* Tipografías */
    --font-heading: 'Fraunces', serif;
    --font-body: 'DM Sans', sans-serif;
    
    /* Espaciados */
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px; 
}

/* ==========================================================================
   TRANSICIONES DE PÁGINA Y CORRECCIONES GENERALES
   ========================================================================== */
body {
    font-family: var(--font-body);
    background-color: var(--color-bg-main);
    color: var(--color-text-dark);
    line-height: 1.6;
    animation: fadeIn 0.5s ease-in-out forwards;
}

/* Esta etiqueta envuelve todo el contenido y evita la franja lateral blanca en celulares */
main {
    overflow-x: hidden;
}

body.fade-out {
    animation: fadeOut 0.5s ease-in-out forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

/* ==========================================================================
   2. TIPOGRAFÍA GLOBAL & BOTONES
   ========================================================================== */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--color-text-dark);
    margin-bottom: 1rem;
    font-weight: 400;
}

h1 { font-size: 2.5rem; line-height: 1.2; }
h2 { font-size: 2rem; line-height: 1.3; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.2rem; font-family: var(--font-body); font-weight: 700; }

p {
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--color-text-dark);
    transition: color 0.3s ease;
}

a:hover { color: var(--color-primary); }

.overline {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
}

/* Botones Principales */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    white-space: nowrap; 
}

.btn-primary {
    background-color: var(--color-primary);
    color: white;
    border: 1px solid var(--color-primary);
}
.btn-primary:hover {
    background-color: #7A5B3D;
}

.btn-outline {
    background-color: transparent;
    color: var(--color-text-muted);
    border: 1px solid var(--color-border);
}
.btn-outline:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.full-width { width: 100%; }

/* ==========================================================================
   3. LAYOUT & CLASES UTILITARIAS (MOBILE FIRST)
   ========================================================================== */
.container {
    width: 90%;
    max-width: 1280px; 
    margin: 0 auto;
    padding: var(--spacing-lg) 0;
}

.center-text { text-align: center; }

/* En móvil, todo se apila (columna) */
.split-layout {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* ==========================================================================
   4. COMPONENTES ESPECÍFICOS
   ========================================================================== */

/* --- Navbar (Header) --- */
.navbar {
    background-color: var(--color-bg-main);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 9999; 
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    position: relative;
    z-index: 1001; 
}
.logo {
    position: relative;
    z-index: 1002;
}
.logo img {
    height: 40px; 
    width: auto;
}

/* --- Botón del Menú Hamburguesa --- */
.mobile-menu-btn {
    position: relative;
    z-index: 1002; 
    background: none;
    border: none;
    font-size: 1.8rem; 
    color: var(--color-text-dark);
    cursor: pointer;
}

/* --- Menú Móvil (Full Screen) --- */
.nav-menu { 
    display: none; 
    position: fixed; 
    top: 0;
    left: 0;
    width: 100vw; 
    height: 100vh; 
    background-color: var(--color-bg-main);
    z-index: 1000; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center;     
    gap: 2.5rem;
    padding: 2rem;
}
.nav-menu.active { 
    display: flex; 
    animation: fadeInMenu 0.3s ease-in-out forwards; 
}

@keyframes fadeInMenu {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.nav-links { 
    list-style: none; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    gap: 1.8rem; 
}
.nav-links a {
    white-space: nowrap; 
    font-size: 1.5rem; 
    font-weight: 500;
}
.nav-right { 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    gap: 1.5rem; 
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    font-size: 1.2rem; 
}
.lang-switcher .active { font-weight: bold; color: var(--color-text-dark); }
.lang-switcher a { color: var(--color-text-muted); cursor: pointer; }
.btn-nav { padding: 0.8rem 1.5rem; }

/* --- Hero Section --- */
.hero { padding-top: 2rem; }
.badge-top {
    display: inline-block;
    padding: 0.4rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: 30px;
    font-size: 0.75rem;
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 1.5rem;
    background: transparent;
}
.italic-gold {
    font-style: italic;
    color: var(--color-primary);
    font-weight: 500;
}
.hero p.subtitle {
    font-size: 1.1rem;
    max-width: 90%;
    margin-bottom: 2rem;
}
.hero-buttons {
    display: flex;
    flex-wrap: wrap; 
    gap: 1rem;
    margin-bottom: 2rem;
}
.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
}

/* Hero: Cajita Certificación (Izquierda) */
.cert-card {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.cert-card img { width: 40px; height: auto; }
.cert-text { font-size: 0.75rem; line-height: 1.3; }
.cert-text strong { color: var(--color-text-dark); }

/* Hero: Columna Derecha (Imagen y cajita flotante) */
.hero-visual {
    position: relative;
    padding-bottom: 2rem; 
}
.image-wrapper { position: relative; width: 100%; }
.main-hero-img {
    width: 100%;
    border-radius: 24px; 
    object-fit: cover;
    display: block;
    aspect-ratio: 4 / 3;
}
.floating-quote {
    background: white;
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--color-text-dark);
    font-size: 0.95rem;
    line-height: 1.4;
    position: absolute;
    bottom: -15px; 
    left: 10px;
    right: 10px;
    text-align: center;
}

/* --- About Me Section --- */
.about-section {
    display: flex;
    flex-direction: column;
    gap: 4rem; 
    padding-top: 6rem;
}
.about-img {
    width: 100%;
    display: block;
}
.about-top, .about-middle {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.mt-2 { margin-top: 2.5rem; }
.quote-box {
    font-size: 1.2rem;
    font-family: var(--font-heading);
    font-style: italic;
    border-left: 3px solid var(--color-primary);
    padding-left: 1rem;
    margin: 2rem 0;
    color: var(--color-text-dark);
}
.feature-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border: 1px solid var(--color-border);
}
.feature-card h4 {
    font-size: 0.95rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    color: var(--color-text-dark);
}
.feature-card p {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 0;
}
.icon-small {
    width: 32px; height: 32px;
    background: var(--color-bg-alt);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem; color: var(--color-primary);
}

/* --- Philosophy Section --- */
.philosophy-section { padding-top: 4rem; }
.philosophy-content h2 {
    font-size: 2.2rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}
.italic-gray {
    display: block; 
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 300;
    color: var(--color-text-muted);
    font-size: 2.2rem;
    margin-top: 0.3rem;
}
.image-wrapper-ph {
    position: relative;
    z-index: 1;
}
.image-wrapper-ph::before {
    content: '';
    position: absolute;
    bottom: -20px; left: -20px;
    width: 60%; height: 60%;
    background-color: #F1EBE0; 
    border-radius: 40px;
    z-index: -1;
}
.philosophy-img {
    width: 100%;
    border-radius: 24px;
    object-fit: cover;
    display: block;
}
.divider {
    border: none;
    border-top: 1px solid var(--color-border);
    margin: 2rem 0 1.5rem 0;
}
.small-text {
    display: block;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}
.tags-wrapper { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.tags-wrapper.left-aligned { justify-content: flex-start; }
.tag {
    background-color: #F3EFE6; 
    border: none; 
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--color-text-dark);
}

/* --- Survival Section (Who I Help) --- */
.survival-section { padding-top: 6rem; }
.survival-text h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}
.alert-box {
    background-color: #F3EFE6;
    padding: 1.5rem;
    border-radius: 12px;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-top: 2.5rem;
    line-height: 1.6;
}
.alert-box strong { color: var(--color-text-dark); }
.survival-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 1rem;
}
.survival-card {
    background: white;
    padding: 1.5rem 0.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03); 
    text-align: center;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 0.6rem;
}
.survival-card span { font-size: 0.85rem; color: var(--color-text-dark); }
.icon-surv { font-size: 1.5rem; }

/* --- Services Section --- */
.services-section {
    padding-top: 6rem;
    padding-bottom: 4rem;
}
.services-grid {
    display: grid;
    grid-template-columns: 1fr; /* 1 columna en móvil */
    gap: 1.5rem;
    margin-top: 3rem;
}
.service-card {
    background: white;
    padding: 2.5rem; 
    border-radius: 16px;
    border: 1px solid var(--color-border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
}
.service-content { flex-grow: 1; }
.service-header {
    display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem;
}
.service-card h3 { font-size: 1.3rem; margin-bottom: 0.3rem; }
.tagline {
    display: block; font-size: 0.85rem; color: var(--color-text-muted); margin-bottom: 1.5rem;
}
.time {
    font-size: 0.75rem; color: var(--color-text-muted); text-transform: uppercase; letter-spacing: 0.5px;
}
.icon-circle.small {
    width: 36px; height: 36px; font-size: 1rem; background: #F8F5F0; margin-bottom: 0;
}
.service-list { margin-top: 1.5rem; list-style: none; }
.service-list li {
    font-size: 0.85rem; color: var(--color-text-muted); margin-bottom: 0.8rem; display: flex; align-items: flex-start; gap: 8px;
}
.service-list li::before { content: "•"; color: var(--color-text-dark); }

.service-card.dark { background: var(--color-dark-card); border: none; }
.service-card.dark h3, .service-card.dark p, .service-card.dark li, .service-card.dark .tagline, .service-card.dark .time { color: white; }
.service-card.dark li::before { color: white; }
.dark-icon { background: rgba(255,255,255,0.05) !important; }
.status-wrapper { display: flex; align-items: center; gap: 12px; }
.sold-out {
    font-size: 0.65rem; background: rgba(255,255,255,0.1); padding: 4px 10px; border-radius: 12px; color: white; letter-spacing: 1px;
}

.btn-service {
    width: 100%; margin-top: 2rem; background: transparent; border: 1px solid var(--color-border); color: var(--color-text-dark);
}
.btn-service:hover { background: var(--color-bg-alt); border-color: var(--color-border); }
.btn-service.dark-btn { background: #4C4740; border: none; color: white; }
.btn-service.dark-btn:hover { background: #5E5851; }

/* --- Generic Cards (My Approach & The Science) --- */
.pillars-section, .science-section {
    padding-top: 6rem;
}

.grid-3, .grid-4 {
    display: grid;
    grid-template-columns: 1fr; /* 1 columna en celulares */
    gap: 1.5rem;
    margin-top: 2rem;
}

.card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--color-border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.icon-circle {
    width: 45px;
    height: 45px;
    background: var(--color-bg-alt);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
}

.card h4 {
    font-size: 1.1rem;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    color: var(--color-text-dark);
}

.card ul {
    list-style: none;
}

.card ul li {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.card ul li::before {
    content: "•";
    color: var(--color-primary); 
    font-weight: bold;
}

/* --- Timeline (The Client Journey) --- */
.timeline-section { padding-top: 6rem; }
.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 4rem auto 0 auto;
}
.timeline-line {
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--color-border);
}
.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 2rem;
}
.timeline-dot {
    position: absolute;
    left: 4px;
    top: 0;
    width: 40px;
    height: 40px;
    background-color: white;
    border: 2px solid var(--color-border);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    z-index: 2;
}
.timeline-content {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--color-border);
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    text-align: left;
}
.step-label { font-size: 0.75rem; color: var(--color-text-muted); font-weight: bold; letter-spacing: 1px; }
.timeline-content h4 { margin-top: 0.5rem; margin-bottom: 0.5rem; font-size: 1.1rem;}
.timeline-content p { font-size: 0.9rem; margin: 0; }

/* --- Testimonios (Client Results) --- */
.reviews-section { padding-top: 6rem; }
.tags-wrapper.center-aligned { justify-content: center; }
.tag.active-tag { background-color: var(--color-dark-card); color: white; }
.review-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--color-border);
    text-align: left;
    position: relative;
}
.quote-icon { font-family: var(--font-heading); font-size: 4rem; color: var(--color-border); line-height: 0; position: absolute; top: 30px; left: 20px;}
.stars { color: #D4AF37; font-size: 1.2rem; margin-bottom: 1rem; margin-top: 1rem;}
.review-text { font-family: var(--font-heading); font-style: italic; font-size: 1rem; color: var(--color-text-dark); margin-bottom: 2rem;}
.client-info { display: flex; align-items: center; gap: 12px;}
.client-avatar { width: 40px; height: 40px; background: var(--color-bg-alt); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: bold; color: var(--color-primary);}
.client-info span { font-size: 0.75rem; color: var(--color-text-muted);}
.notice-box { background: var(--color-bg-alt); padding: 1rem; border-radius: 8px; font-size: 0.85rem; color: var(--color-text-muted); display: inline-block;}

/* --- Mid Quote CTA --- */
.mid-quote-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden; 
}
.big-quote {
    font-size: 2.2rem;
    line-height: 1.3;
    max-width: 900px;
    margin: 0 auto 1rem auto;
}
.mid-quote-section::before {
    content: '';
    position: absolute;
    top: 20%; right: -5%;
    width: 300px; height: 300px;
    background-color: var(--color-bg-alt);
    border-radius: 50%;
    z-index: -1;
}

/* --- FAQ (Acordeón Nativo) --- */
.faq-section { padding-top: 6rem; padding-bottom: 6rem; }
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}
.faq-accordion details {
    margin-bottom: 1rem;
    background: white;
    border-radius: 8px;
    border: 1px solid var(--color-border);
}
.faq-accordion summary {
    padding: 1.2rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-accordion summary::-webkit-details-marker { display: none; }
.faq-accordion summary::after {
    content: "⌄";
    font-size: 1.5rem;
    color: var(--color-text-muted);
    transition: transform 0.3s;
}
.faq-accordion details[open] summary::after {
    transform: rotate(180deg);
}
.faq-content {
    padding: 0 1.5rem 1.5rem 1.5rem;
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

/* --- CTA de Fondo (Imagen de velas) --- */
.cta-background {
    background: linear-gradient(rgba(43, 40, 36, 0.85), rgba(43, 40, 36, 0.85)), url('../img/meditation-candle-space.webp');
    background-size: cover;
    background-position: center;
    padding: 6rem 0;
}

/* --- Contacto --- */
.contact-section { padding-top: 6rem; padding-bottom: 6rem;}
.contact-card {
    display: flex; align-items: flex-start; gap: 15px; margin-bottom: 1.5rem;
}
.contact-card strong { font-family: var(--font-heading); font-size: 1.1rem;}
.contact-form-wrapper {
    background: white; padding: 2.5rem; border-radius: 16px; border: 1px solid var(--color-border); box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}
.form-group { margin-bottom: 1.5rem; display: flex; flex-direction: column;}
.form-group label { font-size: 0.85rem; font-weight: bold; margin-bottom: 0.5rem;}
.form-group input, .form-group select, .form-group textarea {
    padding: 0.8rem; border: 1px solid var(--color-border); border-radius: 8px; font-family: var(--font-body); font-size: 0.95rem; background: var(--color-bg-main);
}
.form-row { display: flex; flex-direction: column; gap: 1.5rem; }
.form-disclaimer { font-size: 0.75rem; color: var(--color-text-muted); text-align: center; margin-top: 1rem;}

/* --- Footer Oscuro --- */
.main-footer { background: #2A2622; color: white; overflow-x: hidden; }
.disclaimer-bar { background: #1E1B18; font-size: 0.8rem; color: #A9A59F; padding: 1rem 0;}
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-bottom: 2rem;}
.footer-links h4 { color: white; font-family: var(--font-body); font-size: 0.85rem; letter-spacing: 1px; margin-bottom: 1.5rem;}
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 0.8rem;}
.footer-links a { color: #A9A59F; font-size: 0.85rem;}
.footer-links a:hover { color: white; }
.footer-bottom { border-top: 1px solid #3A3631; padding: 1.5rem 0; font-size: 0.75rem; color: #A9A59F; text-align: center; margin-top: 2rem;}

/* --- NUEVA PASTILLA DEL FOOTER --- */
.footer-cert {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    margin-top: 1.5rem;
}
.footer-cert img { width: 40px; height: auto; }
.footer-cert .cert-text { font-size: 0.75rem; line-height: 1.3; color: var(--color-text-dark); }
.footer-cert .cert-text strong { color: var(--color-text-dark); font-size: 0.85rem; }


.mt-1 { margin-top: 1rem; }

/* ==========================================================================
   5. MEDIA QUERIES (DESKTOP & TABLET)
   ========================================================================== */
@media (min-width: 768px) {
    
    .mobile-menu-btn { display: none; } 
    .nav-container { flex-direction: row; }
    .nav-menu {
        display: flex !important; 
        position: static;
        width: auto; 
        height: auto;
        flex-direction: row; 
        align-items: center; 
        gap: 2rem; 
        padding: 0;
        background: transparent;
        animation: none; 
    }
    .nav-links { flex-direction: row; gap: 1.5rem; }
    .nav-links a { font-size: 0.95rem; }
    .nav-right { flex-direction: row; align-items: center; gap: 1.5rem; }
    .lang-switcher { font-size: 1rem; }

    .split-layout {
        display: grid;
        grid-template-columns: 1fr 1fr; 
        gap: 4rem; 
        align-items: center; 
    }
    
    .hero-content, .about-content, .text-content, .philosophy-content, .survival-text { padding-right: 0; }
    .hero-buttons { flex-direction: row; align-items: center; }

    .floating-quote {
        width: 320px; 
        bottom: 20px; 
        left: -60px;  
        right: auto;
        text-align: left;
    }
    
    h1 { font-size: 3.5rem; line-height: 1.1; }

    .about-top, .about-middle {
        display: grid;
        grid-template-columns: 1fr 1fr; 
        gap: 4rem;
        align-items: start; 
    }
    
    .features-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
    .survival-grid { grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
    .services-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    
    .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
    .footer-bottom { display: flex; justify-content: space-between; text-align: left;}

    .timeline-line { left: 50%; transform: translateX(-50%); }
    .timeline-item { width: 50%; padding: 0; }
    .timeline-item.left { left: 0; padding-right: 40px; text-align: right; }
    .timeline-item.right { left: 50%; padding-left: 40px; text-align: left; }
    .timeline-item.left .timeline-dot { right: -20px; left: auto; }
    .timeline-item.right .timeline-dot { left: -20px; right: auto; }
    
    .big-quote { font-size: 3rem; }
    .form-row { flex-direction: row; }
    .form-row .form-group { flex: 1; }
}

.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(2, 1fr); }

@media (min-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(4, 1fr); }
}