@import url('https://fonts.googleapis.com/css2?family=Crimson+Text:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #000000;
    --secondary: #1a1a1a;
    --accent: #000000;
    --accent-light: #f5f5f5;
    --text: #1a1a1a;
    --text-light: #444;
    --text-muted: #777;
    --bg: #ffffff;
    --bg-alt: #f8f8f8;
    --border: #e0e0e0;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 40px rgba(0,0,0,0.12);
    --radius: 8px;
    --radius-lg: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.editorial-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Crimson Text', serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--primary);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    margin: 3rem 0 1.5rem;
}

h3 {
    font-size: clamp(1.3rem, 3vw, 1.6rem);
    margin: 2rem 0 1rem;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

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

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

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

.lead {
    font-family: 'Crimson Text', serif;
    font-size: 1.35rem;
    line-height: 1.6;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 2rem;
}

.highlight {
    background: linear-gradient(180deg, transparent 60%, #00000015 60%);
    padding: 0 4px;
    font-weight: 500;
}

.accent-text {
    color: var(--primary);
    font-weight: 600;
}

.drop-cap::first-letter {
    font-family: 'Crimson Text', serif;
    font-size: 4rem;
    float: left;
    line-height: 1;
    padding-right: 12px;
    padding-top: 4px;
    color: var(--primary);
    font-weight: 700;
}

.cta-block {
    background: var(--primary);
    color: var(--white);
    padding: 2.5rem;
    margin: 3rem 0;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 2px solid var(--primary);
}

.cta-block h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.cta-block p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 1.5rem;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
}

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

.btn-primary:hover {
    background: var(--bg-alt);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

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

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary);
}

.pull-quote {
    border-left: 4px solid var(--primary);
    padding: 1.5rem 2rem;
    margin: 2.5rem 0;
    background: var(--bg-alt);
    font-family: 'Crimson Text', serif;
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text);
}

.pull-quote cite {
    display: block;
    margin-top: 1rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-style: normal;
    color: var(--text-muted);
}

.inline-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-alt);
    padding: 8px 16px;
    border-radius: var(--radius);
    font-weight: 500;
    font-size: 0.9rem;
    border: 1px solid var(--border);
}

.inline-cta i {
    color: var(--primary);
}

.hero-section {
    padding: 4rem 0 2rem;
    text-align: center;
}

.hero-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.hero-image {
    margin: 2rem 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

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

.content-image {
    margin: 2.5rem 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.content-image img {
    width: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.content-image:hover img {
    transform: scale(1.02);
}

.image-caption {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.75rem;
    font-style: italic;
}

.gallery-section {
    margin: 3rem 0;
}

.gallery-grid {
    display: grid;
    gap: 16px;
    margin: 2rem 0;
}

.gallery-grid.two-col {
    grid-template-columns: repeat(2, 1fr);
}

.gallery-grid.three-col {
    grid-template-columns: repeat(3, 1fr);
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.gallery-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: var(--white);
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-masonry {
    column-count: 2;
    column-gap: 16px;
}

.gallery-masonry .gallery-item {
    break-inside: avoid;
    margin-bottom: 16px;
    aspect-ratio: auto;
}

.gallery-scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 1rem;
    -webkit-overflow-scrolling: touch;
}

.gallery-scroll .gallery-item {
    flex: 0 0 280px;
    scroll-snap-align: start;
}

.review-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin: 1.5rem 0;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Crimson Text', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    border: 2px solid var(--border);
}

.review-meta h4 {
    font-size: 1rem;
    margin: 0;
}

.review-meta .stars {
    color: #f5a623;
    font-size: 0.9rem;
}

.review-text {
    font-family: 'Crimson Text', serif;
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text);
    margin: 0;
}

.features-list {
    list-style: none;
    margin: 2rem 0;
}

.features-list li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list i {
    color: var(--primary);
    font-size: 1.25rem;
    margin-top: 2px;
}

.features-list strong {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--primary);
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.specs-table tr {
    border-bottom: 1px solid var(--border);
}

.specs-table td {
    padding: 1rem;
}

.specs-table td:first-child {
    font-weight: 500;
    color: var(--text-light);
    width: 40%;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.comparison-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 2px solid var(--border);
    text-align: center;
}

.comparison-item.active {
    border-color: var(--primary);
    background: var(--bg-alt);
}

.comparison-item h4 {
    margin-bottom: 0.5rem;
}

.comparison-item .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    z-index: 100;
    display: flex;
    justify-content: center;
    gap: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-cta .price-tag {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sticky-cta .price-tag .current {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

.sticky-cta .price-tag .original {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.sticky-cta .btn {
    padding: 12px 24px;
}

.footer {
    background: var(--primary);
    color: var(--white);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

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

.footer-section h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-nav {
    list-style: none;
}

.footer-nav li {
    margin-bottom: 0.5rem;
}

.footer-nav a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.footer-nav a:hover {
    color: var(--accent);
}

.footer-legal {
    background: rgba(0,0,0,0.2);
    padding: 2rem;
    border-radius: var(--radius);
    margin-bottom: 2rem;
}

.footer-legal h5 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
}

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

.disclaimer {
    background: rgba(255,255,255,0.05);
    padding: 1.5rem;
    border-radius: var(--radius);
    margin-bottom: 2rem;
    border-left: 3px solid var(--white);
}

.disclaimer p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    margin: 0;
}

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

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    margin: 0;
}

.page-header {
    background: var(--bg-alt);
    padding: 3rem 0;
    margin-bottom: 3rem;
    text-align: center;
}

.page-header h1 {
    margin: 0;
}

.page-content {
    padding-bottom: 4rem;
}

.page-content h2 {
    margin-top: 2.5rem;
}

.page-content ul, .page-content ol {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.page-content li {
    margin-bottom: 0.75rem;
}

.contact-info {
    background: var(--bg-alt);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin: 2rem 0;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-info-item i {
    color: var(--primary);
    font-size: 1.25rem;
    margin-top: 2px;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.95);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-height: 90vh;
    max-width: 90vw;
    object-fit: contain;
    border-radius: var(--radius);
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    transition: var(--transition);
}

.lightbox-close:hover {
    background: rgba(255,255,255,0.2);
}

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

.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}

@media (max-width: 768px) {
    .editorial-container {
        padding: 0 16px;
    }
    
    .gallery-grid.two-col,
    .gallery-grid.three-col {
        grid-template-columns: 1fr;
    }
    
    .gallery-masonry {
        column-count: 1;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cta-block {
        padding: 1.5rem;
    }
    
    .sticky-cta {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .sticky-cta .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    .lead {
        font-size: 1.15rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.85rem;
    }
}
