/* ============================================
   Ketteler Eyecare — Classic & Elegant Style
   Forest Green + Off-White Palette
   ============================================ */

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

:root {
    --forest-dark: #1a3c2a;
    --forest: #2d5a3f;
    --forest-medium: #3d7a56;
    --forest-light: #5a9e74;
    --forest-pale: #e8f0eb;
    --forest-ultra-pale: #f4f7f5;
    
    --off-white: #f7f5f0;
    --cream: #faf8f4;
    --warm-white: #fefdfb;
    --sand: #e8e4dc;
    --sand-light: #f0ece4;
    
    --text-dark: #1a1a18;
    --text-body: #2e2e2a;
    --text-muted: #6b6b64;
    --text-light: #9a9a92;
    
    --gold: #b8943e;
    --gold-light: #d4af5e;
    
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Lato', 'Helvetica Neue', Arial, sans-serif;
    
    --transition-smooth: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: 0.2s ease;
}

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

body {
    font-family: var(--font-sans);
    color: var(--text-body);
    background-color: var(--cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.2;
    color: var(--text-dark);
}

.section-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--forest-medium);
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--forest-dark);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.section-header--centered {
    text-align: center;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 1rem 2.25rem;
    border: 2px solid transparent;
    border-radius: 0;
    cursor: pointer;
    transition: all var(--transition-smooth);
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--forest-dark);
    color: var(--off-white);
    border-color: var(--forest-dark);
}

.btn-primary:hover {
    background-color: var(--forest);
    border-color: var(--forest);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26, 60, 42, 0.25);
}

.btn-outline {
    background-color: transparent;
    color: var(--forest-dark);
    border-color: var(--forest-dark);
}

.btn-outline:hover {
    background-color: var(--forest-dark);
    color: var(--off-white);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 248, 244, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--sand);
    transition: all var(--transition-smooth);
}

.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--forest-dark);
    letter-spacing: 0.02em;
}

.logo-icon {
    color: var(--forest-medium);
}

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

.nav-links a {
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color var(--transition-fast);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--forest-medium);
    transition: width var(--transition-smooth);
}

.nav-links a:hover {
    color: var(--forest-dark);
}

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

.nav-cta {
    background: var(--forest-dark);
    color: var(--off-white) !important;
    padding: 0.625rem 1.5rem;
    border: none;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: var(--forest);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

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

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--forest-dark);
    transition: all var(--transition-fast);
}

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

.mobile-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}

.mobile-toggle[aria-expanded="true"] .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.mobile-toggle[aria-expanded="true"] .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--cream);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    transform: translateX(100%);
    transition: transform var(--transition-smooth);
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--forest-dark);
    padding: 0.5rem;
}

.mobile-menu ul {
    list-style: none;
    text-align: center;
}

.mobile-link {
    display: block;
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--forest-dark);
    padding: 1rem 0;
    transition: color var(--transition-fast);
}

.mobile-link:hover {
    color: var(--forest-medium);
}

.mobile-cta-link {
    margin-top: 1rem;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 2px solid var(--forest-dark);
    padding: 0.75rem 2rem;
}

/* --- Hero --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 0 0;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    background: var(--forest-pale);
    z-index: 0;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    padding-right: 2rem;
}

.hero-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--forest-medium);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero-eyebrow::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--forest-medium);
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 400;
    line-height: 1.08;
    color: var(--forest-dark);
    margin-bottom: 1.75rem;
}

.hero-headline em {
    font-style: italic;
    color: var(--forest-medium);
}

.hero-subheadline {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--forest-dark);
    font-weight: 600;
}

.stat-label {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--sand);
}

.hero-image {
    position: relative;
    height: 85vh;
    max-height: 800px;
}

.hero-image-wrapper {
    position: relative;
    height: 100%;
    overflow: hidden;
}

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

.hero-image-accent {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 200px;
    height: 200px;
    border: 2px solid var(--forest-medium);
    z-index: -1;
    opacity: 0.3;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-light);
    animation: float 2s ease-in-out infinite;
}

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

/* --- Services --- */
.services {
    padding: 8rem 0;
    background: var(--warm-white);
}

.section-header {
    margin-bottom: 4rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.service-card {
    padding: 3rem;
    background: var(--cream);
    border: 1px solid var(--sand);
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--forest-medium);
    transition: height var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(26, 60, 42, 0.08);
    border-color: var(--forest-pale);
}

.service-card:hover::before {
    height: 100%;
}

.service-icon {
    color: var(--forest-medium);
    margin-bottom: 1.5rem;
}

.service-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--forest-dark);
}

.service-description {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: var(--text-muted);
}

/* --- About --- */
.about {
    padding: 8rem 0;
    background: var(--cream);
    overflow: hidden;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image-col {
    position: relative;
}

.about-image-main {
    position: relative;
    z-index: 2;
}

.about-image-main img {
    width: 100%;
    height: 700px;
    object-fit: cover;
}

.about-image-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    z-index: 3;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.about-image-secondary img {
    width: 280px;
    height: 210px;
    object-fit: cover;
}

.about-accent-line {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 120px;
    height: 120px;
    border-top: 2px solid var(--forest-medium);
    border-left: 2px solid var(--forest-medium);
    opacity: 0.4;
    z-index: 1;
}

.about-content {
    padding-left: 1rem;
}

.about-text {
    font-size: 1.0625rem;
    line-height: 1.85;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--sand);
}

.value-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--text-body);
}

.value-icon {
    color: var(--forest-medium);
    flex-shrink: 0;
}

/* --- Frames --- */
.frames {
    padding: 8rem 0;
    background: var(--forest-dark);
}

.frames .section-eyebrow {
    color: var(--forest-light);
}

.frames .section-title {
    color: var(--off-white);
}

.frames .section-subtitle {
    color: rgba(247, 245, 240, 0.6);
}

.frames-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 1.25rem;
    margin-bottom: 3rem;
}

.frame-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.frame-item--large {
    grid-column: span 5;
    grid-row: span 2;
}

.frame-item--wide {
    grid-column: span 7;
}

.frame-item:not(:first-child) {
    grid-column: span 3;
}

.frame-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.frame-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 60, 42, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

.frame-overlay span {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--off-white);
    letter-spacing: 0.05em;
    border-bottom: 1px solid rgba(247, 245, 240, 0.5);
    padding-bottom: 0.25rem;
}

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

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

.frames-cta {
    text-align: center;
}

.frames-cta .btn-primary {
    background: transparent;
    border-color: var(--off-white);
    color: var(--off-white);
}

.frames-cta .btn-primary:hover {
    background: var(--off-white);
    color: var(--forest-dark);
}

/* --- Visit --- */
.visit {
    padding: 8rem 0;
    background: var(--warm-white);
}

.visit-container {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 4rem;
    align-items: stretch;
}

.visit-content {
    padding-right: 2rem;
}

.visit-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 3rem 0;
    padding: 2.5rem;
    background: var(--cream);
    border: 1px solid var(--sand);
}

.visit-detail {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.visit-detail-icon {
    color: var(--forest-medium);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.visit-detail h4 {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    margin-bottom: 0.375rem;
    color: var(--forest-dark);
}

.visit-detail p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.visit-detail a {
    color: var(--forest-medium);
    transition: color var(--transition-fast);
}

.visit-detail a:hover {
    color: var(--forest-dark);
}

.visit-map {
    border: 1px solid var(--sand);
    overflow: hidden;
    min-height: 300px;
}

.visit-map iframe {
    width: 100%;
    height: 100%;
    min-height: 300px;
}

.visit-image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Contact --- */
.contact {
    padding: 8rem 0;
    background: var(--forest-pale);
}

.contact-container {
    max-width: 720px;
}

.contact-intro {
    font-size: 1.0625rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--text-body);
    background: var(--warm-white);
    border: 1px solid var(--sand);
    padding: 0.875rem 1rem;
    transition: border-color var(--transition-fast);
    outline: none;
    border-radius: 0;
    -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--forest-medium);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-success {
    text-align: center;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.form-success svg {
    color: var(--forest-medium);
}

.form-success h3 {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    color: var(--forest-dark);
}

.form-success p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* --- Footer --- */
.footer {
    background: var(--forest-dark);
    color: var(--off-white);
    padding: 5rem 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(247, 245, 240, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--off-white);
    margin-bottom: 1rem;
}

.footer-logo .logo-icon {
    color: var(--forest-light);
}

.footer-tagline {
    font-size: 0.9375rem;
    color: rgba(247, 245, 240, 0.55);
    line-height: 1.7;
    max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--forest-light);
    margin-bottom: 1.25rem;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    font-size: 0.9375rem;
    color: rgba(247, 245, 240, 0.6);
    transition: color var(--transition-fast);
}

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

.footer-contact address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-contact p {
    font-size: 0.9375rem;
    color: rgba(247, 245, 240, 0.6);
    line-height: 1.6;
}

.footer-contact a {
    color: rgba(247, 245, 240, 0.6);
    transition: color var(--transition-fast);
}

.footer-contact a:hover {
    color: var(--off-white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    font-size: 0.8125rem;
    color: rgba(247, 245, 240, 0.35);
}

/* --- Scroll Reveal (progressive enhancement) --- */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                    transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    
    .reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }
    
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero::before {
        width: 100%;
        height: 50%;
        top: auto;
        bottom: 0;
    }
    
    .hero-content {
        padding-right: 0;
        text-align: center;
    }
    
    .hero-eyebrow {
        justify-content: center;
    }
    
    .hero-subheadline {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-image {
        height: 50vh;
        max-height: 500px;
        order: -1;
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .about-image-secondary {
        right: 0;
    }
    
    .about-content {
        padding-left: 0;
    }
    
    .visit-container {
        grid-template-columns: 1fr;
    }
    
    .visit-content {
        padding-right: 0;
    }
    
    .visit-image-col {
        min-height: 400px;
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .services {
        padding: 5rem 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .about {
        padding: 5rem 0;
    }
    
    .about-image-secondary {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 1rem;
    }
    
    .about-image-secondary img {
        width: 100%;
    }
    
    .about-values {
        grid-template-columns: 1fr;
    }
    
    .frames {
        padding: 5rem 0;
    }
    
    .frames-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    
    .frame-item--large {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .frame-item--wide {
        grid-column: span 2;
    }
    
    .frame-item:not(:first-child) {
        grid-column: span 1;
    }
    
    .frame-item img {
        height: 250px;
    }
    
    .frame-item--large img {
        height: 300px;
    }
    
    .visit {
        padding: 5rem 0;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact {
        padding: 5rem 0;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .hero-scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 70px;
    }
    
    .hero-headline {
        font-size: 2.25rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-divider {
        width: 40px;
        height: 1px;
    }
    
    .frames-grid {
        grid-template-columns: 1fr;
    }
    
    .frame-item--large,
    .frame-item--wide {
        grid-column: span 1;
    }
}
