/* FMONE — Premium Light Theme (BORK-inspired) */
:root {
  --bg: #ffffff;
  --bg2: #f5f5f5;
  --bg3: #ebebeb;
  --text: #111;
  --text2: #777;
  --accent: #111;
  --accent-hover: #333;
  --border: #e0e0e0;
  --radius: 0;
  --gold: #111;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.container { max-width: 1320px; margin: 0 auto; padding: 0 40px; }

/* --- NAV --- */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
nav .nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1320px; margin: 0 auto; padding: 20px 40px;
}
nav .logo {
  font-family: 'Unbounded', sans-serif;
  font-size: 22px; font-weight: 700; letter-spacing: 6px;
  color: #111;
}
nav .logo span { color: #111; }
nav .nav-links { display: flex; gap: 36px; align-items: center; }
nav .nav-links a {
  font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--text2); transition: color 0.3s; font-weight: 400;
}
nav .nav-links a:hover, nav .nav-links a.active { color: var(--text); }
nav .nav-cta {
  background: #111; color: #fff; padding: 10px 28px;
  border-radius: 0; font-weight: 500; font-size: 12px;
  letter-spacing: 2px; text-transform: uppercase;
  transition: background 0.3s;
}
nav .nav-cta:hover { background: #333; }

.burger { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.burger span { display: block; width: 24px; height: 1.5px; background: #111; transition: 0.3s; }

/* --- HERO --- */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  text-align: center; position: relative; overflow: hidden;
  padding: 120px 40px 80px;
}
.hero-bg {
  position: absolute; inset: 0;
  background: #f8f8f8;
  background-size: cover; background-position: center;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(0,0,0,0.02) 0%, transparent 60%);
}
.hero-content { position: relative; z-index: 1; max-width: 900px; }
.hero-label {
  font-size: 13px; letter-spacing: 8px; text-transform: uppercase;
  color: var(--text2); margin-bottom: 32px; font-weight: 400;
}
.hero h1 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(42px, 8vw, 96px); font-weight: 900;
  line-height: 1.0; margin-bottom: 24px; letter-spacing: -1px;
  color: #111;
}
.hero p {
  font-size: clamp(16px, 2vw, 20px); color: var(--text2);
  max-width: 560px; margin: 0 auto 48px; font-weight: 400;
  line-height: 1.7;
}
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-block; padding: 16px 44px; border-radius: 0;
  font-size: 12px; font-weight: 500; letter-spacing: 2px;
  text-transform: uppercase; transition: all 0.3s; border: none; cursor: pointer;
}
.btn-gold { background: #111; color: #fff; }
.btn-gold:hover { background: #333; transform: translateY(-2px); }
.btn-outline { background: transparent; color: #111; border: 1px solid #111; }
.btn-outline:hover { background: #111; color: #fff; }

.scroll-hint {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  animation: bounce 2s infinite;
}
.scroll-hint span {
  display: block; width: 24px; height: 38px; border: 1.5px solid #bbb;
  border-radius: 12px; position: relative;
}
.scroll-hint span::after {
  content: ''; width: 3px; height: 8px; background: #111;
  border-radius: 2px; position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
  animation: scroll-dot 2s infinite;
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }
@keyframes scroll-dot { 0%{opacity:1;top:6px} 100%{opacity:0;top:20px} }

/* --- SECTIONS --- */
section { padding: 120px 0; }
.section-label {
  font-size: 12px; letter-spacing: 6px; text-transform: uppercase;
  color: var(--text2); margin-bottom: 16px; font-weight: 400;
}
.section-title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(32px, 5vw, 64px); font-weight: 900;
  margin-bottom: 20px; color: #111; letter-spacing: -0.5px;
}
.section-desc {
  font-size: 18px; color: var(--text2); max-width: 560px; margin-bottom: 64px;
  line-height: 1.7;
}

/* --- SERIES HEADING --- */
.series-heading {
  font-family: 'Unbounded', sans-serif;
  font-size: 28px; font-weight: 700; margin-bottom: 32px;
  color: #111; letter-spacing: 2px;
}

/* --- HOW IT WORKS --- */
.how-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px; margin-top: 64px; background: var(--border);
}
.how-card {
  background: var(--bg); padding: 48px 40px;
  transition: background 0.3s;
}
.how-card:hover { background: var(--bg2); }
.how-num {
  font-family: 'Unbounded', sans-serif;
  font-size: 56px; font-weight: 900; color: #111; opacity: 0.08;
  margin-bottom: 20px; line-height: 1;
}
.how-card h3 { font-size: 20px; margin-bottom: 12px; font-weight: 600; letter-spacing: 0.5px; }
.how-card p { color: var(--text2); font-size: 15px; line-height: 1.7; }

/* --- PRODUCTS --- */
#store { background: var(--bg); }
.products-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.products-grid.grid-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 50%; margin: 0 auto;
}
a.product-card, .product-card {
  display: block; background: var(--bg); border: none;
  transition: transform 0.4s; overflow: hidden; text-decoration: none; color: inherit;
}
.product-card:hover { transform: translateY(-4px); }
.product-img {
  aspect-ratio: 4/3; background: var(--bg2);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.product-img img { transition: transform 0.6s; }
.product-card:hover .product-img img { transform: scale(1.03); }
.product-info {
  padding: 20px 0 0; border-left: 3px solid #111; padding-left: 16px;
  margin-top: 16px;
}
.product-brand {
  font-family: 'Unbounded', sans-serif;
  font-size: 16px; font-weight: 900; letter-spacing: 1px;
  margin-bottom: 2px;
}
.product-name {
  font-size: 16px; font-weight: 600; margin-bottom: 2px; letter-spacing: 0.5px;
}
.product-type {
  font-size: 11px; color: var(--text2); margin-bottom: 8px;
  text-transform: uppercase; letter-spacing: 2px;
}
.product-price {
  font-size: 18px; font-weight: 700; color: #111;
}
.product-specs { display: none; }
.product-card .btn { display: none; }

/* --- VIDEO --- */
.video-section { background: var(--bg); }
.video-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.video-wrapper {
  position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;
  background: #000;
}
.video-wrapper iframe {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
}

/* --- GIF STRIP --- */
.gif-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  background: #000; overflow: hidden;
}
.gif-strip img {
  width: 100%; height: 250px; object-fit: cover;
  display: block;
}

/* --- FEATURES --- */
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1px; background: var(--border);
}
.feature-item {
  background: var(--bg); padding: 48px 36px; text-align: left;
}
.feature-icon {
  width: 48px; height: 48px; margin: 0 0 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
}
.feature-item h3 { margin-bottom: 10px; font-size: 18px; font-weight: 600; }
.feature-item p { color: var(--text2); font-size: 14px; line-height: 1.7; }

/* --- FAQ --- */
.faq-list { max-width: 800px; }
.faq-item {
  border-bottom: 1px solid var(--border); padding: 0;
}
.faq-item summary {
  padding: 24px 0; font-size: 18px; font-weight: 600;
  cursor: pointer; list-style: none; display: flex;
  justify-content: space-between; align-items: center;
  transition: color 0.3s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 24px; font-weight: 300;
  color: var(--text2); transition: transform 0.3s;
  flex-shrink: 0; margin-left: 16px;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item summary:hover { color: var(--text2); }
.faq-item p {
  padding: 0 0 24px; color: var(--text2);
  font-size: 15px; line-height: 1.8;
}

/* --- ABOUT PATTERNS --- */
.about-patterns { background: #0a0a0a; padding: 100px 0; }
.about-patterns-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-patterns-title {
  font-family: 'Unbounded', sans-serif; font-size: 36px; font-weight: 900;
  color: #fff; margin-bottom: 40px; text-transform: uppercase;
}
.about-patterns-text {
  color: rgba(255,255,255,0.75); font-size: 16px; line-height: 1.8; margin-bottom: 24px;
}
.about-patterns-img-wrap { display: flex; justify-content: center; align-items: center; }
.about-patterns-img {
  width: 100%; max-width: 500px; border-radius: 50%; aspect-ratio: 1; object-fit: cover;
}

/* --- HOW GRID EXTRA --- */
.how-grid-extra {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  margin-top: 1px; background: var(--border);
}

/* --- CONCEPT --- */
.concept-dark {
  background: var(--bg2); padding: 120px 0;
}
.concept-hero {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: center; margin-bottom: 80px;
}
.concept-hero-left { display: flex; flex-direction: column; }
.concept-main-title {
  font-family: 'Unbounded', sans-serif; font-size: clamp(32px, 5vw, 56px);
  font-weight: 900; margin-bottom: 32px; color: var(--text);
}
.concept-nav { display: flex; flex-direction: column; gap: 10px; }
.concept-nav a {
  color: var(--text); font-size: 17px; font-weight: 600; text-decoration: none;
  transition: color 0.3s;
}
.concept-nav a:hover { color: var(--text2); }
.concept-hero-img { overflow: hidden; border-radius: 12px; }
.concept-hero-img img { width: 100%; display: block; object-fit: cover; aspect-ratio: 4/3; }

.concept-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: center; margin-bottom: 64px;
}
.concept-grid.reverse { direction: rtl; }
.concept-grid.reverse > * { direction: ltr; }
.concept-card h3 {
  font-family: 'Unbounded', sans-serif;
  font-size: 26px; font-weight: 700; margin-bottom: 20px; color: var(--text);
}
.concept-card p {
  color: var(--text2); font-size: 16px; line-height: 1.8; margin-bottom: 14px;
}
.concept-card p strong { color: var(--text); }
.concept-quote {
  font-style: italic; color: #888;
  border-left: 2px solid var(--text); padding-left: 16px; margin-top: 8px;
}
.concept-muted { color: #999; margin-top: 8px; }
.concept-caption {
  font-size: 12px; color: var(--text2); text-transform: uppercase;
  letter-spacing: 1px; margin-bottom: 12px; display: block;
}
.concept-card-img { overflow: hidden; border-radius: 12px; }
.concept-card-img img {
  width: 100%; object-fit: cover; display: block; aspect-ratio: 4/3;
}

/* --- CONTACTS --- */
.contacts-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
}
.contact-item {
  display: flex; gap: 16px; align-items: flex-start;
  margin-bottom: 28px;
}
.contact-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--bg2); border-radius: 0;
  display: flex; align-items: center; justify-content: center;
  color: #111; font-size: 18px;
}
.contact-item h4 { font-size: 12px; color: var(--text2); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 1px; }
.contact-item p { font-size: 16px; }
.contact-item a { color: #111; border-bottom: 1px solid #111; }
.contact-item a:hover { opacity: 0.6; }

.contact-form { background: var(--bg2); padding: 48px; border: none; }
.contact-form h3 { margin-bottom: 32px; font-size: 24px; font-family: 'Unbounded', sans-serif; font-weight: 700; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 12px; color: var(--text2); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 1px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 14px 16px; background: #fff;
  border: 1px solid var(--border); border-radius: 0;
  color: #111; font-size: 15px; transition: border-color 0.3s;
  font-family: 'Inter', sans-serif;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: #111;
}
.form-group textarea { resize: vertical; min-height: 100px; }

/* --- FOOTER --- */
footer {
  border-top: 1px solid var(--border); padding: 80px 0 32px;
  background: var(--bg);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 64px;
}
.footer-logo {
  font-family: 'Unbounded', sans-serif;
  font-size: 20px; font-weight: 700; letter-spacing: 4px;
  margin-bottom: 16px; color: #111;
}
.footer-logo span { color: #111; }
.footer-desc { color: var(--text2); font-size: 14px; max-width: 280px; line-height: 1.7; }
.footer-col h4 {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--text2); margin-bottom: 20px;
}
.footer-col a {
  display: block; color: #555; font-size: 14px; margin-bottom: 12px;
  transition: color 0.3s;
}
.footer-col a:hover { color: #111; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px; border-top: 1px solid var(--border);
  font-size: 12px; color: var(--text2); letter-spacing: 1px;
}
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 40px; height: 40px;
  background: var(--bg2); display: flex; align-items: center; justify-content: center;
  transition: all 0.3s; color: #555;
}
.footer-socials a:hover { background: #111; color: #fff; }

/* --- PREMIUM SHIMMER EFFECTS --- */

/* Shimmer keyframes */
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes subtleGlow {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}

/* Logo shimmer */
nav .logo {
  background: linear-gradient(120deg, #111 0%, #111 40%, #555 50%, #111 60%, #111 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 6s linear infinite;
}

/* Hero h1 gradient text */
.hero h1 {
  background: linear-gradient(135deg, #111 0%, #333 25%, #111 50%, #444 75%, #111 100%);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 8s ease infinite;
}

/* Section titles subtle gradient */
.section-title {
  background: linear-gradient(135deg, #111 0%, #333 50%, #111 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 8s linear infinite;
}

/* Buttons shimmer on hover */
.btn-gold {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-gold::before {
  content: '';
  position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.6s ease;
  z-index: 2;
}
.btn-gold:hover::before {
  left: 120%;
}

/* Product cards — gradient border on hover */
a.product-card, .product-card {
  position: relative;
}
a.product-card::before, .product-card::before {
  content: '';
  position: absolute; inset: -1px;
  background: linear-gradient(135deg, #ddd, #999, #ddd, #bbb);
  background-size: 300% 300%;
  border-radius: 0;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
  animation: gradientShift 4s ease infinite;
}
a.product-card:hover::before, .product-card:hover::before {
  opacity: 1;
}

/* Mesh gradient backgrounds between sections */
.concept-dark {
  background:
    radial-gradient(ellipse at 20% 50%, rgba(200,200,210,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(180,190,200,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(210,200,190,0.1) 0%, transparent 50%),
    var(--bg2) !important;
}
#store {
  background:
    radial-gradient(ellipse at 10% 90%, rgba(200,200,210,0.08) 0%, transparent 40%),
    radial-gradient(ellipse at 90% 10%, rgba(210,200,190,0.08) 0%, transparent 40%),
    var(--bg);
}
#faq {
  background:
    radial-gradient(ellipse at 70% 30%, rgba(190,195,210,0.1) 0%, transparent 50%),
    var(--bg);
}

/* Gradient dividers between sections */
section + section::before {
  content: '';
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, #ccc, #999, #ccc, transparent);
  margin-bottom: 0;
}

/* Feature cards glow on hover */
.feature-item {
  transition: background 0.3s, box-shadow 0.3s;
}
.feature-item:hover {
  box-shadow: 0 0 40px rgba(0,0,0,0.04);
}

/* Contact form subtle glow */
.contact-form {
  transition: box-shadow 0.4s;
}
.contact-form:hover {
  box-shadow: 0 8px 60px rgba(0,0,0,0.06);
}

/* Footer logo shimmer */
.footer-logo {
  background: linear-gradient(120deg, #111 0%, #111 40%, #666 50%, #111 60%, #111 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 6s linear infinite;
}

/* Nav CTA button shimmer */
nav .nav-cta {
  position: relative;
  overflow: hidden;
}
nav .nav-cta::before {
  content: '';
  position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  animation: shimmer 4s linear infinite;
}

/* Statement text gradient */
.statement-text {
  background: linear-gradient(135deg, #111 0%, #555 40%, #111 60%, #333 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 6s linear infinite;
}
.statement-text em {
  -webkit-text-fill-color: #999;
}

/* Scroll hint glow */
.scroll-hint span {
  border-color: #bbb;
  box-shadow: 0 0 20px rgba(0,0,0,0.05);
  animation: subtleGlow 3s ease infinite, bounce 2s infinite;
}

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

/* --- TABLET (1024px) --- */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  nav .nav-inner { padding: 18px 32px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid.grid-2 { max-width: 100%; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
  .about-patterns-grid { gap: 48px; }
  .about-patterns-title { font-size: 28px; }
  .lifestyle-grid { grid-auto-rows: 220px; }
  .immersive-strip img { height: 300px; }
}

/* --- MOBILE (768px) --- */
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  nav .nav-inner { padding: 16px 20px; }
  nav .nav-links { display: none; }
  nav .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(255,255,255,0.98); padding: 24px;
    border-bottom: 1px solid var(--border); gap: 16px;
  }
  .burger { display: flex; }
  section { padding: 80px 0; }
  .hero { padding: 100px 20px 60px; }
  .concept-hero { grid-template-columns: 1fr; gap: 32px; }
  .concept-grid, .concept-grid.reverse { grid-template-columns: 1fr; direction: ltr; gap: 32px; }
  .contacts-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid.grid-2 { max-width: 100%; }
  .how-grid { grid-template-columns: 1fr; }
  .how-grid-extra { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .gif-strip { grid-template-columns: repeat(2, 1fr); }
  .gif-strip img { height: 150px; }
  .about-patterns { padding: 80px 0; }
  .about-patterns-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-patterns-title { font-size: 24px; margin-bottom: 24px; }
  .about-patterns-img { max-width: 300px; }
  .immersive-strip { grid-template-columns: repeat(2, 1fr); }
  .immersive-strip img { height: 250px; }
  .lifestyle-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .fullbleed-photo { height: 60vh; }
  .apple-statement { padding: 80px 0; }
  .fullbleed-caption { font-size: 12px; padding: 10px 20px; }
}

/* --- SMALL PHONE (480px) --- */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  nav .nav-inner { padding: 14px 16px; }
  section { padding: 60px 0; }
  .hero { padding: 80px 16px 40px; min-height: 85vh; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons .btn { width: 100%; text-align: center; }
  .products-grid { grid-template-columns: 1fr; }
  .products-grid.grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .contacts-grid { gap: 32px; }
  .contact-form { padding: 28px 20px; }
  .about-patterns { padding: 60px 0; }
  .about-patterns-title { font-size: 22px; }
  .about-patterns-img { max-width: 240px; }
  .concept-card h3 { font-size: 20px; }
  .concept-card p { font-size: 14px; }
  .concept-main-title { font-size: 32px; }
  .concept-nav a { font-size: 15px; }
  .concept-card-img img { min-height: 220px; }
  .immersive-strip { grid-template-columns: 1fr 1fr; }
  .immersive-strip img { height: 180px; }
  .gif-strip img { height: 120px; }
  .lifestyle-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .lifestyle-item.tall { grid-row: span 1; }
  .fullbleed-photo { height: 50vh; }
  .apple-statement { padding: 60px 0; }
  .section-desc { font-size: 16px; }
  .series-heading { font-size: 22px; }
}

/* Note line after products */
.products-note {
  text-align: center; margin-top: 48px; color: var(--text2);
  font-size: 13px; letter-spacing: 0.5px; line-height: 1.7;
}

/* --- APPLE-STYLE IMMERSIVE --- */

/* Full-bleed photo */
.fullbleed-photo {
  position: relative; width: 100%; height: 85vh;
  overflow: hidden;
}
.fullbleed-photo img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}
.fullbleed-caption {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 32px; padding: 12px 28px;
  color: #fff; font-size: 14px; letter-spacing: 1px;
  white-space: nowrap;
}

/* Photo strip (4 side by side) */
.immersive-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
  width: 100%;
}
.immersive-strip img {
  width: 100%; height: 400px; object-fit: cover; display: block;
  transition: transform 0.6s;
}
.immersive-strip img:hover { transform: scale(1.03); }

/* Statement block (big centered text) */
.apple-statement {
  padding: 120px 0; text-align: center;
}
.statement-text {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(28px, 4.5vw, 56px); font-weight: 700;
  line-height: 1.3; color: #111; max-width: 900px; margin: 0 auto;
  letter-spacing: -0.5px;
}
.statement-text em {
  font-style: normal; color: #777;
}

/* Lifestyle grid (masonry-like) */
.lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 2px;
  width: 100%;
}
.lifestyle-item {
  overflow: hidden; position: relative;
}
.lifestyle-item.tall {
  grid-row: span 2;
}
.lifestyle-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.8s cubic-bezier(0.25, 0, 0.2, 1);
}
.lifestyle-item:hover img {
  transform: scale(1.05);
}

/* Immersive mobile overrides are in the main responsive blocks above */
