/* ============================================
   CozyRelic - Le Labo-inspired minimalist CSS
   Monochrome - Inter - flat - hairline borders
   ============================================ */

:root {
  --bg:        #ffffff;
  --bg2:       #faf9f7;
  --bg3:       #dcdbd6;
  --surface:   #ffffff;
  --surface2:  #f3f2ef;
  --border:    #e6e5e1;
  --accent:    #141414;
  --accent2:   #141414;
  --accent3:   #141414;
  --text:      #141414;
  --text-muted:#6f6f6a;
  --text-dim:  #9a9a95;
  --white:     #ffffff;
  --red:       #b3261e;
  --radius:    2px;
  --radius-lg: 2px;
  --shadow:    none;
  --glow:      none;
  --transition:0.25s ease;
  --font-head: 'Inter', -apple-system, 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Inter', -apple-system, 'Helvetica Neue', Arial, sans-serif;
  --max-w:     1200px;
}

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

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

body {
  font-family:var(--font-body);
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
  overflow-x:hidden;
  min-height:100vh;
  -webkit-font-smoothing:antialiased;
}

img { display:block; max-width:100%; }
a  { color:inherit; text-decoration:none; }
ul { list-style:none; }

/* TYPOGRAPHY */
h1,h2,h3,h4,h5 {
  font-family:var(--font-head); font-weight:700; line-height:1.15;
  letter-spacing:0.03em; text-transform:uppercase;
}
h1 { font-size: clamp(1.9rem, 4.5vw, 3.2rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2.1rem); }
h3 { font-size: clamp(1.05rem, 2vw, 1.3rem); }
p  { font-size:1rem; color:var(--text-muted); }

/* CONTAINER */
.container { max-width:var(--max-w); margin:0 auto; padding:0 24px; }

/* BUTTONS */
.btn {
  display:inline-flex; align-items:center; gap:8px;
  padding:15px 32px; border-radius:0;
  font-family:var(--font-head); font-size:0.74rem; letter-spacing:0.18em; text-transform:uppercase; font-weight:500;
  border:none; cursor:pointer; transition:var(--transition);
  text-decoration:none; min-height:46px;
}
.btn-primary { background:#141414; color:#fff; }
.btn-primary:hover { background:#2c2c2c; }
.btn-outline { background:transparent; border:1px solid #141414; color:#141414; }
.btn-outline:hover { background:#141414; color:#fff; }
.btn-gold { background:#141414; color:#fff; }
.btn-gold:hover { background:#2c2c2c; }

/* NAVBAR */
.navbar {
  position:fixed; top:0; left:0; right:0; z-index:1000;
  padding:16px 0; background:var(--bg); border-bottom:1px solid var(--border);
  transition: padding 0.3s;
}
.navbar.scrolled { padding:10px 0; }
.nav-inner {
  display:flex; align-items:center; justify-content:space-between;
  max-width:var(--max-w); margin:0 auto; padding:0 24px;
}
.nav-logo {
  font-family:var(--font-head); font-size:1.35rem; letter-spacing:0.06em;
  color:var(--text); font-weight:800; text-transform:uppercase;
  display:flex; align-items:center; gap:0;
}
.nav-logo span { color:var(--text); }

.nav-links { display:flex; align-items:center; gap:30px; }
.nav-links a {
  font-family:var(--font-head); font-size:0.7rem; letter-spacing:0.16em;
  text-transform:uppercase; color:#2a2a2a; font-weight:500;
  transition:color var(--transition); position:relative; padding-bottom:4px;
}
.nav-links a::after {
  content:''; position:absolute; bottom:0; left:0; width:0; height:1px;
  background:#141414; transition:width var(--transition);
}
.nav-links a.btn::after { display:none; }
.nav-links a:hover, .nav-links a.active { color:#141414; }
.nav-links a.btn:hover, .nav-links a.btn.active { color:#fff; }
.nav-links a:hover::after, .nav-links a.active::after { width:100%; }
.nav-cta { margin-left:14px; padding:10px 22px; font-size:0.66rem; }

/* HAMBURGER */
.hamburger {
  display:none; flex-direction:column; gap:5px; cursor:pointer;
  background:none; border:none; padding:8px; min-width:44px; min-height:44px;
  align-items:center; justify-content:center;
}
.hamburger span { display:block; width:24px; height:2px; background:#141414; transition:var(--transition); }
.hamburger.open span:nth-child(1) { transform:rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity:0; }
.hamburger.open span:nth-child(3) { transform:rotate(-45deg) translate(5px,-5px); }

/* MOBILE MENU */
.mobile-menu {
  position:fixed; inset:0; z-index:999;
  background: rgba(255,255,255,0.98);
  backdrop-filter:blur(8px); -webkit-backdrop-filter:blur(8px);
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:34px;
  transform:translateX(100%); transition:transform 0.35s ease;
}
.mobile-menu.open { transform:translateX(0); }
.mobile-menu a {
  font-family:var(--font-head); font-size:1.3rem; letter-spacing:0.14em;
  text-transform:uppercase; color:#2a2a2a; font-weight:600; transition:color var(--transition);
}
.mobile-menu a:hover, .mobile-menu a.active { color:#141414; }

/* SECTIONS */
section { position:relative; z-index:1; }
.section-pad { padding:90px 0; }
.section-pad-sm { padding:56px 0; }

.section-label {
  font-family:var(--font-head); font-size:0.66rem; letter-spacing:0.24em;
  text-transform:uppercase; color:var(--text-muted); margin-bottom:16px;
  display:flex; align-items:center; gap:10px;
}
.section-label::before { content:''; display:block; width:28px; height:1px; background:#141414; }

.section-title { margin-bottom:18px; }
.section-desc { max-width:600px; font-size:1rem; line-height:1.8; color:var(--text-muted); }

/* DIVIDER */
.divider { width:100%; height:1px; background:var(--border); margin:0; }

/* BADGE */
.badge {
  display:inline-block; padding:6px 14px; border-radius:0;
  font-size:0.64rem; letter-spacing:0.18em; text-transform:uppercase;
  font-family:var(--font-head); font-weight:500; border:1px solid #141414;
}
.badge-accent { background:transparent; color:#141414; border:1px solid #141414; }
.badge-gold   { background:#141414; color:#fff; border:1px solid #141414; }

/* PRODUCT CARDS */
.product-card {
  background:var(--bg); border:1px solid var(--border); border-radius:0;
  overflow:hidden; transition:border-color var(--transition); position:relative;
}
.product-card:hover { border-color:#141414; }
.product-card-img {
  width:100%; aspect-ratio:1/1; background:var(--bg3);
  display:flex; align-items:center; justify-content:center; overflow:hidden; position:relative;
}
.product-card-img img {
  width:100%; height:100%; object-fit:contain;
  transition:transform 0.5s ease; position:relative; z-index:1;
}
.product-card:hover .product-card-img img { transform:scale(1.03); }
.product-card-badge { position:absolute; top:12px; left:12px; z-index:10; }
.product-card-body { padding:22px; }
.product-card-name {
  font-family:var(--font-head); font-size:0.95rem; letter-spacing:0.06em;
  text-transform:uppercase; color:var(--text); margin-bottom:10px;
}
.product-card-desc {
  font-size:0.85rem; color:var(--text-muted); line-height:1.6; margin-bottom:18px;
  display:-webkit-box; -webkit-line-clamp:3; -webkit-box-orient:vertical; overflow:hidden;
}
.product-card-footer { display:flex; align-items:center; justify-content:space-between; }
.product-coming-soon {
  font-family:var(--font-head); font-size:0.7rem; letter-spacing:0.12em;
  text-transform:uppercase; color:var(--text);
}

/* GRID */
.products-grid {
  display:grid; grid-template-columns:repeat(auto-fill, minmax(240px,1fr)); gap:24px;
}

/* PARTICLES (disabled in light theme) */
#particles-canvas { display:none; }

/* SCROLL ANIMATIONS */
.reveal { opacity:0; transform:translateY(30px); transition:opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }
.reveal-left  { opacity:0; transform:translateX(-30px); transition:opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible { opacity:1; transform:translateX(0); }
.reveal-right { opacity:0; transform:translateX(30px);  transition:opacity 0.7s ease, transform 0.7s ease; }
.reveal-right.visible { opacity:1; transform:translateX(0); }

/* FOOTER */
.footer { background:var(--bg2); border-top:1px solid var(--border); padding:56px 0 28px; position:relative; z-index:1; }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:44px; margin-bottom:44px; }
.footer-brand-name {
  font-family:var(--font-head); font-size:1.2rem; letter-spacing:0.06em;
  text-transform:uppercase; color:var(--text); font-weight:800; margin-bottom:14px;
}
.footer-brand-name span { color:var(--text); }
.footer-desc { font-size:0.85rem; line-height:1.7; margin-bottom:20px; color:var(--text-muted); }
.footer-social { display:flex; gap:14px; }
.footer-social a {
  width:40px; height:40px; border-radius:0; border:1px solid var(--border);
  display:flex; align-items:center; justify-content:center;
  color:var(--text-muted); font-size:0.95rem; transition:var(--transition);
}
.footer-social a:hover { border-color:#141414; color:#141414; background:transparent; }
.footer-col-title {
  font-family:var(--font-head); font-size:0.7rem; letter-spacing:0.16em;
  text-transform:uppercase; color:var(--text); margin-bottom:18px; font-weight:600;
}
.footer-col ul { display:flex; flex-direction:column; gap:10px; }
.footer-col ul a { font-size:0.85rem; color:var(--text-muted); transition:color var(--transition); }
.footer-col ul a:hover { color:#141414; }
.footer-address { font-size:0.8rem; color:var(--text-dim); line-height:1.7; }
.footer-bottom {
  border-top:1px solid var(--border); padding-top:26px;
  display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:12px;
}
.footer-bottom p { font-size:0.78rem; color:var(--text-dim); }
.footer-bottom a { color:var(--text-dim); transition:color var(--transition); }
.footer-bottom a:hover { color:#141414; }
.footer-official { display:flex; align-items:center; gap:8px; font-size:0.76rem; color:var(--text-muted); }
.footer-official i { font-size:0.9rem; }

/* FORM */
.form-group { margin-bottom:20px; }
.form-label {
  display:block; font-family:var(--font-head); font-size:0.68rem;
  letter-spacing:0.14em; text-transform:uppercase; color:var(--text-muted); margin-bottom:8px;
}
.form-control {
  width:100%; padding:13px 16px; background:var(--bg); border:1px solid var(--border);
  border-radius:0; color:var(--text); font-family:var(--font-body); font-size:0.95rem;
  transition:border-color var(--transition); outline:none;
}
.form-control:focus { border-color:#141414; }
.form-control::placeholder { color:var(--text-dim); }
textarea.form-control { resize:vertical; min-height:140px; }

/* ACCORDION */
.accordion-item {
  border:1px solid var(--border); border-radius:0; margin-bottom:-1px;
  overflow:hidden; transition:border-color var(--transition);
}
.accordion-item.open { border-color:#141414; }
.accordion-trigger {
  width:100%; display:flex; align-items:center; justify-content:space-between;
  padding:20px 22px; background:var(--bg);
  font-family:var(--font-head); font-size:0.85rem; letter-spacing:0.04em; text-transform:uppercase;
  color:var(--text); cursor:pointer; border:none; text-align:left; transition:background var(--transition);
}
.accordion-trigger:hover, .accordion-item.open .accordion-trigger { background:var(--surface2); }
.accordion-icon {
  width:26px; height:26px; border-radius:0; border:1px solid var(--border);
  display:flex; align-items:center; justify-content:center;
  color:#141414; font-size:0.8rem; flex-shrink:0; transition:transform var(--transition);
}
.accordion-item.open .accordion-icon { transform:rotate(45deg); }
.accordion-body { max-height:0; overflow:hidden; transition:max-height 0.4s ease; padding:0 22px; background:var(--bg); }
.accordion-body p { padding:0 0 20px; font-size:0.92rem; color:var(--text-muted); }

/* HERO */
.hero { min-height:92vh; display:flex; align-items:center; justify-content:center; position:relative; overflow:hidden; text-align:center; }
.hero-bg { position:absolute; inset:0; z-index:0; background:var(--bg2); }
.hero-content { position:relative; z-index:2; padding:140px 24px 80px; }
.hero-badge { margin-bottom:26px; }
.hero-title { margin-bottom:22px; }
.hero-title .line1 { display:block; }
.hero-title .line2 { display:block; color:var(--text); font-style:normal; }
.hero-desc { max-width:560px; margin:0 auto 36px; font-size:1.05rem; line-height:1.8; color:var(--text-muted); }
.hero-actions { display:flex; align-items:center; justify-content:center; gap:14px; flex-wrap:wrap; }
.hero-scroll {
  position:absolute; bottom:36px; left:50%; transform:translateX(-50%); z-index:2;
  display:flex; flex-direction:column; align-items:center; gap:8px;
  color:var(--text-dim); font-size:0.66rem; letter-spacing:0.18em; text-transform:uppercase; font-family:var(--font-head);
}
.hero-scroll-line { width:1px; height:54px; background:#141414; opacity:0.35; animation:scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100%{opacity:0.2} 50%{opacity:0.6} }

/* STATS ROW */
.stats-row {
  display:grid; grid-template-columns:repeat(3,1fr); gap:1px;
  background:var(--border); border:1px solid var(--border); border-radius:0; overflow:hidden; margin-top:72px;
}
.stat-item { background:var(--bg); padding:34px 24px; text-align:center; }
.stat-number {
  font-family:var(--font-head); font-size:2rem; color:var(--text);
  letter-spacing:0.02em; margin-bottom:8px; display:block; font-weight:700;
}
.stat-label { font-size:0.74rem; color:var(--text-muted); letter-spacing:0.1em; text-transform:uppercase; }

/* GIF BLOCK */
.gifs-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; }
.gif-item { aspect-ratio:9/16; border-radius:0; overflow:hidden; position:relative; background:var(--surface2); }
.gif-item img { width:100%; height:100%; object-fit:cover; }
.gif-overlay { position:absolute; inset:0; background:linear-gradient(to top, rgba(0,0,0,0.25) 0%, transparent 50%); }

/* VALUES */
.values-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--border); border:1px solid var(--border); }
.value-card { background:var(--bg); border:none; border-radius:0; padding:40px 28px; text-align:center; transition:background var(--transition); }
.value-card:hover { background:var(--surface2); }
.value-icon {
  width:54px; height:54px; border-radius:0; background:transparent; border:1px solid #141414;
  display:flex; align-items:center; justify-content:center; font-size:1.3rem; color:#141414; margin:0 auto 20px;
}
.value-title { font-family:var(--font-head); font-size:0.95rem; margin-bottom:12px; letter-spacing:0.04em; }
.value-desc { font-size:0.86rem; color:var(--text-muted); }

/* TRUST STRIP */
.trust-strip { background:var(--bg2); border-top:1px solid var(--border); border-bottom:1px solid var(--border); padding:26px 0; }
.trust-items { display:flex; align-items:center; justify-content:center; flex-wrap:wrap; gap:38px; }
.trust-item {
  display:flex; align-items:center; gap:10px;
  font-family:var(--font-head); font-size:0.7rem; letter-spacing:0.12em; text-transform:uppercase; color:var(--text-muted);
}
.trust-item i { font-size:1.05rem; color:#141414; }

/* PRODUCT PAGE */
.product-hero { padding:130px 0 70px; }
.product-hero-grid { display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:start; }
.product-main-img {
  width:100%; aspect-ratio:1/1; background:var(--bg3); border-radius:0; overflow:hidden;
  border:1px solid var(--border); margin-bottom:14px; display:flex; align-items:center; justify-content:center;
}
.product-main-img img { width:100%; height:100%; object-fit:contain; }
.product-thumbs { display:flex; gap:10px; flex-wrap:wrap; }
.product-thumb {
  width:76px; height:76px; border-radius:0; overflow:hidden;
  border:1px solid var(--border); cursor:pointer; transition:border-color var(--transition);
  background:var(--bg3); flex-shrink:0;
}
.product-thumb.active, .product-thumb:hover { border-color:#141414; }
.product-thumb img { width:100%; height:100%; object-fit:contain; }
.product-info-badge { margin-bottom:20px; }
.product-info-title { margin-bottom:14px; }
.product-info-status {
  display:inline-flex; align-items:center; gap:8px;
  font-family:var(--font-head); font-size:0.7rem; letter-spacing:0.14em; text-transform:uppercase;
  color:var(--text-muted); margin-bottom:26px;
}
.product-info-status::before { content:''; width:7px; height:7px; border-radius:50%; background:#141414; }
.product-info-desc { margin-bottom:30px; font-size:1rem; line-height:1.8; color:var(--text-muted); }
.product-bullets { margin-bottom:30px; }
.product-bullets li {
  display:flex; align-items:flex-start; gap:12px;
  font-size:0.9rem; color:var(--text-muted); padding:11px 0; border-bottom:1px solid var(--border);
}
.product-bullets li:last-child { border-bottom:none; }
.product-bullets i { color:#141414; margin-top:3px; flex-shrink:0; }
.product-cta-box { background:var(--surface2); border:1px solid var(--border); border-radius:0; padding:26px; }
.product-cta-msg {
  font-family:var(--font-head); font-size:0.72rem; letter-spacing:0.12em; text-transform:uppercase;
  color:var(--text); margin-bottom:16px; display:flex; align-items:center; gap:8px;
}
.product-cta-msg i { font-size:1rem; }

/* PAGE HERO */
.page-hero { padding:150px 0 70px; text-align:center; position:relative; overflow:hidden; }
.page-hero-bg { position:absolute; inset:0; background:var(--bg2); }
.page-hero-content { position:relative; z-index:1; }
.breadcrumb {
  display:flex; align-items:center; justify-content:center; gap:10px;
  font-size:0.74rem; letter-spacing:0.06em; color:var(--text-dim); margin-top:18px; flex-wrap:wrap; text-transform:uppercase;
}
.breadcrumb a { transition:color var(--transition); }
.breadcrumb a:hover { color:#141414; }
.breadcrumb i { font-size:0.6rem; }

/* CONTACT */
.contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:start; }
.contact-info-item { display:flex; gap:16px; margin-bottom:26px; }
.contact-info-icon {
  width:44px; height:44px; border-radius:0; background:transparent; border:1px solid #141414;
  display:flex; align-items:center; justify-content:center; color:#141414; flex-shrink:0; font-size:1rem;
}
.contact-info-text h4 { font-family:var(--font-head); font-size:0.85rem; margin-bottom:4px; letter-spacing:0.04em; }
.contact-info-text p { font-size:0.86rem; color:var(--text-muted); }

/* LEGAL */
.legal-content { max-width:780px; margin:0 auto; }
.legal-content h2 { font-size:1.2rem; margin:44px 0 16px; color:var(--text); text-transform:uppercase; letter-spacing:0.04em; }
.legal-content h3 { font-size:1rem; margin:26px 0 12px; color:var(--text); font-family:var(--font-head); font-weight:600; text-transform:none; letter-spacing:0; }
.legal-content p  { margin-bottom:16px; font-size:0.92rem; color:var(--text-muted); }
.legal-content ul { padding-left:20px; margin-bottom:16px; }
.legal-content ul li { font-size:0.92rem; color:var(--text-muted); margin-bottom:8px; list-style:disc; }
.legal-content a   { color:#141414; text-decoration:underline; }
.legal-date { font-size:0.8rem; color:var(--text-dim); margin-top:4px; }

/* ABOUT */
.about-story { display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center; }
.about-img-wrap { border-radius:0; overflow:hidden; border:1px solid var(--border); aspect-ratio:4/5; background:var(--bg3); }
.about-img-wrap img { width:100%; height:100%; object-fit:cover; }
.team-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--border); border:1px solid var(--border); }
.team-card { background:var(--bg); border:none; border-radius:0; padding:32px 24px; text-align:center; transition:background var(--transition); }
.team-card:hover { background:var(--surface2); }
.team-avatar {
  width:76px; height:76px; border-radius:50%; background:transparent; border:1px solid #141414;
  display:flex; align-items:center; justify-content:center; font-size:1.8rem; margin:0 auto 16px;
}
.team-name { font-family:var(--font-head); font-size:0.95rem; margin-bottom:6px; letter-spacing:0.04em; }
.team-role { font-size:0.78rem; color:var(--text-muted); letter-spacing:0.08em; text-transform:uppercase; }

/* PATTERN OVERLAY (disabled) */
.pattern-overlay { position:relative; overflow:hidden; }
.pattern-overlay::after { content:none; }
.pattern-overlay > * { position:relative; z-index:1; }

/* RESPONSIVE */
@media(max-width:1024px) {
  .footer-grid { grid-template-columns:1fr 1fr; }
  .gifs-grid { grid-template-columns:repeat(2,1fr); }
  .about-story { grid-template-columns:1fr; gap:36px; }
  .product-hero-grid { grid-template-columns:1fr; }
  .contact-grid { grid-template-columns:1fr; }
  .values-grid { grid-template-columns:repeat(2,1fr); }
  .team-grid { grid-template-columns:repeat(2,1fr); }
}
@media(max-width:768px) {
  .nav-links { display:none; }
  .hamburger { display:flex; }
  .nav-cta { display:none; }
  .footer-grid { grid-template-columns:1fr; gap:30px; }
  .gifs-grid { grid-template-columns:repeat(2,1fr); }
  .products-grid { grid-template-columns:1fr; }
  .values-grid { grid-template-columns:1fr; }
  .team-grid { grid-template-columns:1fr; }
  .footer-bottom { flex-direction:column; text-align:center; }
  .trust-items { gap:22px; }
}
@media(max-width:480px) {
  .stats-row { grid-template-columns:1fr 1fr; }
  .gifs-grid { grid-template-columns:1fr 1fr; }
  .hero-actions { flex-direction:column; align-items:stretch; }
  .hero-actions .btn { text-align:center; justify-content:center; }
  .section-pad { padding:64px 0; }
}

/* ANNOUNCEMENT BAR */
.topbar {
  position:fixed; top:0; left:0; right:0; z-index:1001; height:34px;
  display:flex; align-items:center; justify-content:center;
  background:#141414; color:#f3f2ef; padding:0 14px; text-align:center;
  font-family:var(--font-head); font-size:0.62rem; letter-spacing:0.2em; text-transform:uppercase;
}
.topbar a { text-decoration:underline; }
.navbar { top:34px; }

/* MARQUEE TICKER */
.marquee { overflow:hidden; border-top:1px solid var(--border); border-bottom:1px solid var(--border); background:var(--bg); padding:15px 0; }
.marquee-track { display:flex; align-items:center; white-space:nowrap; width:max-content; animation:marquee 32s linear infinite; }
.marquee-item {
  font-family:var(--font-head); font-size:0.72rem; letter-spacing:0.22em; text-transform:uppercase;
  color:var(--text-muted); padding:0 26px;
}
.marquee-sep { color:#141414; font-size:0.7rem; }
@keyframes marquee { from { transform:translateX(0); } to { transform:translateX(-50%); } }

/* HERO SPLIT */
.hero { min-height:auto; text-align:left; align-items:stretch; }
.hero .hero-content { max-width:var(--max-w); margin:0 auto; padding:150px 24px 72px; width:100%; }
.hero-split { display:grid; grid-template-columns:1.05fr 0.95fr; gap:54px; align-items:center; }
.hero-copy .hero-desc { margin-left:0; margin-right:0; }
.hero-copy .hero-actions { justify-content:flex-start; }
.hero-media { aspect-ratio:1/1; background:var(--bg3); border:1px solid var(--border); display:flex; align-items:center; justify-content:center; overflow:hidden; }
.hero-media img { width:100%; height:100%; object-fit:contain; }
@media(max-width:768px) {
  .hero { text-align:center; }
  .hero-split { grid-template-columns:1fr; gap:30px; }
  .hero-copy .hero-desc { margin-left:auto; margin-right:auto; }
  .hero-copy .hero-actions { justify-content:center; }
}
