/* ============================================
   Sew Coastal - Styles
   Coastal Elegance Theme
   ============================================ */

/* CSS Variables */
:root {
    /* Primary Colors - Ocean & Sand */
    --navy: #1a3a52;
    --navy-dark: #0f2538;
    --ocean: #2d5a7b;
    --ocean-light: #4a7c9b;
    --seafoam: #7fb5b5;
    --sand: #e8dfd0;
    --sand-light: #f5f1eb;
    --cream: #faf8f5;
    --white: #ffffff;
    
    /* Accent Colors */
    --coral: #c4847a;
    --driftwood: #8b7355;
    
    /* Text Colors */
    --text-dark: #1a2a35;
    --text-body: #3d4f5f;
    --text-muted: #6b7c8a;
    --text-light: #94a3af;
    
    /* Typography */
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Raleway', 'Segoe UI', sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    --space-xxl: 8rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(26, 58, 82, 0.08);
    --shadow-md: 0 4px 20px rgba(26, 58, 82, 0.12);
    --shadow-lg: 0 8px 40px rgba(26, 58, 82, 0.16);
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

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

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

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-body);
    background-color: var(--cream);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.3;
    color: var(--navy);
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p {
    margin-bottom: 1em;
}

p:last-child {
    margin-bottom: 0;
}

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

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

.lead {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--text-dark);
    line-height: 1.8;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* Section Base */
.section {
    padding: var(--space-xxl) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ocean);
    margin-bottom: var(--space-sm);
}

.section-title {
    margin-bottom: var(--space-sm);
}

.title-underline {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--ocean), var(--seafoam));
    margin: 0 auto;
    position: relative;
}

.title-underline::after {
    content: '';
    position: absolute;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: var(--ocean);
    border-radius: 50%;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
}

.btn-primary {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

.btn-primary:hover {
    background: var(--ocean);
    border-color: var(--ocean);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

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

/* ============================================
   Navigation
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-sm) 0;
    transition: all var(--transition-base);
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: 0.75rem 0;
}

.nav.scrolled .nav-logo .logo-text {
    color: var(--navy);
}

.nav.scrolled .nav-link {
    color: var(--text-body);
}

.nav.scrolled .nav-link:hover {
    color: var(--ocean);
}

.nav.scrolled .hamburger,
.nav.scrolled .hamburger::before,
.nav.scrolled .hamburger::after {
    background: var(--navy);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.nav-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-heron {
    width: 28px;
    height: 38px;
    color: var(--white);
    transition: color var(--transition-base);
}

.nav.scrolled .nav-heron {
    color: var(--navy);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 500;
    font-style: italic;
    color: var(--white);
    transition: color var(--transition-base);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    list-style: none;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--white);
    padding: 0.5rem 0;
    position: relative;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: currentColor;
    transition: width var(--transition-base);
}

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    position: relative;
    transition: background var(--transition-fast);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: transform var(--transition-base);
}

.hamburger::before {
    top: -7px;
}

.hamburger::after {
    bottom: -7px;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
        z-index: 1001;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        flex-direction: column;
        justify-content: center;
        gap: var(--space-md);
        background: var(--navy);
        padding: var(--space-lg);
        transition: right var(--transition-base);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu.active .nav-link {
        color: var(--white);
    }
    
    .nav-toggle.active .hamburger {
        background: transparent;
    }
    
    .nav-toggle.active .hamburger::before {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active .hamburger::after {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--ocean) 100%);
    z-index: -2;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(127, 181, 181, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(74, 124, 155, 0.2) 0%, transparent 50%);
}

.hero-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, var(--cream), transparent);
    z-index: 1;
}

.hero-content {
    text-align: center;
    padding: var(--space-lg);
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-icon {
    margin-bottom: var(--space-md);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.heron-logo {
    width: auto;
    height: 140px;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
    object-fit: contain;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 400;
    font-style: italic;
    color: var(--white);
    margin-bottom: 0.25rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 3vw, 2rem);
    font-style: italic;
    color: var(--seafoam);
    margin-bottom: var(--space-sm);
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-location {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: var(--space-sm);
    animation: fadeInUp 1s ease-out 0.5s both;
}

.topsail-outline {
    width: 180px;
    height: 54px;
    margin-bottom: 0.5rem;
}

.location-text {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--seafoam);
}

.hero-tagline {
    font-size: 1.125rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    max-width: 400px;
    margin: 0 auto var(--space-lg);
    animation: fadeInUp 1s ease-out 0.55s both;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.thread-line {
    width: 100px;
    height: 2px;
    margin: var(--space-lg) auto 0;
    position: relative;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.thread-line::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        90deg,
        var(--seafoam) 0,
        var(--seafoam) 8px,
        transparent 8px,
        transparent 16px
    );
}

.scroll-indicator {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--white);
    opacity: 0.7;
    animation: bounce 2s infinite;
    z-index: 2;
}

.scroll-indicator span {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transform: rotate(45deg);
    margin: 0 auto;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ============================================
   About Section
   ============================================ */
.about {
    background: var(--cream);
}

.about-content {
    display: grid;
    gap: var(--space-xl);
}

.about-text {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-md);
}

.feature {
    text-align: center;
    padding: var(--space-lg);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.feature:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--space-sm);
    color: var(--ocean);
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature h3 {
    margin-bottom: var(--space-xs);
}

.feature p {
    font-size: 0.9375rem;
    color: var(--text-muted);
}

/* ============================================
   Services Section
   ============================================ */
.services {
    background: linear-gradient(180deg, var(--sand-light) 0%, var(--cream) 100%);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--sand), transparent);
}

.services-intro {
    max-width: 600px;
    margin: 0 auto var(--space-lg);
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-md);
}

.service-card {
    background: var(--white);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--ocean), var(--seafoam));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

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

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 64px;
    height: 64px;
    margin-bottom: var(--space-sm);
    color: var(--ocean);
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    margin-bottom: var(--space-xs);
}

.service-card p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin-bottom: var(--space-sm);
}

.service-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--ocean);
    background: var(--sand-light);
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-sm);
}

/* ============================================
   Schedule Section
   ============================================ */
.schedule {
    background: var(--cream);
}

.schedule-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: start;
}

@media (max-width: 900px) {
    .schedule-content {
        grid-template-columns: 1fr;
    }
}

.schedule-placeholder {
    text-align: center;
    padding: var(--space-xl);
    background: linear-gradient(135deg, var(--navy) 0%, var(--ocean) 100%);
    border-radius: var(--radius-xl);
    color: var(--white);
}

.placeholder-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-md);
    color: var(--seafoam);
}

.placeholder-icon svg {
    width: 100%;
    height: 100%;
}

.schedule-placeholder h3 {
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.schedule-placeholder p {
    opacity: 0.9;
    margin-bottom: var(--space-md);
}

.schedule-placeholder .btn-primary {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
}

.schedule-placeholder .btn-primary:hover {
    background: var(--seafoam);
    border-color: var(--seafoam);
    color: var(--navy);
}

.schedule-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.info-card {
    padding: var(--space-md);
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--ocean);
}

.info-card h4 {
    color: var(--navy);
    margin-bottom: var(--space-xs);
}

.info-card p {
    font-size: 0.9375rem;
    color: var(--text-muted);
}

/* ============================================
   Contact Section
   ============================================ */
.contact {
    background: linear-gradient(180deg, var(--cream) 0%, var(--sand-light) 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

@media (max-width: 900px) {
    .contact-content {
        grid-template-columns: 1fr;
    }
}

.contact-intro {
    margin-bottom: var(--space-md);
}

.contact-intro p {
    font-size: 1.125rem;
    color: var(--text-dark);
}

.contact-details {
    display: grid;
    gap: var(--space-sm);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm);
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.contact-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sand-light);
    border-radius: var(--radius-md);
    color: var(--ocean);
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-text {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.contact-value {
    font-size: 1rem;
    font-weight: 500;
    color: var(--navy);
}

a.contact-value:hover {
    color: var(--ocean);
}

/* Business Card Visual */
.contact-visual {
    display: flex;
    justify-content: center;
}

.business-card {
    position: relative;
    width: 300px;
    height: 300px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transform: rotate(3deg);
    transition: transform var(--transition-base);
}

.business-card:hover {
    transform: rotate(0deg) scale(1.02);
}

.card-pattern {
    position: absolute;
    inset: 0;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 10px,
            var(--sand-light) 10px,
            var(--sand-light) 11px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 10px,
            var(--sand-light) 10px,
            var(--sand-light) 11px
        );
    opacity: 0.5;
}

.card-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-md);
    text-align: center;
}

.card-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-style: italic;
    color: var(--navy);
    margin-bottom: 0.25rem;
}

.card-tagline {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-style: italic;
    color: var(--ocean);
    margin-bottom: var(--space-sm);
}

.card-name {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-body);
    margin-bottom: var(--space-md);
}

.card-icons {
    display: flex;
    gap: var(--space-md);
    color: var(--text-muted);
}

.card-needle {
    width: 40px;
    height: 60px;
}

.card-button {
    width: 40px;
    height: 40px;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--navy);
    color: var(--white);
    padding: var(--space-xl) 0 var(--space-md);
    position: relative;
    overflow: hidden;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.footer-brand {
    text-align: left;
}

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

.footer-heron {
    width: 32px;
    height: 44px;
    color: var(--seafoam);
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-style: italic;
    color: var(--white);
}

.footer-tagline {
    font-size: 0.875rem;
    color: var(--seafoam);
    margin-top: 0.25rem;
}

.footer-links {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--seafoam);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.25rem;
}

.footer-location {
    font-size: 0.8125rem;
}

.wave-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40px;
    color: var(--sand-light);
    transform: translateY(-99%);
}

.wave-decoration svg {
    width: 100%;
    height: 100%;
}

/* ============================================
   Animations & Utilities
   ============================================ */

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

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

/* Staggered Animation Delays */
.reveal:nth-child(1) { transition-delay: 0.1s; }
.reveal:nth-child(2) { transition-delay: 0.2s; }
.reveal:nth-child(3) { transition-delay: 0.3s; }
.reveal:nth-child(4) { transition-delay: 0.4s; }
.reveal:nth-child(5) { transition-delay: 0.5s; }
.reveal:nth-child(6) { transition-delay: 0.6s; }

/* Selection Color */
::selection {
    background: var(--ocean);
    color: var(--white);
}

/* Focus Styles */
:focus-visible {
    outline: 2px solid var(--ocean);
    outline-offset: 4px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .section {
        padding: var(--space-xl) 0;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-visual {
        order: -1;
    }
    
    .business-card {
        width: 260px;
        height: 260px;
        transform: rotate(0deg);
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .footer-logo-wrap {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .nav,
    .hero-cta,
    .scroll-indicator,
    .schedule-placeholder,
    .wave-decoration {
        display: none;
    }
    
    .section {
        padding: 2rem 0;
        break-inside: avoid;
    }
    
    body {
        color: #000;
        background: #fff;
    }
}

