/* =========================================
   TUUN Website - Design System & CSS
   Wabi-sabi / Minimalist / Industrial
========================================= */

:root {
    /* Colors */
    --clr-bg: #f5f4ef;          /* Warm, light sand/grey - main background */
    --clr-bg-alt: #ebeae6;      /* Slightly darker background for contrast sections */
    --clr-text: #2a2a28;        /* Soft charcoal/black for text */
    --clr-text-light: #6a6a68;  /* Lighter text for metadata/descriptions */
    --clr-accent: #9d968d;      /* Warm concrete / greige accent */
    --clr-white: #ffffff;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    
    /* Spacing */
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 8rem;
    --spacing-section: 120px;
    --spacing-container: 2rem;
    
    /* Layout */
    --container-width: 1200px;
    --radius: 2px; /* Very subtle radius, almost sharp to keep industrial feel */
    
    /* Transitions */
    --trans-fast: 0.3s ease;
    --trans-slow: 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

/* =========================================
   Resets & Base Styles
========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

body {
    background-color: var(--clr-bg);
    color: var(--clr-text);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

::selection {
    background-color: var(--clr-accent);
    color: var(--clr-white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

/* =========================================
   Typography
========================================= */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: var(--space-sm);
}

h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: var(--space-sm);
}

.lead {
    font-size: 1.2rem;
    color: var(--clr-text-light);
}

.text-center { text-align: center; }
.mb-4 { margin-bottom: var(--space-lg); }
.mb-5 { margin-bottom: 5rem; }
.mt-4 { margin-top: var(--space-lg); }
.mt-3 { margin-top: 1.5rem; }
.mt-2 { margin-top: var(--space-ms); }

/* =========================================
   Layout & Utilities
========================================= */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-container);
}

.section {
    padding: var(--spacing-section) 0;
}

.bg-light { background-color: var(--clr-bg-alt); }

.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

@media (min-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr 1fr;
        gap: 6rem;
    }
}

/* Zigzag Layout */
.zigzag-row {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    align-items: center;
    margin-bottom: var(--spacing-section);
}

.zigzag-row:last-child {
    margin-bottom: 0;
}

.zigzag-row .content, 
.zigzag-row .image {
    width: 100%;
}

.zigzag-row .image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

@media (min-width: 992px) {
    .zigzag-row {
        flex-direction: row;
        gap: 8rem;
    }

    .zigzag-row.reverse {
        flex-direction: row-reverse;
    }

    .zigzag-row .content, 
    .zigzag-row .image {
        width: 50%;
    }
}

/* Moodboard Collage */
.moodboard-collage {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 1rem;
    margin: 2rem 0;
}

.moodboard-item {
    overflow: hidden;
    position: relative;
}

.moodboard-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.moodboard-item:hover img {
    transform: scale(1.05);
}

.moodboard-item.tall {
    grid-row: span 2;
}

@media (min-width: 768px) {
    .moodboard-collage {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: 400px;
        gap: 1.5rem;
    }
    
    .moodboard-item.tall {
        grid-row: span 1;
    }
}

/* Parallax & Section Backgrounds */
.parallax-bg {
    position: relative;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    color: white;
}

.parallax-bg::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.4);
}

.parallax-bg .container {
    position: relative;
    z-index: 1;
}

.content-box {
    background: white;
    padding: 4rem;
    color: var(--clr-text);
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

/* Visual Dividers */
.large-glyph-divider {
    padding: 6rem 0;
    display: flex;
    justify-content: center;
    opacity: 0.1;
}

.large-glyph-divider svg {
    width: 120px;
    height: 120px;
}

.grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

@media (min-width: 992px) {
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.grid-4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

@media (min-width: 768px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .grid-4 {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

.align-center { align-items: center; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 1px solid var(--clr-text);
    background: transparent;
    color: var(--clr-text);
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--trans-fast);
}

.btn:hover {
    background: var(--clr-text);
    color: var(--clr-bg);
}

.btn-full { width: 100%; }

/* =========================================
   Navigation
========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 100;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(245, 244, 239, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.nav-links {
    display: none;
    list-style: none;
    align-items: center;
    gap: 3rem;
}

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

.nav-links a {
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -4px;
    left: 0;
    background-color: var(--clr-text);
    transition: width 0.3s ease;
}

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

.social-link::after { display: none !important; }
.social-link:hover { opacity: 0.6; }

/* Hamburger */
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 101;
}

@media (min-width: 768px) {
    .hamburger { display: none; }
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--clr-text);
    transition: 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    transform: rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--clr-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
    transition: var(--trans-slow);
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.mobile-nav-links {
    list-style: none;
    text-align: center;
}

.mobile-nav-links li { margin: 2rem 0; }

.mobile-nav-links a {
    font-family: var(--font-heading);
    font-size: 2rem;
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.85) contrast(1.1); /* Slightly moody */
    z-index: -2;
    transform: scale(1.05); /* For parallax/entrance */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(245,244,239,0.3) 0%, rgba(245,244,239,0.8) 100%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    padding-top: 5rem;
}

.hero p {
    max-width: 500px;
    margin: 1.5rem auto 3rem;
    font-size: 1.2rem;
}

/* =========================================
   Philosophy Block
========================================= */
.quote-box {
    border-left: 1px solid var(--clr-accent);
    padding-left: 2rem;
    margin-top: 2rem;
}

.quote-box q {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-style: italic;
    color: var(--clr-text);
}

/* Section Divider */
.section-divider {
    height: 50vh;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

/* =========================================
   Features Grid (Proč TUUN)
========================================= */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
}

@media (min-width: 1024px) {
    .features-grid { grid-template-columns: repeat(4, 1fr); }
}

.feature-card {
    background: var(--clr-white);
    padding: 3rem 2rem;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--trans-fast);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-card h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--clr-text);
}

.feature-card h4 small {
    font-size: 0.9rem;
    font-family: var(--font-body);
    font-weight: 300;
    opacity: 0.6;
}

/* =========================================
   Comparison Table & Variants
========================================= */
.comparison-wrapper {
    overflow-x: auto;
    background: var(--clr-white);
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.02);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    min-width: 600px;
}

.comparison-table th, 
.comparison-table td {
    padding: 1.5rem 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.comparison-table th {
    font-family: var(--font-body);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    color: var(--clr-accent);
}

.comparison-table td strong {
    font-family: var(--font-body);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 1.1rem;
}

.comparison-table td {
    vertical-align: middle;
}

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

@media (min-width: 992px) {
    .grid-2 {
        grid-template-columns: 1fr 1fr;
    }
}

.variant-group .feature-card h4 {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 300;
    font-size: 1.3rem;
}

/* =========================================
   Gallery / Portfolio
========================================= */
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 600px) {
    .gallery-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 992px) {
    .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 3rem; }
}

.gallery-item {
    cursor: pointer;
}

.img-wrapper {
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/5;
    background-color: var(--clr-accent);
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-item:hover .img-wrapper img {
    transform: scale(1.05);
}

.gallery-info {
    margin-top: 1.5rem;
    text-align: center;
}

.gallery-info h3 { margin-bottom: 0.2rem; }
.gallery-info p { 
    color: var(--clr-text-light); 
    font-size: 0.9rem;
    font-style: italic; 
}

.bg-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-white);
    font-family: var(--font-heading);
    font-style: italic;
}

/* =========================================
   Product Modal / Detail okna
========================================= */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.85); /* Tmavý polopropustný overlay */
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.modal.active {
    display: flex; /* Používáme flex k vycentrování */
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.modal-content {
    background-color: var(--clr-bg);
    margin: auto;
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    border-radius: var(--radius);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.modal.active .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    color: var(--clr-text);
    font-size: 2rem;
    font-weight: 300;
    cursor: pointer;
    z-index: 10;
    transition: var(--trans-fast);
}

.close-modal:hover {
    color: var(--clr-text-light);
    transform: scale(1.1);
}

.modal-grid {
    display: grid;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .modal-grid { grid-template-columns: 1fr 1fr; }
}

.modal-gallery {
    background-color: var(--clr-accent);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#modal-main-img {
    width: 100%;
    height: 400px; /* Fixní výška pro konzistenci */
    object-fit: cover;
    border: 1px solid rgba(0,0,0,0.05);
}

.modal-thumbnails {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

.modal-thumb {
    width: 70px;
    height: 70px;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.6;
    transition: var(--trans-fast);
    border: 1px solid transparent;
}

.modal-thumb.active, .modal-thumb:hover {
    opacity: 1;
    border-color: var(--clr-text);
}

.modal-info {
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
}

.modal-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.modal-desc {
    color: var(--clr-text-light);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.modal-specs {
    margin-bottom: 2rem;
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: 1rem;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px dashed rgba(0,0,0,0.05);
}

.spec-label {
    font-weight: 500;
}

.spec-value {
    color: var(--clr-text-light);
}

.modal-price {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 2rem;
    margin-top: auto; /* Push down */
}

/* =========================================
   Forms
========================================= */
.contact-form {
    background: var(--clr-white);
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--clr-text-light);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: none;
    border-bottom: 1px solid #ddd;
    background: transparent;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--trans-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--clr-text);
}

.form-status { font-size: 0.9rem; text-align: center; }

/* Technické údaje (Monospace) */
.tech-spec {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    letter-spacing: -0.01em;
    opacity: 0.8;
}

/* Mayské Glyfy (SVG) */
.mayan-glyph {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--clr-accent);
    opacity: 0.8;
    flex-shrink: 0;
}

.mayan-glyph svg {
    width: 100%;
    height: 100%;
    stroke-width: 2px;
}

.bg-dark .mayan-glyph {
    color: var(--clr-white);
    opacity: 0.6;
}

/* Care Section Specifics */
.care-card {
    background: white;
    padding: 2.5rem;
    border: 1px solid rgba(0,0,0,0.03);
    height: 100%;
    transition: transform 0.3s ease;
}

.care-card:hover {
    transform: translateY(-5px);
    border-color: var(--clr-accent-light);
}

.care-card h3 {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    font-family: var(--font-body);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.care-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--clr-text-light);
}

.care-card ul {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.care-card li {
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    padding-left: 1.2rem;
    position: relative;
}

.care-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--clr-accent);
}
.footer {
    background: var(--clr-text);
    color: var(--clr-white);
    padding: 4rem 0 2rem;
}

.footer .border-top { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 4rem; }

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-column h4 {
    color: var(--clr-accent);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    font-family: var(--font-body);
}

.footer-column p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.7);
    margin-bottom: 0;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-style: italic;
    opacity: 0.6;
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-social a { 
    color: var(--clr-white); 
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-social a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-bottom {
    font-size: 0.8rem;
    opacity: 0.4;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* =========================================
   Animations
========================================= */
/* Logo Styles */
.nav-logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.nav-logo-img:hover {
    opacity: 0.8;
}

.hero-logo-wrapper {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.hero-logo {
    width: 120px;
    height: auto;
    filter: invert(1) brightness(1.5); /* Invertuje černou na bílou pro hero sekci */
    border-radius: 0;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    opacity: 0.6;
    filter: grayscale(1);
    transition: opacity 0.3s ease;
}

.footer-logo-img:hover {
    opacity: 1;
}

/* Setup */
.reveal-text {
    opacity: 0;
    transform: translateY(30px);
}

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.collection-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    background: #fdfdfd;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.collection-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.product-sketch-wrapper {
    width: 100%;
    height: 180px;
    background: #fbfbfb;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0,0,0,0.03);
}

.product-sketch {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    mix-blend-mode: multiply;
    opacity: 0.9;
}


/* Úprava karet pro lepší zobrazení s náčrtky */
.product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 2.5rem;
}

.product-card .price-tag {
    margin-top: auto;
    padding-top: 1.5rem;
}


/* Triggers */
.header-loaded .reveal-text {
    animation: revealUp 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.fade-up.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Delays */
.delay-1 { animation-delay: 0.2s; transition-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; transition-delay: 0.4s; }

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

.hidden-onload { opacity: 0; }
.loaded .hidden-onload { opacity: 1; }

/* =========================================
   Utility Classes
   ========================================= */
.text-center { text-align: center; }
.max-width-800 { max-width: 800px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mb-4 { margin-bottom: 2rem; }
.mt-4 { margin-top: 2rem; }
.d-block { display: block; }

/* =========================================
   Story Section
   ========================================= */
.story-content {
    line-height: 1.8;
    color: var(--clr-text);
}

.story-content p {
    margin-bottom: 1.5rem;
}

.story-content .lead {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--clr-accent);
}
