/* ==========================================================================
   CSS Variables & Tokens
   ========================================================================== */
   :root {
    /* Colors - Premium Teal / Ocean Palette */
    --color-primary: #128277;
    --color-primary-light: #1da396;
    --color-primary-dark: #0b5c54;
    --color-secondary: #004d40;
    
    /* Neutrals */
    --color-bg: #ffffff;
    --color-bg-alt: #f8fafc;
    --color-text-main: #1e293b;
    --color-text-muted: #64748b;
    --color-white: #ffffff;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 2rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-main);
    background-color: var(--color-bg);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-md);
    color: var(--color-secondary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.section-padding {
    padding: var(--space-2xl) 0;
}

.bg-light {
    background-color: var(--color-bg-alt);
}

.text-center {
    text-align: center;
}

/* ==========================================================================
   Typography Utilities
   ========================================================================== */
.section-header {
    margin-bottom: var(--space-xl);
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
}

.section-subtitle {
    color: var(--color-text-muted);
    max-width: 700px;
    margin: 0 auto var(--space-md);
    font-size: 1.125rem;
}

.title-line {
    width: 60px;
    height: 4px;
    background: var(--color-primary);
    margin: var(--space-sm) auto 0;
    border-radius: var(--radius-full);
}

.about .section-header .title-line,
.contact .section-header .title-line {
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-fast);
    border: 2px solid transparent;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
    box-shadow: 0 4px 14px rgba(18, 130, 119, 0.4);
}

.btn-primary:hover {
    background-color: var(--color-primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(18, 130, 119, 0.5);
}

.btn-outline-white {
    background-color: transparent;
    border-color: var(--color-white);
    color: var(--color-white);
}

.btn-outline-white:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
}

.btn-block {
    width: 100%;
}

/* ==========================================================================
   Navigation (Glassmorphism & High Contrast)
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: var(--space-lg) 0;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar.scrolled {
    padding: var(--space-sm) 0;
    background: rgba(2, 10, 8, 0.7); /* Deep dark green-black */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Syne', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -1px;
    z-index: 1001;
    transition: color var(--transition-fast);
}

.logo span {
    color: #128277;
}

.nav-links {
    display: flex;
    gap: var(--space-xl);
}

.nav-links a {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 0.5rem 0;
    font-family: 'Outfit', sans-serif;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #ffffff;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #128277;
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    color: #ffffff;
    cursor: pointer;
    z-index: 1001;
}

/* ==========================================================================
   Hero Section (Premium Editorial)
   ========================================================================== */
.hero.premium-editorial {
    position: relative;
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #000;
}

.hero-video-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    min-width: 100%; min-height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
    opacity: 0.8;
}

.hero-video-overlay-cinematic {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    /* Darker, cinematic gradient to give an ultra-premium feel and contrast for white text */
    background: linear-gradient(180deg, rgba(2, 10, 8, 0.4) 0%, rgba(2, 10, 8, 0.85) 100%),
                radial-gradient(circle at 70% 30%, transparent 0%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
}

.hero-content-editorial {
    position: relative;
    z-index: 10;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 8vh;
    height: 100%;
}

.hero-content-inner {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 25vh; /* To offset navbar and push down */
}

/* Refined Badge */
.premium-badge {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 3rem;
}

.premium-badge .badge-line {
    width: 40px;
    height: 1px;
    background-color: #128277;
    transition: width 0.4s ease;
}

.premium-badge .badge-text {
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Striking Typography */
.hero-title-premium {
    font-family: 'Syne', sans-serif;
    font-size: clamp(4rem, 8vw, 8.5rem);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.04em;
    color: #ffffff;
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
}

.hero-title-premium .accent-elegant {
    font-weight: 400;
    font-style: italic;
    color: #128277;
    font-family: 'Playfair Display', serif;
    letter-spacing: 0;
}

/* Subtitle */
.hero-subtitle-premium {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
    font-weight: 300;
    margin-bottom: 4rem;
}

/* Architectural Button */
.btn-architectural {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    padding: 8px 8px 8px 36px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #fff;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    gap: 32px;
}

.btn-architectural .btn-text {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-architectural .btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: #128277;
    color: #fff;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.4s ease;
}

.btn-architectural:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-architectural:hover .btn-icon {
    transform: scale(0.9) translateX(5px);
    background-color: #0d665d;
}

/* Minimalist Scroll Indicator */
.scroll-minimal {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    opacity: 0.6;
    padding-bottom: 2rem;
}

.scroll-minimal .scroll-text {
    font-family: 'Outfit', sans-serif;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #fff;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.scroll-minimal .scroll-line {
    width: 1px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.scroll-minimal .scroll-line::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 50%;
    background-color: #128277;
    animation: scrollLineDrop 2s infinite cubic-bezier(0.645, 0.045, 0.355, 1);
}

@keyframes scrollLineDrop {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(200%); }
}

@media (max-width: 1024px) {
    .hero-content-editorial { padding-bottom: 4vh; }
}

@media (max-width: 768px) {
    .hero-content-editorial { flex-direction: column; align-items: flex-start; justify-content: center; }
    .hero-content-inner { padding-top: 15vh; }
    .scroll-minimal { display: none; }
}

/* Advanced Slide Animations */
.text-slide {
    overflow: hidden;
    display: block;
}

.reveal-content {
    display: block;
    transform: translateY(100%);
    animation: slideUpReveal 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes slideUpReveal {
    to { transform: translateY(0); }
}

.fade-in-blur {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(20px);
    animation: fadeInBlur 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes fadeInBlur {
    to {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0);
    }
}

.delay-0 { animation-delay: 0.1s; }
.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.5s; }
.delay-3 { animation-delay: 0.7s; }
.delay-4 { animation-delay: 0.9s; }
.delay-5 { animation-delay: 1.1s; }

/* Responsive adjustments */
@media (max-width: 1024px) {
    .blob-bg {
        width: 450px; height: 450px;
    }
    .hero-title.light {
        font-size: 4.5rem;
    }
}

@media (max-width: 768px) {
    .hero.light-dynamic {
        flex-direction: column;
        justify-content: flex-start;
        height: auto;
        min-height: auto;
    }
    .blob-bg {
        position: relative;
        transform: none;
        top: auto; right: auto;
        width: 320px; height: 320px;
        margin: var(--space-xl) auto 0;
        order: 2;
    }
    .hero-content {
        align-items: center;
        text-align: center;
        padding-top: calc(var(--space-2xl) + var(--space-lg));
        order: 1;
    }
    .hero-title.light {
        align-items: center;
        font-size: 3.5rem;
    }
    .hero-subtitle.light {
        text-align: center;
    }
    .shape {
        display: none; /* Hide complex shapes on mobile for performance */
    }
}

/* ==========================================================================

/* ==========================================================================
   Editorial Global Classes
   ========================================================================== */
.editorial-section {
    background-color: #ffffff;
    position: relative;
}

.bg-dark-elegant {
    background-color: #020a08;
    color: #ffffff;
}

.section-kicker {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #128277;
    margin-bottom: 1rem;
    display: block;
}

.section-kicker.light {
    color: #0ea5e9;
}

.section-title-premium {
    font-family: 'Syne', sans-serif;
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
    color: #020a08;
    margin-bottom: 2rem;
}

.section-title-premium.light {
    color: #ffffff;
}

.italic-serif {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    color: #128277;
}

.bg-dark-elegant .italic-serif {
    color: #0ea5e9;
}

.section-header-editorial {
    max-width: 800px;
    margin-bottom: 5rem;
}

.section-subtitle-premium {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin-top: 2rem;
    font-weight: 300;
}

/* ==========================================================================
   About Section (Editorial)
   ========================================================================== */
.about-grid-premium {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8vw;
    align-items: center;
}

.about-body {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 3rem;
}

.about-features-premium {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.feature-number {
    font-family: 'Syne', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #128277;
}

.feature-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    color: #1e293b;
    font-weight: 500;
}

.about-image-premium {
    position: relative;
    padding: 2rem;
}

.about-image-premium img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 0;
    position: relative;
    z-index: 2;
    filter: contrast(1.1) saturate(0.9);
}

.image-accent-border {
    position: absolute;
    top: 0; right: 0; bottom: 4rem; left: 4rem;
    border: 1px solid #128277;
    z-index: 1;
}

/* ==========================================================================
   Seal Section (Minimal Grid)
   ========================================================================== */
.seal-grid-minimal {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background-color: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.05);
}

.seal-card {
    background-color: #020a08;
    padding: 4rem 3rem;
    transition: background-color 0.4s ease;
}

.seal-card:hover {
    background-color: rgba(255,255,255,0.02);
}

.seal-icon {
    font-family: 'Syne', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255,255,255,0.1);
    margin-bottom: 2rem;
    transition: color 0.4s ease;
}

.seal-card:hover .seal-icon {
    color: #0ea5e9;
}

.seal-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.seal-desc {
    font-family: 'Outfit', sans-serif;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    font-size: 1rem;
}

/* ==========================================================================
   Environment Banner (Cinematic)
   ========================================================================== */
.premium-banner {
    padding: 8vw 0;
    position: relative;
}

.banner-overlay-cinematic {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(0deg, rgba(2, 10, 8, 0.8) 0%, rgba(2, 10, 8, 0.4) 100%);
    z-index: 1;
}

.banner-content-premium {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.banner-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(3rem, 5vw, 4.5rem);
    color: #ffffff;
    margin-bottom: 2rem;
    font-weight: 800;
}

.banner-desc {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 3rem;
    line-height: 1.8;
}

/* ==========================================================================
   Products Showcase (Museum Style)
   ========================================================================== */
.product-showcase-premium {
    display: grid;
    grid-template-columns: 5fr 4fr;
    gap: 6vw;
    align-items: center;
}

.product-visual {
    position: relative;
    padding: 4vw;
}

.visual-backdrop {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 200px 200px 0 0;
    z-index: 0;
}

.product-visual img {
    position: relative;
    z-index: 1;
    width: 100%;
    filter: drop-shadow(0 30px 40px rgba(0,0,0,0.1));
}

.product-name {
    font-family: 'Syne', sans-serif;
    font-size: 3.5rem;
    color: #020a08;
    margin-bottom: 2rem;
}

.product-desc {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.product-specs {
    border-top: 1px solid #e2e8f0;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 1.5rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.spec-label {
    font-family: 'Outfit', sans-serif;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.spec-val {
    font-family: 'Syne', sans-serif;
    color: #020a08;
    font-weight: 600;
}

/* ==========================================================================
   Contact Section (Brutalist Form)
   ========================================================================== */
.contact-grid-premium {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8vw;
}

.contact-details {
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.detail-block {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.detail-label {
    font-family: 'Outfit', sans-serif;
    color: #0ea5e9;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
}

.detail-text {
    font-family: 'Syne', sans-serif;
    color: #ffffff;
    font-size: 1.25rem;
}

.editorial-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-top: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.form-group-premium {
    position: relative;
}

.form-group-premium input,
.form-group-premium textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding: 1rem 0;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    transition: border-color 0.3s ease;
}

.form-group-premium input:focus,
.form-group-premium textarea:focus {
    outline: none;
    border-bottom-color: #0ea5e9;
}

.form-group-premium label {
    position: absolute;
    top: 1rem; left: 0;
    color: rgba(255,255,255,0.4);
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-group-premium input:focus ~ label,
.form-group-premium textarea:focus ~ label,
.form-group-premium input:not(:placeholder-shown) ~ label,
.form-group-premium textarea:not(:placeholder-shown) ~ label {
    top: -1rem;
    font-size: 0.75rem;
    color: #0ea5e9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-architectural.full-width {
    width: 100%;
    justify-content: space-between;
    margin-top: 2rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background-color: #000;
    color: rgba(255,255,255,0.5);
    padding: var(--space-xl) 0;
    position: relative;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.developed-by {
    margin-top: var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.85rem;
    font-family: 'Outfit', sans-serif;
}

.developed-by img {
    height: 24px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.developed-by a:hover img {
    opacity: 1;
}

.back-to-top {
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}

.back-to-top:hover {
    background: #0ea5e9;
    border-color: #0ea5e9;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
    .about-grid-premium, .product-showcase-premium, .contact-grid-premium {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .image-accent-border { bottom: 2rem; left: 2rem; }
}

@media (max-width: 768px) {
    .seal-grid-minimal { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .section-title-premium { font-size: 2.5rem; }
    
    .hamburger { display: block; }
    .nav-links {
        position: fixed;
        top: 0; right: -100%;
        width: 100%; height: 100vh;
        background: #020a08;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s ease;
        z-index: -1;
    }
    .nav-links.active { right: 0; }
    .nav-links a { font-size: 1.5rem; }
}
