/* ===== 3SQUARES INTERIOR DESIGN — SHARED STYLES ===== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800;900&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

:root {
    --bg-color: #ffffff;
    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    --grid-color: rgba(60, 179, 113, 0.25);
    --accent-green: #0a2c1c;
    --accent-light: rgba(10, 44, 28, 0.05);
    --border-color: rgba(0,0,0,0.1);
    --font-primary: 'Outfit', sans-serif;
    --font-serif: 'Playfair Display', serif;
}

* { margin: 0; padding: 0; box-sizing: border-box;  }
html { scroll-behavior: smooth; }
body { font-family: var(--font-primary); background-color: var(--bg-color); color: var(--text-primary); overflow-x: hidden; line-height: 1.6; }

/* Grain Overlay */
.grain-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 9997; opacity: 0.15; background: transparent; display: none; }
.grain-overlay::before { content: ""; position: absolute; width: 200%; height: 200%; top: -50%; left: -50%; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E"); animation: grainMove 8s steps(10) infinite; }
@keyframes grainMove { 0%, 100% { transform: translate(0, 0); } 10% { transform: translate(-5%, -10%); } 30% { transform: translate(-15%, 5%); } 50% { transform: translate(-5%, -5%); } 70% { transform: translate(15%, 15%); } 90% { transform: translate(5%, 10%); } }

/* Background Blobs */
.bg-blob { position: fixed; width: 500px; height: 500px; background: radial-gradient(circle, rgba(10, 44, 28, 0.1) 0%, transparent 70%); filter: blur(80px); border-radius: 50%; z-index: -1; pointer-events: none; animation: blobFloat 20s infinite alternate cubic-bezier(0.45, 0, 0.55, 1); display: none; }
.blob-1 { top: -10%; left: -10%; animation-delay: 0s; }
.blob-2 { bottom: -10%; right: -10%; background: radial-gradient(circle, rgba(60, 179, 113, 0.08) 0%, transparent 70%); animation-delay: -5s; }
.blob-3 { top: 40%; right: 15%; width: 300px; height: 300px; animation-delay: -10s; }
@keyframes blobFloat { 0% { transform: translate(0, 0) scale(1); } 100% { transform: translate(100px, 50px) scale(1.1); } }

/* Grid Background */
.grid-background { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background-color: var(--bg-color); background-image: linear-gradient(to right, var(--grid-color) 1px, transparent 1px), linear-gradient(to bottom, var(--grid-color) 1px, transparent 1px); background-size: 60px 60px; z-index: -2; pointer-events: none; animation: panBackground 30s linear infinite; }
@keyframes panBackground { 0% { background-position: 0 0; } 100% { background-position: 60px 60px; } }

/* Scroll Progress */
.scroll-progress-container { position: fixed; right: 30px; top: 50%; transform: translateY(-50%); width: 4px; height: 200px; background: rgba(10, 44, 28, 0.1); border-radius: 10px; z-index: 999; }
.scroll-progress-bar { width: 100%; height: 0%; background: var(--accent-green); border-radius: 10px; transition: height 0.1s ease-out; }

/* Native Cursor - Guarantees zero latency and perfect cross-platform visibility */
html, body {
    cursor: auto !important;
}

a, button, input, textarea, select, .magnetic-btn, .filter-btn, .view-details, .nav-links a, .portfolio-item, .social-icon, .cta-button, .view-details:hover {
    cursor: pointer !important;
}

/* Layout */
.container { max-width: 1400px; margin: 0 auto; padding: 0 5%; }

/* Header */
.header { position: fixed; top: 0; left: 0; width: 100%; z-index: 100; transition: all 0.5s ease; }
.glass-header { background: rgba(255, 255, 255, 0.3); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid rgba(255, 255, 255, 0.8); box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05); }
.navbar { display: flex; justify-content: space-between; align-items: center; padding: 1rem 5%; transition: padding 0.5s ease; }
.header.scrolled .navbar { padding: 0.5rem 5%; }

/* Logo */
.logo-container { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-icon { width: 45px; height: 45px; }
.logo-icon-img { height: 60px; width: auto; transition: all 0.3s ease; }
.header.scrolled .logo-icon-img { height: 45px; }
.logo-text { display: flex; flex-direction: column; justify-content: center; }

/* Nav Links */
.nav-links { list-style: none; display: flex; gap: 2.5rem; }
.nav-links a { text-decoration: none; color: var(--text-secondary); font-weight: 600; font-size: 1rem;  transition: color 0.3s ease; padding-bottom: 5px; position: relative; }
.nav-links a:hover { color: var(--accent-green); }
.nav-links a.active { color: var(--accent-green); }
.nav-links a::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 100%; height: 2px; background-color: var(--accent-green); transform: scaleX(0); transform-origin: right; transition: transform 0.4s cubic-bezier(0.86, 0, 0.07, 1); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); transform-origin: left; }

/* Page wrapper */
.page-wrapper { padding-top: 90px; min-height: 100vh; position: relative; z-index: 1; }

/* Section padding */
.page-section { padding: 80px 0 60px 0; position: relative; }

/* Drafting Details */
.drafting-detail { position: absolute; font-family: 'Courier New', Courier, monospace; font-size: 0.7rem; color: rgba(10, 44, 28, 0.25); text-transform: uppercase; letter-spacing: 0.1em; pointer-events: none; z-index: 0; }
.detail-top-right { top: 30px; right: 30px; text-align: right; }
.detail-bottom-left { bottom: 30px; left: 30px; }
.bracket-frame { position: absolute; width: 20px; height: 20px; border: 1px solid rgba(10, 44, 28, 0.15); pointer-events: none; }
.bracket-tl { top: 0; left: 0; border-right: 0; border-bottom: 0; }
.bracket-br { bottom: 0; right: 0; border-left: 0; border-top: 0; }

/* Typography */
.subtitle { font-family: var(--font-primary); color: var(--accent-green); font-size: 1.2rem; font-weight: 800; text-transform: uppercase; letter-spacing: 4px; margin-bottom: 1rem; display: inline-block; padding: 5px 15px; background: var(--accent-light); border-radius: 4px; }
.title { font-family: var(--font-serif); font-size: 4.5rem; line-height: 1.1; margin-bottom: 1.5rem; color: var(--text-primary); }
.large-title { font-size: 6rem; }
.description { font-size: 1.25rem; color: var(--text-secondary); margin-bottom: 2.5rem; max-width: 600px; line-height: 1.8; }

/* Utilities */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; } .mt-4 { margin-top: 4rem; } .mt-5 { margin-top: 6rem; }
.mb-2 { margin-bottom: 2rem; } .mb-3 { margin-bottom: 3rem; } .mb-4 { margin-bottom: 4rem; } .mb-5 { margin-bottom: 6rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.w-100 { width: 100%; }
.text-muted { color: var(--text-secondary); }

/* Glass Cards */
.glass-card { background: rgba(255, 255, 255, 0.4); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px); border: 1px solid rgba(255, 255, 255, 0.6); box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.05); border-radius: 12px; padding: 2rem; }
.glass-card-strong { background: rgba(255, 255, 255, 0.7); backdrop-filter: blur(25px); -webkit-backdrop-filter: blur(25px); border: 1px solid rgba(255, 255, 255, 0.8); box-shadow: 0 15px 40px 0 rgba(0, 0, 0, 0.1); border-radius: 12px; }

/* Buttons */
.cta-button { padding: 1.2rem 3rem; font-family: var(--font-primary); font-size: 1.1rem; font-weight: 800; color: var(--bg-color); background-color: var(--accent-green); border: 2px solid var(--accent-green); border-radius: 30px;  transition: all 0.4s ease; outline: none; position: relative; overflow: hidden; z-index: 1; }
.cta-button::before { content: ''; position: absolute; top: 50%; left: 50%; width: 300%; height: 300%; background-color: rgba(255,255,255,0.1); transition: transform 0.6s ease; transform: translate(-50%, -50%) scale(0) rotate(45deg); z-index: -1; }
.cta-button:hover::before { transform: translate(-50%, -50%) scale(1) rotate(45deg); }
.cta-button.outline { background-color: transparent; color: var(--accent-green); }
.cta-button.outline:hover { color: var(--bg-color); background-color: var(--accent-green); }

/* About Layout */
.about-layout { display: flex; align-items: center; justify-content: space-between; gap: 6rem; }
.text-content, .image-content { flex: 1; }
.image-wrapper { position: relative; width: 100%; height: 700px; border-radius: 12px; overflow: hidden; box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15); }
.image-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.core-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 4rem; }
.value-item { position: relative; padding: 2.5rem 1.5rem; background: rgba(10, 44, 28, 0.03); border: 1px dashed rgba(10, 44, 28, 0.1); transition: all 0.4s ease; }
.value-item:hover { background: rgba(10, 44, 28, 0.05); border-style: solid; }
.value-item h3 { font-family: var(--font-serif); color: var(--accent-green); font-size: 1.6rem; margin-bottom: 0.8rem; }
.value-item p { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.5; }

/* Services Grid */
.grid-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.grid-3col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
.service-card { border-radius: 12px; overflow: hidden; position: relative; }
.service-image { height: 400px; overflow: hidden; border-radius: 12px; }
.service-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1); }
.service-card:hover .service-image img { transform: scale(1.1); }
.service-info { position: absolute; bottom: -20px; left: 20px; right: 20px; padding: 2rem; text-align: center; transform: translateY(-40px); }
.service-info h3 { font-size: 1rem; letter-spacing: 3px; color: var(--accent-green); margin-bottom: 1rem; }
.service-info p { font-family: var(--font-serif); font-size: 1.8rem; margin-bottom: 1.5rem; }
.view-details { color: var(--text-primary); text-decoration: none; font-weight: 800; font-size: 1rem; border-bottom: 2px solid var(--text-primary); transition: color 0.3s ease, border-color 0.3s ease; }
.view-details:hover { color: var(--accent-green); border-color: var(--accent-green); }

/* Portfolio */
.portfolio-filters { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.filter-btn { background: rgba(255,255,255,0.5); backdrop-filter: blur(5px); border: 1px solid var(--border-color); padding: 0.7rem 1.5rem; border-radius: 30px;  font-family: var(--font-primary); font-weight: 600; color: var(--text-secondary); transition: all 0.3s ease; font-size: 0.9rem; }
.filter-btn:hover, .filter-btn.active { background-color: var(--accent-green); color: white; border-color: var(--accent-green); }
.portfolio-item { height: 500px; border-radius: 12px; overflow: hidden; position: relative; }
.portfolio-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1); }
.portfolio-item:hover img { transform: scale(1.1); }
.portfolio-overlay { position: absolute; bottom: 20px; left: 20px; right: 20px; text-align: center; padding: 1.5rem; opacity: 0; transform: translateY(20px); transition: all 0.4s ease; }
.portfolio-item:hover .portfolio-overlay { opacity: 1; transform: translateY(0); }

/* Membership/Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; align-items: stretch; }
.pricing-card { padding: 4rem 3rem; text-align: center; position: relative; display: flex; flex-direction: column; }
.pricing-card.featured { transform: scale(1.05); border: 2px solid var(--accent-green); z-index: 2; }
.badge { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background-color: var(--accent-green); color: white; padding: 0.6rem 1.5rem; border-radius: 20px; font-size: 0.9rem; font-weight: 800; letter-spacing: 1px; }
.pricing-card h3 { font-family: var(--font-serif); font-size: 2rem; margin-bottom: 1rem; }
.price { font-size: 3.5rem; font-weight: 900; color: var(--accent-green); margin-bottom: 0.5rem; }
.price span { font-size: 1.2rem; color: var(--text-secondary); font-weight: 400; }
.plan-desc { color: var(--text-secondary); margin-bottom: 2.5rem; font-size: 1.1rem; }
.plan-features { list-style: none; margin-bottom: 3rem; text-align: left; flex-grow: 1; }
.plan-features li { padding: 1rem 0; border-bottom: 1px solid var(--border-color); position: relative; padding-left: 2rem; font-size: 1.1rem; }
.plan-features li::before { content: '✓'; position: absolute; left: 0; color: var(--accent-green); font-weight: bold; font-size: 1.2rem; }
.faq-item { margin-bottom: 1.5rem; padding: 2rem; }
.faq-item h4 { font-family: var(--font-serif); font-size: 1.5rem; margin-bottom: 1rem; color: var(--accent-green); }

/* Contact */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; }
.detail-block { margin-bottom: 3rem; }
.detail-block h3 { font-size: 1rem; text-transform: uppercase; letter-spacing: 3px; color: var(--accent-green); margin-bottom: 0.8rem; }
.detail-block p { font-family: var(--font-serif); font-size: 1.5rem; }
.contact-form { padding: 4rem; }
.form-group { margin-bottom: 2rem; position: relative; }
.form-group label { display: block; margin-bottom: 0.8rem; font-weight: 800; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }
.form-group input, .form-group textarea { width: 100%; padding: 1.2rem; border: 1px solid rgba(0,0,0,0.1); border-radius: 8px; font-family: var(--font-primary); font-size: 1.1rem; background-color: rgba(255,255,255,0.5); backdrop-filter: blur(5px); transition: all 0.4s ease;  }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--accent-green); background-color: rgba(255,255,255,0.9); box-shadow: 0 10px 20px rgba(10,44,28,0.1); }

/* Hero Section */
.hero-section { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 80vh; }
.stats-container { display: flex; gap: 5rem; justify-content: center; border-top: 1px solid var(--border-color); padding-top: 4rem; width: 100%; max-width: 900px; }
.stat-box { text-align: center; }
.stat-number { font-size: 3.5rem; font-family: var(--font-serif); color: var(--accent-green); margin-bottom: 0.5rem; }

/* Footer */
.footer { background-color: var(--accent-green); color: #fff; padding: 8rem 0 3rem 0; }
.footer-content { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.5fr; gap: 4rem; margin-bottom: 5rem; }
.footer-col h4 { font-family: var(--font-serif); font-size: 1.5rem; margin-bottom: 2rem; color: #fff; }
.footer-col a { display: block; color: rgba(255,255,255,0.7); text-decoration: none; margin-bottom: 1rem; transition: color 0.3s ease, padding-left 0.3s ease;  }
.footer-col a:hover { color: #fff; padding-left: 10px; }
.footer-col p { color: rgba(255,255,255,0.7); line-height: 1.8; max-width: 400px; }
.footer-bottom { text-align: center; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 3rem; color: rgba(255,255,255,0.5); font-size: 1rem; }
.footer-logo-title { font-family: var(--font-primary); font-weight: 900; font-size: 1.4rem; line-height: 1; color: #ffffff !important; letter-spacing: 1.5px; }
.footer-logo-subtitle { font-family: var(--font-primary); font-weight: 600; font-size: 0.55rem; line-height: 1; color: rgba(255,255,255,0.7) !important; letter-spacing: 2px; margin-top: 3px; }
.footer-logo-img { height: 100px; width: auto; filter: brightness(0) invert(1); opacity: 0.9; transition: opacity 0.3s ease; margin-bottom: 30px; }
.footer-logo-img:hover { opacity: 1; }

.footer-contact-item { display: flex; gap: 15px; margin-bottom: 1.2rem; align-items: flex-start; color: rgba(255,255,255,0.7); }
.footer-contact-item i { color: #fff; margin-top: 5px; font-size: 1rem; width: 20px; text-align: center; }
.footer-contact-item a { display: inline-block !important; color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.3s ease; }
.footer-contact-item a:hover { color: #fff; }
.footer-contact-item span { line-height: 1.4; display: block; }

.footer-social { display: flex; gap: 1rem; margin-top: 2rem; }
.footer-col .social-icon { 
    width: 44px; 
    height: 44px; 
    border-radius: 50%; 
    border: 1.5px solid rgba(255,255,255,0.3); 
    display: flex !important; 
    align-items: center; 
    justify-content: center; 
    color: #fff !important; 
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important; 
     
    text-decoration: none; 
    margin-bottom: 0 !important; 
    padding-left: 0 !important;
}
.footer-col .social-icon:hover { 
    background: #fff; 
    color: var(--accent-green) !important; 
    transform: translateY(-5px); 
    border-color: #fff; 
    padding-left: 0 !important;
}
.social-icon i { font-size: 1.2rem; line-height: 1; display: block; margin: 0; }
/* Manual adjustment for Font Awesome brands that are visually off-center */
.social-icon .fa-facebook-f { transform: translateX(-1px); }
.social-icon .fa-instagram { font-size: 1.1rem; }

/* Splash Screen */
#splash-screen { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: var(--bg-color); display: flex; justify-content: center; align-items: center; z-index: 10000; transition: transform 1s cubic-bezier(0.77, 0, 0.175, 1); }
#splash-screen.hidden { transform: translateY(-100%); }
.splash-logo { display: flex; flex-direction: column; align-items: center; gap: 20px; opacity: 0; transform: scale(0.8); animation: splashReveal 1.2s cubic-bezier(0.19, 1, 0.22, 1) forwards; }
@keyframes splashReveal { 0% { opacity: 0; transform: scale(0.8); } 100% { opacity: 1; transform: scale(1); } }
.splash-logo-title { font-family: var(--font-primary); font-weight: 900; font-size: 2.5rem; color: var(--accent-green); letter-spacing: 5px; }
.splash-logo-img { width: 220px; height: auto; }

/* Animations */
.reveal-down { animation: revealDown 1s cubic-bezier(0.19, 1, 0.22, 1) forwards; }
@keyframes revealDown { from { transform: translateY(-100%); } to { transform: translateY(0); } }
.animate-on-scroll { opacity: 0; transition: all 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.animate-on-scroll.slide-up { transform: translateY(60px); }
.animate-on-scroll.slide-up.is-visible { opacity: 1; transform: translateY(0); }
.animate-on-scroll.fade-in-right { transform: translateX(-60px); }
.animate-on-scroll.fade-in-left { transform: translateX(60px); }
.animate-on-scroll.fade-in-right.is-visible, .animate-on-scroll.fade-in-left.is-visible { opacity: 1; transform: translateX(0); }
.animate-on-scroll.scale-in { transform: scale(0.9); }
.animate-on-scroll.scale-in.is-visible { opacity: 1; transform: scale(1); }
.animate-on-scroll.pop-up { transform: translateY(40px) scale(0.85); }
.animate-on-scroll.pop-up.is-visible { opacity: 1; transform: translateY(0) scale(1); }
.animate-on-scroll.fade-in { transform: translateY(0); }
.animate-on-scroll.fade-in.is-visible { opacity: 1; }
.is-visible.delay-100 { transition-delay: 0.1s; } .is-visible.delay-200 { transition-delay: 0.2s; } .is-visible.delay-300 { transition-delay: 0.3s; } .is-visible.delay-400 { transition-delay: 0.4s; } .is-visible.delay-500 { transition-delay: 0.5s; }
.split-line { overflow: hidden; display: block; }
.split-line span { display: block; transform: translateY(100%); transition: transform 1.5s cubic-bezier(0.19, 1, 0.22, 1); }
.is-visible .split-line span { transform: translateY(0); }
.is-visible .split-line:nth-child(2) span { transition-delay: 0.15s; }
.floating { animation: floatingEffect 3.5s ease-in-out infinite; }
@keyframes floatingEffect { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }
.hover-glowing { transition: box-shadow 0.4s ease, border-color 0.4s ease, transform 0.4s ease; }
.hover-glowing:hover { box-shadow: 0 0 30px rgba(10, 44, 28, 0.25); border-color: var(--accent-green); transform: translateY(-5px); }
.pulse-anim { animation: simplePulse 2s infinite ease-in-out; }
@keyframes simplePulse { 0% { transform: translateX(-50%) scale(1); } 50% { transform: translateX(-50%) scale(1.05); } 100% { transform: translateX(-50%) scale(1); } }
.tilt-effect { transform-style: preserve-3d; transform: perspective(1000px); }
.hover-scale { transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.hover-scale:hover { transform: scale(1.02); }

/* Page Hero Banner */
.page-hero { background: linear-gradient(135deg, var(--accent-green) 0%, #1a4d2e 100%); color: white; padding: 120px 0 80px 0; text-align: center; position: relative; overflow: hidden; }
.page-hero-video-bg { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; opacity: 0.4; overflow: hidden; }
.page-hero-video-bg video { width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); }
.page-hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-image: linear-gradient(to right, rgba(255,255,255,0.05) 1px, transparent 1px), linear-gradient(to bottom, rgba(255,255,255,0.05) 1px, transparent 1px); background-size: 60px 60px; z-index: 1; pointer-events: none; }
.page-hero .subtitle { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); position: relative; z-index: 2; }
.page-hero .title { color: #ffffff; position: relative; z-index: 2; }
.page-hero .description { color: rgba(255,255,255,0.8); margin: 0 auto; position: relative; z-index: 2; }

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

/* Responsive */
@media (max-width: 968px) {
    .about-layout, .contact-layout { flex-direction: column; grid-template-columns: 1fr; }
    .grid-2col, .grid-3col, .pricing-grid, .footer-content { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .pricing-card.featured { transform: scale(1); }
    .large-title { font-size: 3.5rem; }
    .title { font-size: 3rem; }
    .core-values { grid-template-columns: 1fr; }
}
