:root {
  color-scheme: dark;
  --ink: #0d1117;
  --paper: #ffffff;
  --muted: rgba(255, 255, 255, 0.74);
  --line: rgba(255, 255, 255, 0.24);
  --panel: rgba(8, 17, 29, 0.52);
  --panel-strong: rgba(8, 17, 29, 0.72);
  --accent: #d9a441;
  --accent-soft: #ffe1a1;
  --shadow: 0 22px 80px rgba(0, 0, 0, 0.34);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--paper);
  background: var(--ink);
  letter-spacing: 0;
}

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

.site-shell {
  min-height: 100svh;
  position: relative;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(5, 12, 23, 0.86) 0%, rgba(5, 12, 23, 0.64) 39%, rgba(5, 12, 23, 0.12) 100%),
    linear-gradient(180deg, rgba(5, 12, 23, 0.24) 0%, rgba(5, 12, 23, 0.16) 48%, rgba(5, 12, 23, 0.82) 100%),
    url("assets/yacht-hero.png");
  background-position: center;
  background-size: cover;
}

.site-shell::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  pointer-events: none;
  background: linear-gradient(0deg, rgba(5, 12, 23, 0.66), transparent);
}

.topbar {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 64px;
}

.brand-logo {
  display: grid;
  place-items: center;
  width: clamp(190px, 21vw, 270px);
  height: auto;
  padding: 0;
}

.brand-logo img {
  display: block;
  width: 100%;
  height: auto;
  filter: invert(1) drop-shadow(0 8px 22px rgba(0, 0, 0, 0.36));
}

.brand-name {
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1;
  text-transform: lowercase;
}

.hero {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: space-between;
  min-height: calc(100svh - 114px);
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 66px 0 34px;
}

.hero-content {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent-soft);
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

h1 {
  max-width: 780px;
  margin: 0;
  font-size: 4.35rem;
  font-weight: 800;
  line-height: 0.96;
  text-wrap: balance;
  text-shadow: 0 14px 52px rgba(0, 0, 0, 0.46);
}

.hero-copy {
  max-width: 620px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(104px, 128px));
  gap: 12px;
  margin-top: 38px;
}

.countdown-item {
  display: grid;
  align-content: center;
  min-height: 112px;
  padding: 18px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
}

.countdown-value {
  display: block;
  font-size: 2.3rem;
  font-weight: 800;
  line-height: 1;
  color: var(--paper);
  font-variant-numeric: tabular-nums;
}

.countdown-label {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto auto;
  align-items: center;
  gap: 18px;
  margin-top: 72px;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.78);
  font-style: normal;
  line-height: 1.5;
}

.contact-band a {
  justify-self: start;
  padding: 10px 0;
  color: var(--paper);
  font-weight: 700;
  white-space: nowrap;
}

.contact-band a:hover,
.contact-band a:focus-visible {
  color: var(--accent-soft);
}

@media (max-width: 900px) {
  .site-shell {
    background-position: 58% center;
  }

  .topbar,
  .hero {
    width: min(100% - 32px, 720px);
  }

  .hero {
    min-height: calc(100svh - 106px);
    padding-top: 42px;
  }

  h1 {
    font-size: 3.1rem;
    line-height: 1;
  }

  .countdown {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 430px;
  }

  .contact-band {
    grid-template-columns: 1fr;
    gap: 6px;
    margin-top: 48px;
    padding-bottom: 12px;
  }
}

@media (max-width: 560px) {
  .site-shell {
    background-image:
      linear-gradient(90deg, rgba(5, 12, 23, 0.9) 0%, rgba(5, 12, 23, 0.72) 56%, rgba(5, 12, 23, 0.4) 100%),
      linear-gradient(180deg, rgba(5, 12, 23, 0.2) 0%, rgba(5, 12, 23, 0.34) 46%, rgba(5, 12, 23, 0.9) 100%),
      url("assets/yacht-hero.png");
    background-position: 64% center;
  }

  .topbar {
    padding: 20px 0;
  }

  .brand {
    min-height: 50px;
  }

  .brand-logo {
    width: min(215px, 62vw);
  }

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

  .hero {
    min-height: calc(100svh - 90px);
    padding: 28px 0 24px;
  }

  .eyebrow {
    margin-bottom: 14px;
    font-size: 0.78rem;
  }

  h1 {
    font-size: 2.44rem;
    line-height: 1.02;
  }

  .hero-copy {
    margin-top: 20px;
    font-size: 1rem;
    line-height: 1.55;
  }

  .countdown {
    gap: 10px;
    margin-top: 30px;
  }

  .countdown-item {
    min-height: 94px;
    padding: 15px 13px;
  }

  .countdown-value {
    font-size: 1.86rem;
  }

  .countdown-label {
    font-size: 0.68rem;
  }

  .contact-band {
    font-size: 0.92rem;
  }
}
