/** Shopify CDN: Minification failed

Line 13:0 All "@import" rules must come first

**/
.hoot-section { overflow-x: hidden; }
html, body { overflow-x: hidden; }
/* ============================================================
   HOOT — Homepage styles
   Loaded by sections/hoot-*.liquid
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
  --hoot-accent: #39FF14;
  --hoot-accent-soft: rgba(57, 255, 20, 0.45);
  --hoot-bg: #000;
  --hoot-fg: #f0f0ee;
}

.hoot-section {
  background: var(--hoot-bg);
  color: var(--hoot-fg);
  font-family: "Space Grotesk", sans-serif;
  position: relative;
  padding: 80px 32px;
  border-top: 1px solid rgba(235, 235, 235, 0.08);
}
.hoot-section--no-border { border-top: 0; }
.hoot-section * { box-sizing: border-box; }
.hoot-inner { max-width: 1280px; margin: 0 auto; }
.hoot-inner--wide { max-width: 1440px; }

/* ── TEXTES ── */
.hoot-mono {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: rgba(235, 235, 235, 0.75);
}
.hoot-eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: rgba(235, 235, 235, 0.75);
  margin-bottom: 24px;
  text-transform: uppercase;
}
.hoot-h1 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  font-size: clamp(120px, 18vw, 280px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  margin: 0;
  color: var(--hoot-fg);
}
.hoot-h2 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  font-size: clamp(56px, 7vw, 112px);
  line-height: 0.9;
  letter-spacing: -0.03em;
  margin: 0;
  color: var(--hoot-fg);
}
.hoot-h3 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--hoot-fg);
}
.hoot-accent { color: var(--hoot-accent); }
.hoot-accent--glow {
  color: var(--hoot-accent);
  text-shadow: 0 0 12px var(--hoot-accent), 0 0 30px var(--hoot-accent);
}
body.hoot-lights-off .hoot-accent {
  text-shadow: 0 0 12px var(--hoot-accent), 0 0 30px var(--hoot-accent);
}

/* Buttons */
.hoot-btn-primary {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 26px;
  background: var(--hoot-accent); color: #000;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700; font-size: 13px; letter-spacing: 0.18em;
  text-decoration: none; border-radius: 999px; border: none;
  cursor: pointer; transition: box-shadow .3s;
}
body.hoot-lights-off .hoot-btn-primary {
  box-shadow: 0 0 14px var(--hoot-accent), 0 0 32px var(--hoot-accent);
}
.hoot-btn-ghost {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 22px; color: var(--hoot-fg);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600; font-size: 13px; letter-spacing: 0.18em;
  text-decoration: none;
  border: 1px solid rgba(235, 235, 235, 0.4);
  border-radius: 999px;
}

/* ===== Watch dial — pure CSS ===== */
.hoot-dial { position: relative; flex-shrink: 0; }
.hoot-dial__case {
  position: absolute; inset: 0; border-radius: 50%;
  background: linear-gradient(160deg, #1a1a1a 0%, #0a0a0a 55%, #050505 100%);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.9), inset 0 0 0 1px rgba(255,255,255,0.05);
}
.hoot-dial--white .hoot-dial__case {
  background: linear-gradient(160deg, #f4f4f2 0%, #d8d8d4 50%, #b8b8b4 100%);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5), inset 0 0 0 1px rgba(255,255,255,0.4);
}
.hoot-dial__crown {
  position: absolute; right: -2.5%; top: 58%;
  width: 6%; height: 9%; border-radius: 3px;
  background: inherit;
}
.hoot-dial__bezel {
  position: absolute; inset: 4%; border-radius: 50%;
  background: linear-gradient(160deg, #1f1f1f, #0c0c0c);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.3);
}
.hoot-dial--white .hoot-dial__bezel {
  background: linear-gradient(160deg, #e8e8e6, #c4c4c0);
}
.hoot-dial__inner {
  position: absolute; inset: 11%; border-radius: 50%;
  background: radial-gradient(circle at 50% 40%, #0e0e10 0%, #050506 100%);
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.6), inset 0 6px 20px rgba(0,0,0,0.6);
}
.hoot-dial--white .hoot-dial__inner {
  background: radial-gradient(circle at 50% 40%, #ffffff 0%, #ececec 100%);
}
body.hoot-lights-off .hoot-dial--white .hoot-dial__inner,
.hoot-dial--lit .hoot-dial--white .hoot-dial__inner {
  background: radial-gradient(circle at 50% 40%, #1c1c1e 0%, #0a0a0c 100%);
}
.hoot-dial__wordmark {
  position: absolute; top: 30%; left: 0; right: 0; text-align: center;
  font-family: "Space Grotesk", sans-serif; font-weight: 700;
  letter-spacing: 0.14em; font-size: 7%;
  color: rgba(235,235,235,0.9);
}
.hoot-dial--white .hoot-dial__wordmark { color: rgba(20,20,20,0.85); }
body.hoot-lights-off .hoot-dial--white .hoot-dial__wordmark { color: rgba(235,235,235,0.9); }

.hoot-dial__lume {
  position: absolute; top: 50%; left: 50%;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800; font-size: 11%; letter-spacing: -0.02em;
  color: var(--hoot-accent); line-height: 1;
}
body.hoot-lights-off .hoot-dial__lume,
.hoot-dial--lit .hoot-dial__lume {
  text-shadow: 0 0 6px var(--hoot-accent), 0 0 14px var(--hoot-accent), 0 0 28px var(--hoot-accent);
}
.hoot-dial__tick {
  position: absolute; top: 50%; left: 50%;
  background: rgba(235,235,235,0.95); border-radius: 1px;
}
.hoot-dial--white .hoot-dial__tick { background: rgba(15,15,15,0.85); }
body.hoot-lights-off .hoot-dial__tick,
.hoot-dial--lit .hoot-dial__tick { background: rgba(230,230,230,0.18); }

.hoot-dial__swiss {
  position: absolute; bottom: 12%; left: 0; right: 0; text-align: center;
  font-family: "JetBrains Mono", monospace;
  font-size: 2.2%; letter-spacing: 0.2em;
  color: rgba(235,235,235,0.8);
}
.hoot-dial--white .hoot-dial__swiss { color: rgba(15,15,15,0.75); }

.hoot-dial__hand {
  position: absolute; left: 50%; top: 50%;
  transform-origin: 50% 100%;
  background: #f0f0ee; border-radius: 2px;
}
.hoot-dial--white .hoot-dial__hand { background: #0a0a0a; }
body.hoot-lights-off .hoot-dial--white .hoot-dial__hand { background: #f0f0ee; }
.hoot-dial__hand--hour { width: 1.8%; height: 22%; margin-left: -0.9%; margin-top: -22%; }
.hoot-dial__hand--min { width: 1.2%; height: 32%; margin-left: -0.6%; margin-top: -32%; }
.hoot-dial__center {
  position: absolute; left: 50%; top: 50%;
  width: 4%; height: 4%; margin-left: -2%; margin-top: -2%;
  border-radius: 50%; background: #f0f0ee;
}
body.hoot-lights-off .hoot-dial__center,
.hoot-dial--lit .hoot-dial__center {
  box-shadow: 0 0 6px var(--hoot-accent);
}

.hoot-dial__halo {
  position: absolute; inset: -10%; border-radius: 50%;
  background: radial-gradient(circle, var(--hoot-accent-soft) 0%, rgba(0,0,0,0) 60%);
  filter: blur(40px); opacity: 0; transition: opacity .4s;
  pointer-events: none;
}
body.hoot-lights-off .hoot-dial__halo,
.hoot-dial--lit .hoot-dial__halo,
.hoot-card:hover .hoot-dial__halo { opacity: 0.55; }

/* ===== Hero ===== */
.hoot-hero { min-height: 100vh; display: flex; align-items: center; padding: 120px 32px 80px; }
.hoot-hero__grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center;
  width: 100%; max-width: 1440px; margin: 0 auto;
}
.hoot-hero__tagline {
  font-family: "Space Grotesk", sans-serif; font-weight: 700;
  font-size: clamp(24px, 3vw, 34px); letter-spacing: -0.01em;
  line-height: 1.1; margin-top: 32px; max-width: 520px;
}
.hoot-hero__ctas { display: flex; gap: 16px; margin-top: 40px; flex-wrap: wrap; }
.hoot-hero__meta {
  margin-top: 80px; display: flex; gap: 48px; flex-wrap: wrap;
  font-family: "JetBrains Mono", monospace; font-size: 11px;
  letter-spacing: 0.2em; color: rgba(235,235,235,0.7);
}
.hoot-hero__meta-label { color: rgba(235,235,235,0.5); margin-bottom: 6px; }
.hoot-hero__watch { display: flex; justify-content: center; position: relative; }

@media (max-width: 900px) {
  .hoot-hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hoot-section { padding: 60px 24px; }
}

/* ===== Manifesto ===== */
.hoot-manifesto-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 64px; align-items: start; }
.hoot-manifesto__quote {
  font-family: "Space Grotesk", sans-serif; font-weight: 600;
  font-size: clamp(36px, 4.5vw, 68px); line-height: 1.05;
  letter-spacing: -0.02em; margin: 0; text-wrap: pretty;
}
.hoot-manifesto__sub-grid { margin-top: 64px; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; max-width: 760px; }
.hoot-manifesto__sub-grid p {
  font-family: "Space Grotesk", sans-serif; font-size: 16px;
  line-height: 1.6; color: rgba(235,235,235,0.85); margin: 0;
}
@media (max-width: 900px) {
  .hoot-manifesto-grid, .hoot-manifesto__sub-grid { grid-template-columns: 1fr; }
}

/* ===== Signature / day-night ===== */
.hoot-sig-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; gap: 32px; flex-wrap: wrap; }
.hoot-sig-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.hoot-sig-panel { padding: 48px 40px 64px; border-radius: 4px; overflow: hidden; position: relative; }
.hoot-sig-panel--day { background: linear-gradient(180deg, #f0f0ee 0%, #d8d8d4 100%); color: rgba(15,15,15,0.85); }
.hoot-sig-panel--night { background: linear-gradient(180deg, #0a0a0c 0%, #050506 100%); color: rgba(235,235,235,0.85); }
.hoot-sig-panel__head { display: flex; justify-content: space-between; margin-bottom: 48px; font-family: "JetBrains Mono", monospace; font-size: 11px; letter-spacing: 0.3em; }
.hoot-sig-panel__watch { display: flex; justify-content: center; position: relative; }
.hoot-sig-panel p { margin-top: 48px; font-size: 15px; line-height: 1.6; }

.hoot-slider-block {
  margin-top: 64px; padding: 40px 48px;
  border: 1px solid rgba(235,235,235,0.2); border-radius: 4px;
  background: rgba(255,255,255,0.015);
}
.hoot-slider-grid { display: grid; grid-template-columns: 1fr 320px; gap: 56px; align-items: center; }
.hoot-slider-head { display: flex; justify-content: space-between; font-family: "JetBrains Mono", monospace; font-size: 11px; letter-spacing: 0.25em; color: rgba(235,235,235,0.7); margin-bottom: 28px; }
.hoot-range { width: 100%; -webkit-appearance: none; appearance: none; height: 4px; background: rgba(235,235,235,0.1); border-radius: 2px; outline: none; }
.hoot-range::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 18px; height: 18px; border-radius: 50%; background: var(--hoot-accent); box-shadow: 0 0 12px var(--hoot-accent), 0 0 24px var(--hoot-accent); cursor: pointer; border: 2px solid #000; }
.hoot-range::-moz-range-thumb { width: 18px; height: 18px; border-radius: 50%; background: var(--hoot-accent); box-shadow: 0 0 12px var(--hoot-accent); cursor: pointer; border: 2px solid #000; }
.hoot-slider-scale { display: flex; justify-content: space-between; margin-top: 16px; font-family: "JetBrains Mono", monospace; font-size: 10px; letter-spacing: 0.2em; color: rgba(235,235,235,0.55); }
.hoot-spec-strip { margin-top: 48px; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(235,235,235,0.15); border-bottom: 1px solid rgba(235,235,235,0.15); }
.hoot-spec { padding: 28px 24px; }
.hoot-spec + .hoot-spec { border-left: 1px solid rgba(235,235,235,0.15); }

@media (max-width: 900px) {
  .hoot-sig-grid, .hoot-slider-grid, .hoot-spec-strip { grid-template-columns: 1fr; }
  .hoot-spec + .hoot-spec { border-left: 0; border-top: 1px solid rgba(235,235,235,0.1); }
}

/* ===== Collection grid ===== */
.hoot-coll-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 64px; gap: 32px; flex-wrap: wrap; }
.hoot-coll-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(235,235,235,0.08); border: 1px solid rgba(235,235,235,0.08); }
.hoot-card { background: #070708; padding: 40px 32px 32px; cursor: pointer; transition: background .4s ease; min-height: 520px; display: flex; flex-direction: column; position: relative; overflow: hidden; text-decoration: none; color: var(--hoot-fg); }
.hoot-card:hover { background: linear-gradient(180deg, #0a0a0c 0%, #050506 100%); }
.hoot-card__top { display: flex; justify-content: space-between; font-family: "JetBrains Mono", monospace; font-size: 11px; letter-spacing: 0.25em; color: rgba(235,235,235,0.65); }
.hoot-card__watch-wrap { flex: 1; display: flex; align-items: center; justify-content: center; padding: 40px 0; position: relative; }
.hoot-card__watch { transition: transform .4s ease; }
.hoot-card:hover .hoot-card__watch { transform: scale(1.04); }

.hoot-card__img {
  width: 100%; max-width: 320px; height: auto; object-fit: contain;
  transition: transform .4s ease; display: block; border-radius: 4px;
}
.hoot-card:hover .hoot-card__img { transform: scale(1.04); }
.hoot-card__img-placeholder {
  font-family: "JetBrains Mono", monospace; font-size: 11px;
  letter-spacing: 0.3em; color: rgba(235,235,235,0.5); text-align: center;
}

.hoot-card__bottom { display: flex; justify-content: space-between; align-items: flex-end; }
.hoot-card__name { font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 22px; letter-spacing: -0.01em; margin-bottom: 8px; }
.hoot-card__sub { font-family: "JetBrains Mono", monospace; font-size: 11px; letter-spacing: 0.2em; color: rgba(235,235,235,0.65); }
.hoot-card__price { font-family: "Space Grotesk", sans-serif; font-weight: 600; font-size: 18px; white-space: nowrap; }
.hoot-card__cta { position: absolute; top: 24px; right: 32px; font-family: "JetBrains Mono", monospace; font-size: 11px; letter-spacing: 0.25em; color: var(--hoot-accent); text-shadow: 0 0 8px var(--hoot-accent); opacity: 0; transition: opacity .3s; }
.hoot-card:hover .hoot-card__cta { opacity: 1; }
@media (max-width: 900px) {
  .hoot-coll-grid { grid-template-columns: 1fr; }
}

/* ===== Owl ===== */
.hoot-owl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.hoot-owl-stats { margin-top: 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.hoot-owl-stat { border-top: 1px solid rgba(235,235,235,0.2); padding-top: 16px; }
.hoot-owl-stat__num { font-family: "Space Grotesk", sans-serif; font-weight: 800; font-size: 40px; line-height: 1; letter-spacing: -0.02em; }
.hoot-owl-stat__label { margin-top: 8px; font-family: "JetBrains Mono", monospace; font-size: 10px; letter-spacing: 0.2em; color: rgba(235,235,235,0.65); }
.hoot-owl-art {
  position: relative; height: 600px;
  background: #0a0a0c;
  border: 1px solid rgba(235,235,235,0.15);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
@media (max-width: 900px) { .hoot-owl-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ===== Awards ===== */
.hoot-awards-grid { display: grid; grid-template-columns: auto 1fr auto; gap: 64px; align-items: center; }
.hoot-awards-badge { padding: 20px 24px; border: 1px solid rgba(235,235,235,0.25); border-radius: 4px; text-align: center; min-width: 160px; }
@media (max-width: 900px) { .hoot-awards-grid { grid-template-columns: 1fr; gap: 24px; } }

/* ===== Lights-off button ===== */
.hoot-lights-toggle {
  position: fixed; top: 80px; right: 24px; z-index: 99;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(6px);
  border: 1px solid rgba(235,235,235,0.35); color: var(--hoot-fg);
  font-family: "JetBrains Mono", monospace; font-size: 11px;
  letter-spacing: 0.2em; padding: 8px 14px; cursor: pointer;
  border-radius: 999px; display: flex; align-items: center; gap: 8px;
}
.hoot-lights-toggle__dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(235,235,235,0.8); transition: all .3s; }
body.hoot-lights-off .hoot-lights-toggle__dot { background: var(--hoot-accent); box-shadow: 0 0 8px var(--hoot-accent), 0 0 16px var(--hoot-accent); }

/* ===== Nav menu font override — desktop + mobile popup ===== */
.header__nav .menu a,
.header__nav .menu__item > a,
.popup .menu a,
.popup .menu__item > a,
.popup__body .menu a,
.popup__body .menu__item > a,
.js-popup .menu a,
.js-popup .menu__item > a {
  font-family: "JetBrains Mono", monospace !important;
  letter-spacing: 0.15em !important;
  font-size: 12px !important;
  text-transform: uppercase !important;
  font-weight: 500 !important;
}

/* ===== Lignes blanches footer supprimées ===== */
.footer .hoot-section,
.footer__border { border-top: none !important; }

.hoot-owl-art { background: #000000 !important; }
::selection { background: var(--hoot-accent); color: #000; }
.hoot-owl-art {
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}.hoot-owl-art { background: #000000 !important; }
/* ── 00-06 hero mobile ── */
.hoot-hero__h1 {
  font-size: 120px !important;
  line-height: 1 !important;
}

@media (max-width: 600px) {
  .hoot-hero__h1 {
    font-size: 100px !important;
    line-height: 1 !important;
  }
}

body.hoot-lights-off .hoot-hero__h1 .hoot-accent {
  text-shadow: 0 0 12px var(--hoot-accent), 0 0 30px var(--hoot-accent);
}
/* ── Supprime la ligne blanche header mobile ── */
@media (max-width: 1024px) {
  #header {
    margin-bottom: 0 !important;
    border-bottom: none !important;
  }
}