/* =========================================================
   VELARONI — Studio Site
   Type tokens, color tokens, motion tokens, cinematic hero.
   ========================================================= */

:root {
  /* Color */
  --bg: #F5F4F0;          /* bone */
  --ink: #0E0E0C;         /* carbon */
  --quiet: #807E78;       /* warm gray */
  --accent: #B89968;      /* burnished champagne */
  --cream-dark: #EDECE7;
  --line: rgba(14, 14, 12, 0.08);
  --line-strong: rgba(14, 14, 12, 0.18);
  --warm-white: #FAF6EE;

  /* Type */
  --sans: 'Schibsted Grotesk', 'Helvetica Neue', Arial, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --dur-fast: 320ms;
  --dur-mid: 600ms;
  --dur-slow: 1000ms;

  /* Layout */
  --pad-x-d: 48px;
  --pad-x-m: 24px;
  --max: 1440px;
}

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

html {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  /* overflow-x: hidden breaks position: sticky — use overflow-x: clip on body instead */
}

body {
  background: var(--bg);
  color: var(--ink);
  position: relative;
  overflow-x: clip;       /* prevents horizontal scroll without breaking sticky */
  min-height: 100vh;
}

/* Film grain */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

img, video, canvas, svg { display: block; max-width: 100%; }

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

::selection { background: var(--ink); color: var(--bg); }

/* =========================================================
   Custom 21:9 letterbox cursor
   ========================================================= */
@media (hover: hover) and (pointer: fine) {
  html, body, a, button, .nav, .cursor-target { cursor: none; }
}

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 42px;
  height: 18px;
  border: 1px solid var(--ink);
  pointer-events: none;
  z-index: 9999;
  transform: translate3d(-100px, -100px, 0) translate(-50%, -50%);
  transition: width 0.5s var(--ease-out), height 0.5s var(--ease-out),
              border-width 0.3s var(--ease-out);
  mix-blend-mode: difference;
  border-color: #fff;
}

.cursor.is-large {
  width: 84px;
  height: 36px;
}

.cursor.is-hidden { opacity: 0; }

@media (hover: none), (pointer: coarse) {
  .cursor { display: none; }
}

/* =========================================================
   Typography utilities
   ========================================================= */
.mono { font-family: var(--mono); font-weight: 400; letter-spacing: 0.14em; text-transform: uppercase; font-size: 10.5px; }
.italic, em { font-style: italic; font-weight: 400; }
.accent { color: var(--accent); }
.dim { opacity: 0.55; }

/* =========================================================
   Loader
   ========================================================= */
.loader {
  position: fixed;
  inset: 0;
  z-index: 5000;
  background: #0a0805;
  color: var(--warm-white);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0 var(--pad-x-d) 48px;
  transition: opacity 1.2s var(--ease-out), visibility 1.2s var(--ease-out);
}

.loader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

.loader-mark {
  font-family: var(--sans);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  letter-spacing: 0.42em;
  color: var(--warm-white);
}

.loader-meta {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  opacity: 0.7;
}

.loader-bar {
  margin-top: 6px;
  width: 100%;
  max-width: 320px;
  height: 1px;
  background: rgba(250, 246, 238, 0.18);
  overflow: hidden;
}

.loader-bar span {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--accent);
  transition: width 0.4s var(--ease-out);
}

/* =========================================================
   Navigation
   ========================================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 26px var(--pad-x-d);
  display: flex;
  justify-content: space-between;
  align-items: center;
  mix-blend-mode: difference;
  color: #fff;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.nav-mark {
  font-size: 13px;
  letter-spacing: 0.36em;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  position: relative;
  padding: 6px 0;
  transition: opacity var(--dur-fast) var(--ease-out);
}

.nav-links a:hover { opacity: 0.6; }

@media (max-width: 720px) {
  .nav { padding: 20px var(--pad-x-m); }
  .nav-links { gap: 18px; }
  .nav-links a:nth-child(2),
  .nav-links a:nth-child(3) { display: none; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  height: 700vh;
  /* On mobile use 700svh so dynamic browser chrome (iOS address bar)
     doesn't cause hero length to shift while scrolling. */
  height: 700svh;
  background: #0a0805;
}

.hero-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;   /* small viewport height — stable on iOS */
  width: 100%;
  overflow: hidden;
  background: #0a0805;
}

.frame-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  background: #0a0805;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  background:
    radial-gradient(ellipse at center, transparent 35%, rgba(0,0,0,0.55) 100%),
    linear-gradient(to bottom, rgba(0,0,0,0.42) 0%, rgba(0,0,0,0.05) 22%, rgba(0,0,0,0.0) 50%, rgba(0,0,0,0.15) 72%, rgba(0,0,0,0.62) 100%);
  mix-blend-mode: multiply;
}


/* =========================================================
   Overlays
   ========================================================= */
.overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  padding: clamp(80px, 10vh, 120px) clamp(28px, 4vw, 56px) clamp(48px, 6vh, 72px);
  color: var(--warm-white);
  pointer-events: none;
  opacity: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 24px;
  will-change: opacity;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.35);
}

.ov-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}

.ov-row--bottom { align-items: flex-end; }
.ov-row--bottom-right { justify-content: flex-end; }

.ov-row .mono { font-size: 10.5px; }

.ov-center {
  align-self: center;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.ov-center--arrival { gap: 6px; }

/* Wordmark — the giant VELARONI */
.wordmark {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(60px, 11vw, 180px);
  letter-spacing: -0.02em;
  line-height: 0.95;
  color: var(--warm-white);
}

.subline {
  font-size: clamp(16px, 1.6vw, 22px);
  letter-spacing: 0.005em;
  opacity: 0.86;
  font-style: italic;
  font-weight: 400;
}

.headline {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(28px, 3.5vw, 52px);
  line-height: 1.12;
  letter-spacing: -0.005em;
  max-width: 24ch;
  margin: 0 auto;
}

.quote {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(24px, 3vw, 44px);
  line-height: 1.22;
  letter-spacing: -0.005em;
  max-width: 26ch;
  margin: 0 auto;
}

.attribution {
  font-size: 10px;
  letter-spacing: 0.32em;
  opacity: 0.55;
  margin-top: 14px;
}

.body-line {
  font-family: var(--sans);
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.45;
  max-width: 32ch;
  opacity: 0.92;
}

/* CTAs */
.ctas {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  pointer-events: auto;
  transition: background var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out),
              transform var(--dur-fast) var(--ease-out);
  white-space: nowrap;
}

.btn .arr {
  font-family: var(--sans);
  font-weight: 300;
  display: inline-block;
  transition: transform var(--dur-fast) var(--ease-out);
}

.btn:hover .arr { transform: translateX(4px); }

.btn--ghost-light {
  border: 1px solid rgba(250, 246, 238, 0.6);
  color: var(--warm-white);
  padding: 14px 22px;
}
.btn--ghost-light:hover {
  background: var(--warm-white);
  color: var(--ink);
  border-color: var(--warm-white);
}

.btn--link-light {
  color: var(--warm-white);
  padding: 14px 4px;
  border-bottom: 1px solid rgba(250, 246, 238, 0.35);
}
.btn--link-light:hover { border-bottom-color: var(--warm-white); }

.btn--ghost-dark {
  border: 1px solid rgba(245, 244, 240, 0.5);
  color: var(--bg);
  padding: 16px 26px;
}
.btn--ghost-dark:hover {
  background: var(--bg);
  color: var(--ink);
}

.btn--solid-ink {
  background: var(--ink);
  color: var(--bg);
  padding: 16px 26px;
}
.btn--solid-ink:hover { background: var(--accent); color: var(--ink); }

/* Scroll cue (inside Arrival overlay) */
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0.78;
  pointer-events: none;
}

.scroll-cue-line {
  width: 1px;
  height: 38px;
  background: linear-gradient(to bottom, rgba(250, 246, 238, 0), rgba(250, 246, 238, 0.7), rgba(250, 246, 238, 0));
  position: relative;
  overflow: hidden;
}

.scroll-cue-line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 0%, var(--warm-white) 50%, transparent 100%);
  transform: translateY(-100%);
  animation: scroll-cue-pulse 2.4s var(--ease-in-out) infinite;
}

@keyframes scroll-cue-pulse {
  0%   { transform: translateY(-100%); }
  60%  { transform: translateY(100%); }
  100% { transform: translateY(100%); }
}

.scroll-cue-label {
  font-size: 9.5px;
  letter-spacing: 0.34em;
  opacity: 0.65;
}

@media (prefers-reduced-motion: reduce) {
  .scroll-cue-line::after { animation: none; }
}

/* =========================================================
   Below-hero sections
   ========================================================= */
.section {
  position: relative;
  padding: clamp(80px, 12vh, 160px) var(--pad-x-d);
  background: var(--bg);
  color: var(--ink);
}

.section-header {
  max-width: var(--max);
  margin: 0 auto clamp(40px, 6vh, 80px);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

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

.section-label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--accent);
}

.section-title {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.005em;
  max-width: 22ch;
  color: var(--ink);
}

.section-header--center .section-title {
  max-width: 24ch;
}

/* ---------- Work ---------- */
.section--work {
  background: var(--bg);
}

.work-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(28px, 4vw, 64px) clamp(28px, 4vw, 64px);
}

.work-card {
  display: flex;
  flex-direction: column;
  gap: 22px;
  transition: transform var(--dur-mid) var(--ease-out);
}

.work-card:hover { transform: translateY(-6px); }

.work-thumb {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 2px;
  overflow: hidden;
  transition: transform var(--dur-mid) var(--ease-out),
              box-shadow var(--dur-mid) var(--ease-out);
}

.work-card:hover .work-thumb {
  box-shadow: 0 30px 80px -20px rgba(14, 14, 12, 0.25);
}

.work-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.0) 60%, rgba(0,0,0,0.35) 100%);
  pointer-events: none;
}

.thumb-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  font-size: 9px;
  letter-spacing: 0.28em;
  color: rgba(250, 246, 238, 0.78);
}

.thumb-status {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  font-size: 9px;
  letter-spacing: 0.28em;
  padding: 5px 9px;
  border: 1px solid rgba(250, 246, 238, 0.38);
  color: rgba(250, 246, 238, 0.85);
}

.status--featured {
  border-color: var(--accent);
  color: var(--accent);
}

.w1 { background: linear-gradient(160deg, #7396B0 0%, #2E5072 45%, #0E1F30 100%); }
.w2 { background: linear-gradient(160deg, #B89B6F 0%, #6E5436 45%, #2A1F12 100%); }
.w3 { background: linear-gradient(160deg, #243349 0%, #3A5070 35%, #0A0E18 100%); }
.w4 { background: linear-gradient(160deg, #C9B58F 0%, #8FA88A 40%, #3D5538 75%, #1A2818 100%); }

.work-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.work-title {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.15;
  letter-spacing: -0.005em;
}

.work-desc {
  font-size: 10.5px;
  letter-spacing: 0.28em;
  color: var(--quiet);
}

/* ---------- Process ---------- */
.section--process {
  background: var(--cream-dark);
}

.process-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-strong);
}

.phase {
  padding: 36px 32px 36px 0;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.phase:last-child { border-right: none; }
.phase:not(:first-child) { padding-left: 32px; }

.phase-num {
  font-size: 10px;
  letter-spacing: 0.32em;
  color: var(--accent);
}

.phase-title {
  font-family: var(--sans);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1.1;
  margin-bottom: 6px;
}

.phase-body {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink);
  opacity: 0.82;
  max-width: 32ch;
}

/* ---------- Rates ---------- */
.section--rates {
  background: var(--bg);
  text-align: center;
}

.rate-card {
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(40px, 6vh, 72px) 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.rate-display {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 14px;
}

.rate-from {
  font-family: var(--sans);
  font-style: italic;
  font-size: clamp(14px, 1.4vw, 18px);
  color: var(--accent);
}

.rate-figure {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(64px, 10vw, 140px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.rate-unit {
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--quiet);
  align-self: flex-end;
  padding-bottom: clamp(12px, 2vw, 24px);
}

.rate-sub {
  font-size: clamp(15px, 1.6vw, 20px);
  font-style: italic;
  color: var(--ink);
  max-width: 36ch;
}

.rate-scarcity {
  font-size: 11px;
  letter-spacing: 0.36em;
  color: var(--accent);
}

.rate-includes {
  max-width: var(--max);
  margin: 56px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: left;
}

.includes-item {
  padding: 28px 24px 28px 0;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.includes-item:not(:first-child) { padding-left: 24px; }
.includes-item:last-child { border-right: none; }

.includes-item h4 {
  font-family: var(--sans);
  font-weight: 400;
  font-style: italic;
  font-size: 22px;
  letter-spacing: -0.005em;
}

.includes-item .mono {
  font-size: 10px;
  letter-spacing: 0.28em;
}

/* ---------- Contact (dark inverse) ---------- */
.section--contact {
  background: var(--ink);
  color: var(--bg);
  padding-top: clamp(100px, 16vh, 180px);
  padding-bottom: clamp(100px, 16vh, 180px);
}

.section--contact .section-label { color: var(--accent); }
.section--contact .section-title { color: var(--bg); }

.contact-body {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 4vh, 44px);
  align-items: flex-start;
}

.contact-email {
  font-family: var(--sans);
  font-size: clamp(36px, 6vw, 92px);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--bg);
  border-bottom: 1px solid rgba(245, 244, 240, 0.3);
  padding-bottom: 6px;
  transition: border-color var(--dur-fast) var(--ease-out),
              opacity var(--dur-fast) var(--ease-out);
}

.contact-email:hover {
  border-bottom-color: var(--accent);
  color: var(--accent);
}

.contact-sub {
  font-size: 11px;
  letter-spacing: 0.32em;
  color: rgba(245, 244, 240, 0.6);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: var(--bg);
  padding: 32px var(--pad-x-d);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  border-top: 1px solid rgba(245, 244, 240, 0.08);
}

.footer-mark {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.36em;
  color: var(--bg);
}

.footer-col--center { text-align: center; }
.footer-col--right { text-align: right; }

.footer .mono { font-size: 10px; letter-spacing: 0.28em; }

/* =========================================================
   Reveal animations
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   Reduced motion
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    transition-duration: 0.001s !important;
    scroll-behavior: auto !important;
  }
  .hero { height: 100vh; }
  .hero-stage { position: relative; }
  .cursor { display: none; }
}

/* =========================================================
   Mobile breakpoints
   ========================================================= */
@media (max-width: 1024px) {
  .work-grid,
  .process-grid,
  .rate-includes {
    grid-template-columns: repeat(2, 1fr);
  }
  .phase:nth-child(2) { border-right: none; }
  .phase:nth-child(3) { padding-left: 0; }
  .phase:nth-child(3),
  .phase:nth-child(4) { border-top: 1px solid var(--line); padding-top: 32px; margin-top: 8px; }

  .includes-item:nth-child(2) { border-right: none; }
  .includes-item:nth-child(3) { padding-left: 0; }
  .includes-item:nth-child(3),
  .includes-item:nth-child(4) { border-top: 1px solid var(--line); padding-top: 24px; margin-top: 8px; }

  .footer { grid-template-columns: 1fr; gap: 12px; text-align: center; padding: 36px var(--pad-x-m); }
  .footer-col--right, .footer-col--center { text-align: center; }
}

@media (max-width: 768px) {
  :root {
    --pad-x-d: var(--pad-x-m);
  }

  /* Hero — same scroll-scrub flipbook, tighter typography */
  .overlay {
    padding: 84px 22px 56px;
    gap: 16px;
  }
  .ov-row { gap: 10px; }
  .ov-row .mono { font-size: 9px; letter-spacing: 0.24em; }
  .ov-row--top { flex-direction: column; align-items: flex-start; }
  .ov-row--bottom { flex-direction: column; align-items: flex-start; gap: 18px; }
  .ov-row--bottom-right { align-items: flex-end; }

  .wordmark { font-size: clamp(54px, 17vw, 88px); }
  .subline { font-size: clamp(14px, 4vw, 18px); }
  .headline { font-size: clamp(22px, 6.4vw, 32px); max-width: 18ch; }
  .quote { font-size: clamp(20px, 5.6vw, 30px); max-width: 20ch; }
  .body-line { font-size: clamp(12.5px, 3.4vw, 14px); max-width: 28ch; }
  .attribution { font-size: 9px; }

  .ctas { gap: 12px; }
  .btn--ghost-light, .btn--ghost-dark { padding: 12px 16px; font-size: 11px; }
  .btn--link-light { padding: 10px 0; font-size: 11px; }

  .scroll-cue { bottom: 16px; }
  .scroll-cue-line { height: 28px; }
  .scroll-cue-label { font-size: 8.5px; letter-spacing: 0.28em; }

  .work-grid {
    grid-template-columns: 1fr;
  }

  .process-grid,
  .rate-includes {
    grid-template-columns: 1fr;
  }

  .phase {
    border-right: none !important;
    border-top: 1px solid var(--line);
    padding: 32px 0 !important;
  }
  .phase:first-child { border-top: none; padding-top: 0 !important; }

  .includes-item {
    border-right: none !important;
    border-top: 1px solid var(--line);
    padding: 20px 0 !important;
  }
  .includes-item:first-child { border-top: none; }

  .section { padding: 80px var(--pad-x-m); }
}

@media (max-width: 480px) {
  .nav { padding: 18px var(--pad-x-m); }
  .nav-mark { font-size: 11px; letter-spacing: 0.28em; }
  .nav-links a:nth-child(2),
  .nav-links a:nth-child(3) { display: none; }
}
