@import url("https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=Manrope:wght@400;500;600&family=Playfair+Display:ital,wght@1,600&display=swap");

:root {
  --paper: #f2eee5;
  --paper-light: #faf8f2;
  --ink: #1d1d1b;
  --muted: #68665f;
  --line: rgba(29, 29, 27, 0.18);
  --orange: #ee5b2b;
  --radar: #b9d456;
  --dark: #17201d;
  --mono: "DM Mono", "Courier New", monospace;
  --sans: "Manrope", system-ui, sans-serif;
  --serif: "Playfair Display", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 5%, rgba(255, 255, 255, 0.82), transparent 27rem),
    var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 20;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  color: white;
  background: var(--ink);
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header,
.site-footer,
.intro,
.destinations {
  width: min(1440px, calc(100% - 64px));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 104px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: grid;
  grid-template-columns: 42px auto;
  grid-template-rows: auto auto;
  column-gap: 12px;
  align-items: center;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  grid-row: 1 / 3;
  width: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.brand-name {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.21em;
  line-height: 1;
}

.brand-sector {
  color: var(--orange);
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.3em;
}

.header-note,
.card-meta,
.card-kicker,
.card-action,
.site-footer,
.eyebrow,
.scroll-cue {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.header-note {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  margin: 0;
  color: var(--muted);
  font-size: 0.68rem;
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(238, 91, 43, 0.12);
}

.intro {
  position: relative;
  min-height: min(610px, 69vh);
  padding: clamp(76px, 10vw, 144px) 0 90px;
}

.eyebrow {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 0 0 1.7rem;
  color: var(--orange);
  font-size: 0.68rem;
}

.eyebrow::before {
  width: 42px;
  height: 1px;
  content: "";
  background: currentColor;
}

h1 {
  max-width: 1050px;
  margin: 0;
  font-size: clamp(3.5rem, 8.3vw, 8.25rem);
  font-weight: 500;
  letter-spacing: -0.075em;
  line-height: 0.9;
}

h1 em {
  color: var(--orange);
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.055em;
}

.intro-copy {
  max-width: 480px;
  margin: 2.6rem 0 0 auto;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.72;
}

.scroll-cue {
  position: absolute;
  bottom: 38px;
  left: 0;
  display: flex;
  gap: 14px;
  align-items: center;
  color: var(--muted);
  font-size: 0.6rem;
}

.scroll-cue svg {
  width: 12px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  animation: float 1.8s ease-in-out infinite;
}

.destinations {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--ink);
  background: var(--ink);
}

.destination {
  --pointer-x: 50%;
  --pointer-y: 50%;
  position: relative;
  display: flex;
  min-height: 660px;
  overflow: hidden;
  padding: 34px;
  text-decoration: none;
  isolation: isolate;
}

.destination::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  opacity: 0;
  background: radial-gradient(
    440px circle at var(--pointer-x) var(--pointer-y),
    rgba(255, 255, 255, 0.22),
    transparent 60%
  );
  transition: opacity 250ms ease;
}

.destination:hover::before,
.destination:focus-visible::before {
  opacity: 1;
}

.destination:focus-visible {
  z-index: 3;
  outline: 3px solid white;
  outline-offset: -7px;
}

.destination--atelier {
  background: #d8d0c1;
}

.destination--radar {
  color: #edf0e8;
  background:
    linear-gradient(rgba(23, 32, 29, 0.94), rgba(23, 32, 29, 0.98)),
    var(--dark);
}

.card-index {
  position: absolute;
  top: 34px;
  left: 34px;
  color: currentColor;
  font-family: var(--mono);
  font-size: 0.7rem;
  opacity: 0.45;
}

.card-meta {
  position: absolute;
  z-index: 2;
  top: 29px;
  right: 34px;
  display: flex;
  gap: 14px;
  align-items: center;
  font-size: 0.59rem;
}

.status-pill {
  padding: 7px 9px;
  border: 1px solid currentColor;
  border-radius: 99px;
  color: var(--orange);
}

.status-pill--dark {
  color: var(--radar);
}

.card-visual {
  position: absolute;
  z-index: -1;
  transition: transform 600ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.destination:hover .card-visual,
.destination:focus-visible .card-visual {
  transform: scale(1.045) rotate(-0.5deg);
}

.card-visual--camera {
  top: 98px;
  left: 7%;
  width: 86%;
}

.card-visual--camera svg {
  width: 100%;
  overflow: visible;
}

.sketch,
.sketch-light {
  fill: none;
  stroke: #22211e;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.sketch-light {
  opacity: 0.25;
  stroke-width: 1;
}

.sketch-fill {
  fill: rgba(250, 248, 242, 0.46);
  stroke: #22211e;
  stroke-width: 2;
}

.accent-fill {
  fill: var(--orange);
}

.card-visual--radar {
  top: 95px;
  left: 50%;
  width: min(74%, 430px);
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(185, 212, 86, 0.32);
  border-radius: 50%;
  transform: translateX(-50%);
  background: rgba(185, 212, 86, 0.025);
  box-shadow:
    inset 0 0 70px rgba(185, 212, 86, 0.04),
    0 0 80px rgba(185, 212, 86, 0.04);
}

.destination:hover .card-visual--radar,
.destination:focus-visible .card-visual--radar {
  transform: translateX(-50%) scale(1.045);
}

.radar-grid {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(185, 212, 86, 0.45) 1px, transparent 1px),
    linear-gradient(90deg, rgba(185, 212, 86, 0.45) 1px, transparent 1px);
  background-size: 28px 28px;
}

.radar-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(185, 212, 86, 0.28);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.radar-ring--one {
  width: 28%;
  height: 28%;
}

.radar-ring--two {
  width: 56%;
  height: 56%;
}

.radar-ring--three {
  width: 82%;
  height: 82%;
}

.radar-sweep {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  height: 50%;
  transform-origin: 0 0;
  background: conic-gradient(
    from 3deg at 0 0,
    rgba(185, 212, 86, 0.52),
    transparent 35deg
  );
  animation: sweep 5s linear infinite;
}

.radar-target {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--radar);
  box-shadow: 0 0 0 5px rgba(185, 212, 86, 0.13), 0 0 18px var(--radar);
  animation: pulse 1.8s ease-in-out infinite;
}

.radar-target--one {
  top: 24%;
  left: 62%;
}

.radar-target--two {
  top: 58%;
  left: 27%;
  animation-delay: 0.55s;
}

.radar-target--three {
  top: 69%;
  left: 71%;
  animation-delay: 1.1s;
}

.card-content {
  align-self: flex-end;
  width: 100%;
  padding-bottom: 82px;
}

.card-kicker {
  display: block;
  margin-bottom: 15px;
  color: var(--orange);
  font-size: 0.66rem;
}

.destination--radar .card-kicker {
  color: var(--radar);
}

.card-content strong {
  display: block;
  font-size: clamp(2.6rem, 4.7vw, 4.8rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.96;
}

.card-description {
  display: block;
  max-width: 390px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

.destination--radar .card-description {
  color: rgba(237, 240, 232, 0.6);
}

.card-action {
  position: absolute;
  right: 34px;
  bottom: 31px;
  left: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid currentColor;
  font-size: 0.66rem;
}

.destination--atelier .card-action {
  border-color: rgba(29, 29, 27, 0.25);
}

.destination--radar .card-action {
  border-color: rgba(237, 240, 232, 0.25);
}

.arrow {
  display: grid;
  width: 40px;
  height: 40px;
  border: 1px solid currentColor;
  border-radius: 50%;
  place-items: center;
  font-family: var(--sans);
  font-size: 1.15rem;
  transition: transform 250ms ease, color 250ms ease, background 250ms ease;
}

.destination:hover .arrow,
.destination:focus-visible .arrow {
  color: var(--paper-light);
  background: var(--orange);
  border-color: var(--orange);
  transform: rotate(45deg);
}

.destination--radar:hover .arrow,
.destination--radar:focus-visible .arrow {
  color: var(--dark);
  background: var(--radar);
  border-color: var(--radar);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 112px;
  color: var(--muted);
  font-size: 0.59rem;
}

.site-footer p {
  margin: 0;
}

@keyframes sweep {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  50% {
    opacity: 0.45;
    transform: scale(0.75);
  }
}

@keyframes float {
  50% {
    transform: translateY(5px);
  }
}

@media (max-width: 860px) {
  .site-header,
  .site-footer,
  .intro,
  .destinations {
    width: min(100% - 32px, 720px);
  }

  .intro {
    min-height: 590px;
    padding-top: 90px;
  }

  h1 {
    font-size: clamp(3.35rem, 14vw, 6rem);
  }

  .intro-copy {
    margin-left: 15%;
  }

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

  .destination {
    min-height: 630px;
  }
}

@media (max-width: 520px) {
  .site-header,
  .site-footer,
  .intro,
  .destinations {
    width: calc(100% - 24px);
  }

  .site-header {
    min-height: 82px;
  }

  .brand {
    grid-template-columns: 34px auto;
    column-gap: 9px;
  }

  .brand-mark {
    width: 34px;
  }

  .brand-name {
    font-size: 0.86rem;
  }

  .header-note {
    display: none;
  }

  .intro {
    min-height: calc(100svh - 82px);
    padding: 76px 0 96px;
  }

  h1 {
    font-size: clamp(3.2rem, 16vw, 4.7rem);
    line-height: 0.94;
  }

  .intro-copy {
    width: min(340px, calc(100vw - 48px));
    max-width: 100%;
    margin: 2.25rem 0 0;
    font-size: 0.95rem;
    overflow-wrap: anywhere;
  }

  .destination {
    min-height: 590px;
    padding: 22px;
  }

  .card-index {
    top: 24px;
    left: 22px;
  }

  .card-meta {
    top: 20px;
    right: 22px;
    gap: 8px;
  }

  .card-meta > span:last-child {
    display: none;
  }

  .card-visual--camera {
    top: 100px;
    left: 2%;
    width: 96%;
  }

  .card-visual--radar {
    top: 88px;
    width: 82%;
  }

  .card-content {
    padding-bottom: 75px;
  }

  .card-content strong {
    font-size: clamp(2.65rem, 13vw, 3.7rem);
  }

  .card-description {
    max-width: 92%;
    font-size: 0.82rem;
  }

  .card-action {
    right: 22px;
    bottom: 22px;
    left: 22px;
    padding-top: 18px;
  }

  .site-footer {
    min-height: 94px;
  }

  .site-footer p:last-child {
    max-width: 130px;
    text-align: right;
    line-height: 1.6;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
