/* ============================================================
   URSERVICE — Moderne skandinavisk
   ============================================================ */

:root {
  --bg:         #faf7f2;
  --bg-2:       #f2ede3;
  --bg-3:       #e9e2d4;
  --ink:        #141312;
  --ink-2:      #3a3834;
  --ink-3:      #6e6a62;
  --line:       #e0d9c9;
  --line-2:     #cfc6b2;
  --card:       #ffffff;

  --accent:     #a8824a;
  --accent-soft:#efe6d6;

  --r-sm: 6px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;

  --f-serif: "Fraunces", "Times New Roman", serif;
  --f-sans:  "Inter", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

  --gut: clamp(20px, 4vw, 56px);
  --max: 1320px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--f-sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1,h2,h3,h4 { margin: 0; font-family: var(--f-serif); font-weight: 400; letter-spacing: -0.02em; line-height: 1.02; }
p { margin: 0; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 20px var(--gut);
  background: color-mix(in oklab, var(--bg) 86%, transparent);
  backdrop-filter: saturate(1.2) blur(12px);
  -webkit-backdrop-filter: saturate(1.2) blur(12px);
  border-bottom: 1px solid color-mix(in oklab, var(--line) 70%, transparent);
}
.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 32px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav__mark {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  color: var(--ink);
  flex-shrink: 0;
}
.nav__mark svg { width: 20px; height: 20px; }
.nav__name { display: flex; flex-direction: column; line-height: 1; }
.nav__name-top {
  font-family: var(--f-serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.nav__name-sub {
  font-size: 11px;
  color: var(--ink-3);
  margin-top: 4px;
  letter-spacing: 0.02em;
}
.nav__links {
  display: flex;
  gap: 36px;
  justify-content: center;
  font-size: 15px;
  color: var(--ink-2);
}
.nav__links a {
  position: relative;
  padding: 6px 2px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  transition: color .2s;
}
.nav__links a:hover { color: var(--ink); }
.nav__links a::after {
  content: ""; position: absolute;
  left: 50%; bottom: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width .25s ease, left .25s ease;
}
.nav__links a:hover::after { left: 0; width: 100%; }
.nav__cta {
  display: inline-flex; align-items: center;
  padding: 13px 20px;
  min-height: 44px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  transition: transform .2s, background .2s;
}
.nav__cta:hover { transform: translateY(-1px); background: #000; }

/* Hamburger */
.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 44px;
  height: 44px;
  padding: 11px 9px;
  background: none;
  border: none;
  cursor: pointer;
  gap: 5px;
}
.nav__burger span {
  display: block;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
  transform-origin: center;
}
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav overlay */
.nav__links--open {
  display: flex !important;
  flex-direction: column;
  position: fixed;
  top: 69px;
  left: 0; right: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  padding: 24px var(--gut) 32px;
  gap: 0;
  z-index: 49;
  box-shadow: 0 20px 40px -20px rgba(20,19,18,0.15);
}
.nav__links--open a {
  font-size: 22px;
  font-family: var(--f-serif);
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  min-height: auto;
  justify-content: flex-start;
}
.nav__links--open a::after { display: none; }
.nav__links--open a:last-child { border-bottom: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: clamp(40px, 7vw, 96px) var(--gut) 0;
  position: relative;
}
.hero__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  min-height: 72vh;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
}
.eyebrow__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--accent) 18%, transparent);
  flex-shrink: 0;
}
.hero__title {
  font-size: clamp(36px, 5.4vw, 76px);
  font-weight: 300;
  margin: 26px 0 26px;
  letter-spacing: -0.035em;
  text-wrap: balance;
}
.hero__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.hero__lede {
  font-size: clamp(16px, 1.3vw, 19px);
  color: var(--ink-2);
  max-width: 46ch;
  line-height: 1.55;
}
.hero__ctas {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  min-height: 44px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .18s ease, background .2s, color .2s, border-color .2s;
  font-family: inherit;
}
.btn--primary {
  background: var(--ink);
  color: var(--bg);
}
.btn--primary:hover { transform: translateY(-1px); background: #000; }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
}
.btn--ghost:hover { border-color: var(--ink); }
.btn--block { width: 100%; }

.hero__facts {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 44px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  max-width: 520px;
}
.hero__facts > div { display: flex; flex-direction: column; gap: 6px; }
.hero__num {
  font-family: var(--f-serif);
  font-size: 30px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.hero__lbl {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* Hero visual — portrait */
.hero__visual {
  position: relative;
  aspect-ratio: 4/5;
  min-height: 480px;
}
.hero__portrait {
  position: absolute;
  inset: 0;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--bg-2);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.8) inset,
    0 30px 60px -30px rgba(20,19,18,0.25);
}
.hero__portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
}
.hero__portrait-tag {
  position: absolute;
  left: 24px; bottom: 24px;
  display: flex;
  flex-direction: column;
  padding: 14px 20px;
  background: color-mix(in oklab, var(--bg) 92%, transparent);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  border: 1px solid color-mix(in oklab, var(--ink) 8%, transparent);
}
.hero__portrait-tag-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.hero__portrait-tag-name {
  font-family: var(--f-serif);
  font-size: 16px;
  color: var(--ink);
  margin-top: 2px;
}

/* Floating animated watch card */
.hero__watch-card {
  position: absolute;
  right: -44px;
  bottom: 38px;
  width: 190px;
  height: 190px;
  padding: 18px;
  background: var(--card);
  border-radius: 28px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 30px 60px -20px rgba(20,19,18,0.3),
    0 4px 10px -4px rgba(20,19,18,0.1);
  display: grid;
  place-items: center;
  transform: rotate(-4deg);
}
.hero__watch-card::before {
  content: "Live · nu";
  position: absolute;
  top: -10px; left: 16px;
  padding: 4px 10px;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
  font-weight: 500;
}

/* Marquee */
.hero__marquee {
  max-width: var(--max);
  margin: 72px auto 0;
  padding: 24px var(--gut);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.marquee { overflow: hidden; }
.marquee__track {
  display: flex;
  gap: 44px;
  white-space: nowrap;
  animation: scroll 48s linear infinite;
  font-family: var(--f-serif);
  font-size: clamp(18px, 2vw, 26px);
  color: var(--ink-2);
  letter-spacing: -0.01em;
}
.marquee__track span:nth-child(2n) { color: var(--accent); }
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   SECTION shared
   ============================================================ */
.section__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(64px, 10vw, 140px) var(--gut);
}
.section__head { max-width: 820px; margin-bottom: 64px; }
.section__head--split {
  max-width: none;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: end;
}
.section__title {
  font-size: clamp(32px, 4.4vw, 64px);
  font-weight: 300;
  margin-top: 18px;
  letter-spacing: -0.03em;
}
.section__sub {
  color: var(--ink-2);
  font-size: 17px;
  max-width: 46ch;
  line-height: 1.6;
}

/* ============================================================
   OM
   ============================================================ */
.om { background: var(--bg); }
.om__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: start;
}
.om__prose p { margin-bottom: 18px; color: var(--ink-2); font-size: 17px; line-height: 1.65; }
.om__prose .lede {
  font-family: var(--f-serif);
  font-size: clamp(20px, 2vw, 28px);
  color: var(--ink);
  line-height: 1.35;
  letter-spacing: -0.015em;
  margin-bottom: 28px;
}
.om__card {
  padding: 36px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.om__card-row {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.om__card-row:last-of-type { border-bottom: none; }
.om__card-lbl {
  color: var(--ink-3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 11px;
}
.om__card-val {
  font-family: var(--f-serif);
  font-size: 17px;
  color: var(--ink);
}
.om__card-quote {
  margin-top: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 18px;
  color: var(--ink-2);
  line-height: 1.4;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { background: var(--bg); }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 16px;
}
.tile {
  margin: 0;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--bg-2);
  border: 1px solid var(--line);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform .3s ease;
}
.tile:hover { transform: translateY(-2px); }
.tile--tall { grid-row: span 2; }
.tile--wide { grid-column: span 2; }
.tile__img {
  flex: 1;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-3), var(--bg-2));
  display: grid;
  place-items: center;
}
.tile__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.tile:hover .tile__img img { transform: scale(1.04); }
.tile figcaption {
  padding: 14px 18px;
  font-size: 13px;
  font-family: var(--f-serif);
  color: var(--ink);
  border-top: 1px solid var(--line);
  background: var(--card);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ============================================================
   FOR SALE
   ============================================================ */
.forsale { background: var(--bg-2); }
.forsale__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.forsale__grid--two { grid-template-columns: repeat(2, 1fr); }
.forsale__row {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 40px;
  align-items: stretch;
}
.forsale__note {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  padding: 32px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.55;
}
.forsale__note-lbl {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.forsale__note p { margin: 0; max-width: 32ch; }
.forsale__note-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-serif);
  font-size: 17px;
  color: var(--accent);
  border-bottom: 1px solid color-mix(in oklab, var(--accent) 40%, transparent);
  padding-bottom: 4px;
  align-self: flex-start;
  transition: gap .2s;
  min-height: 44px;
}
.forsale__note-cta:hover { gap: 12px; }
.watch__status {
  align-self: flex-start;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding: 4px 10px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  margin-bottom: 4px;
}

/* Videos */
.videos {
  margin-top: 120px;
  padding-top: 80px;
  border-top: 1px solid var(--line);
}
.videos__head {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 48px;
}
.videos__title {
  font-family: var(--f-serif);
  font-size: clamp(28px, 3.6vw, 52px);
  font-weight: 300;
  letter-spacing: -0.025em;
  margin-top: 14px;
}
.videos__sub { color: var(--ink-3); font-size: 15px; max-width: 44ch; }
.videos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.video {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-decoration: none;
  color: inherit;
  transition: transform .3s ease;
}
.video:hover { transform: translateY(-2px); }
.video__thumb {
  position: relative;
  aspect-ratio: 16/10;
  border-radius: var(--r-md);
  overflow: hidden;
  background: #1a1a1a;
  display: grid;
  place-items: center;
  isolation: isolate;
}
.video__thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease, filter .3s ease;
}
.video:hover .video__thumb img { transform: scale(1.04); filter: brightness(.9); }
.video__play {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  background: color-mix(in oklab, #fff 95%, transparent);
  color: var(--ink);
  border-radius: 50%;
  transition: transform .3s ease, background .3s ease;
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.6);
  position: relative;
  z-index: 1;
}
.video__play svg { width: 20px; height: 20px; margin-left: 2px; }
.video:hover .video__play { transform: scale(1.1); background: var(--accent); color: #fff; }
.video__meta { padding: 0 2px; display: flex; flex-direction: column; gap: 4px; }
.video__caliber {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}
.video__meta h4 {
  font-family: var(--f-serif);
  font-size: 19px;
  font-weight: 400;
  letter-spacing: -0.015em;
}

/* Press / newspaper article */
.press {
  margin-top: 120px;
  padding-top: 80px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: start;
}
.press__head .eyebrow { margin-bottom: 18px; }
.press__title {
  font-family: var(--f-serif);
  font-size: clamp(24px, 2.6vw, 38px);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.press__sub { color: var(--ink-3); font-size: 15px; max-width: 40ch; }
.press__fig {
  margin: 0;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--card);
  padding: 20px;
  box-shadow: 0 20px 40px -24px rgba(20,19,18,0.2);
}
.press__fig img { width: 100%; display: block; }

/* Watch cards */
.watch {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}
.watch:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -20px rgba(20,19,18,0.18);
}
.watch__img {
  aspect-ratio: 1;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-3), var(--bg-2));
  display: grid;
  place-items: center;
}
.watch__img img { width: 100%; height: 100%; object-fit: cover; }
.watch__meta {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-top: 1px solid var(--line);
}
.watch__meta h3 { font-size: 19px; font-weight: 400; letter-spacing: -0.015em; }
.watch__meta p { color: var(--ink-3); font-size: 13px; }
.watch__price { margin-top: 10px; font-family: var(--f-serif); font-size: 18px; color: var(--accent); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--ink); color: var(--bg); }
.contact .eyebrow { color: color-mix(in oklab, var(--bg) 60%, transparent); }
.contact .section__sub { color: color-mix(in oklab, var(--bg) 75%, transparent); }
.contact__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact__info {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 48px;
}
.contact__info dt {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: color-mix(in oklab, var(--bg) 50%, transparent);
  margin-bottom: 10px;
}
.contact__info dd {
  margin: 0;
  font-family: var(--f-serif);
  font-size: 20px;
  line-height: 1.35;
  color: var(--bg);
  letter-spacing: -0.01em;
}
.contact__info a { border-bottom: 1px solid color-mix(in oklab, var(--accent) 50%, transparent); }

.form {
  padding: 36px;
  background: color-mix(in oklab, var(--bg) 6%, transparent);
  border: 1px solid color-mix(in oklab, var(--bg) 14%, transparent);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: color-mix(in oklab, var(--bg) 60%, transparent);
}
.form input,
.form select,
.form textarea {
  padding: 14px 16px;
  background: color-mix(in oklab, var(--bg) 8%, transparent);
  border: 1px solid color-mix(in oklab, var(--bg) 16%, transparent);
  border-radius: var(--r-sm);
  color: var(--bg);
  font-size: 16px;
  font-family: inherit;
  letter-spacing: 0;
  text-transform: none;
  transition: border-color .2s, background .2s;
  min-height: 48px;
}
.form select { appearance: none; -webkit-appearance: none; }
.form select option {
  background: var(--bg);
  color: var(--ink);
}
.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: color-mix(in oklab, var(--bg) 12%, transparent);
}
.form textarea { resize: vertical; min-height: 100px; }
.form .btn--primary {
  background: var(--accent);
  color: var(--bg);
  margin-top: 6px;
}
.form .btn--primary:hover { background: color-mix(in oklab, var(--accent) 85%, white); }
.form--sent .form__label { display: none; }
.form--sent .form__sent { display: inline; }
.form--error .form__label { display: none; }
.form--error .form__error { display: inline; }
.form__sent,
.form__error { display: none; }
.form__fine {
  font-size: 12px;
  color: color-mix(in oklab, var(--bg) 50%, transparent);
  text-align: center;
  letter-spacing: 0.02em;
}

/* ============================================================
   FOOTER
   ============================================================ */
.foot {
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.foot__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 56px var(--gut) 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.foot__brand { display: flex; align-items: center; gap: 14px; }
.foot__brand .nav__mark { width: 40px; height: 40px; }
.foot__name { font-family: var(--f-serif); font-size: 22px; letter-spacing: -0.01em; }
.foot__sub { font-size: 12px; color: var(--ink-3); margin-top: 2px; }
.foot__col { font-size: 14px; color: var(--ink-2); line-height: 1.6; }
.foot__lbl {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 8px;
}
.foot__legal {
  max-width: var(--max);
  margin: 0 auto;
  padding: 20px var(--gut) 32px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  color: var(--ink-3);
}
.foot__legal a:hover { color: var(--ink); }

/* ============================================================
   SUCCESS POPUP
   ============================================================ */
.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(20, 19, 18, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: grid;
  place-items: center;
  padding: var(--gut);
  animation: fadeIn .2s ease;
}
.popup-overlay[hidden] { display: none; }
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.popup {
  background: var(--card);
  border-radius: var(--r-lg);
  padding: clamp(32px, 5vw, 56px);
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: 0 40px 80px -20px rgba(20,19,18,0.4);
  animation: slideUp .25s ease;
}
@keyframes slideUp {
  from { transform: translateY(16px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.popup__icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
}
.popup__title {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: var(--ink);
}
.popup__body {
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 36ch;
  margin-left: auto;
  margin-right: auto;
}
.popup__close { min-width: 160px; }

/* ============================================================
   PRIVATLIVSPOLITIK
   ============================================================ */
.legal { max-width: 760px; margin: 0 auto; padding: clamp(48px, 8vw, 120px) var(--gut); }
.legal__eyebrow { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 24px; display: inline-flex; align-items: center; gap: 10px; }
.legal__eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
.legal h1 { font-family: var(--f-serif); font-size: clamp(36px, 5vw, 64px); font-weight: 300; letter-spacing: -0.03em; margin: 0 0 16px; }
.legal__lede { color: var(--ink-2); font-size: 17px; margin-bottom: 48px; max-width: 56ch; }
.legal__meta { font-size: 13px; color: var(--ink-3); padding: 16px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.legal h2 { font-family: var(--f-serif); font-size: clamp(20px, 2.2vw, 28px); font-weight: 400; letter-spacing: -0.02em; margin: 48px 0 14px; }
.legal p, .legal li { color: var(--ink-2); font-size: 16px; line-height: 1.65; }
.legal p { margin: 0 0 14px; }
.legal ul { padding-left: 22px; margin: 0 0 18px; }
.legal li { margin-bottom: 6px; }
.legal a { color: var(--accent); border-bottom: 1px solid color-mix(in oklab, var(--accent) 40%, transparent); }
.legal__back { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 32px; font-size: 14px; color: var(--ink-3); min-height: 44px; }
.legal__back:hover { color: var(--ink); }
.legal__card { margin-top: 48px; padding: 28px 32px; border: 1px solid var(--line); border-radius: var(--r-md); background: var(--bg-2); }
.legal__card h2 { margin-top: 0; }
.legal__card p { margin-bottom: 6px; font-family: var(--f-serif); font-size: 17px; color: var(--ink); }

/* ============================================================
   RESPONSIVE — 960px
   ============================================================ */
@media (max-width: 960px) {
  .nav__inner { grid-template-columns: auto 1fr auto auto; gap: 16px; }
  .nav__links { display: none; }
  .nav__burger { display: flex; }

  .hero__grid, .om__grid, .section__head--split, .contact__grid {
    grid-template-columns: 1fr;
  }
  .hero__grid { min-height: auto; }
  .hero__visual { aspect-ratio: 3/2; min-height: 360px; }
  .hero__watch-card { right: -12px; }
  .hero__facts { gap: 28px; }

  .forsale__row { grid-template-columns: 1fr; }
  .forsale__grid--two { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }

  .videos__head { grid-template-columns: 1fr; gap: 16px; }
  .videos__grid { grid-template-columns: repeat(2, 1fr); }
  .press { grid-template-columns: 1fr; gap: 24px; }

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

  .contact__info { gap: 24px 32px; }
}

/* ============================================================
   RESPONSIVE — 600px
   ============================================================ */
@media (max-width: 600px) {
  .nav__cta { display: none; }
  .nav__inner { grid-template-columns: auto 1fr auto; }

  .hero__visual { aspect-ratio: 4/3; min-height: 280px; }
  .hero__watch-card { width: 140px; height: 140px; right: -8px; bottom: 20px; }
  .hero__facts { grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 100%; }

  .form__row { grid-template-columns: 1fr; }
  .contact__info { grid-template-columns: 1fr; }
  .contact__grid { gap: 48px; }

  .gallery__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }
  .tile--tall { grid-row: span 1; }
  .tile--wide { grid-column: span 1; }

  .forsale__grid--two { grid-template-columns: 1fr; }
  .videos__grid { grid-template-columns: 1fr; }

  .foot__inner { grid-template-columns: 1fr; gap: 24px; padding-bottom: 16px; }

  .om__grid { gap: 40px; }
  .om__card { padding: 24px; }

  .press { gap: 20px; }
  .videos { margin-top: 64px; padding-top: 48px; }
  .press { margin-top: 64px; padding-top: 48px; }

  .form { padding: 24px; }
}
