:root {
  --ink: #315b64;
  --ink-deep: #19363d;
  --sea: #cdecff;
  --sea-light: #e4f9fd;
  --lilac: #f2e2ff;
  --sun: #fdf3c9;
  --paper: #ffffff;
  --muted: #4e747a;
  --line: #c8dde4;
  --font-body: "Avenir Next", Avenir, "Segoe UI", sans-serif;
  --font-display: Georgia, "Times New Roman", serif;
  --container: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color-scheme: light;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 20;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--paper);
  background: var(--ink-deep);
  border-radius: 4px;
  transform: translateY(-160%);
}

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

.hero {
  position: relative;
  isolation: isolate;
  height: clamp(560px, 78svh, 720px);
  min-height: 560px;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink-deep);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  z-index: -2;
  object-fit: cover;
  object-position: 55% 48%;
}

.hero-shade {
  z-index: -1;
  background: rgba(13, 41, 47, 0.58);
}

.site-header {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  left: 0;
  padding-top: 24px;
}

.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: block;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 6px;
}

.brand img {
  width: 212px;
  height: auto;
}

.location {
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-content {
  display: flex;
  height: 100%;
  max-width: var(--container);
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-top: 80px;
  padding-right: min(42%, 450px);
}

.eyebrow,
.section-label {
  margin: 0 0 16px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.04;
  overflow-wrap: anywhere;
}

h1 {
  max-width: 720px;
  font-size: clamp(3.3rem, 6.8vw, 6rem);
  text-wrap: balance;
}

.coming-soon {
  margin: 20px 0 0;
  color: var(--sun);
  font-size: 1.22rem;
  font-weight: 800;
}

.intro {
  max-width: 650px;
  margin: 18px 0 28px;
  font-size: 1.08rem;
}

.email-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  color: var(--ink-deep);
  background: var(--sun);
  border: 2px solid var(--sun);
  border-radius: 6px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.email-button:hover {
  background: var(--sea);
  border-color: var(--sea);
  transform: translateY(-2px);
}

.email-address {
  margin-top: 14px;
  font-size: 0.9rem;
  overflow-wrap: anywhere;
  text-underline-offset: 3px;
}

.welcome {
  padding: 72px 0 42px;
  background: var(--sea-light);
  border-bottom: 10px solid var(--lilac);
}

.welcome-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
  align-items: end;
  gap: clamp(36px, 8vw, 100px);
}

.section-label {
  color: var(--muted);
}

h2 {
  max-width: 720px;
  color: var(--ink-deep);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
}

.welcome-copy {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 52px;
  border-top: 1px solid var(--line);
}

.details p {
  min-width: 0;
  margin: 0;
  padding: 24px 28px 8px 0;
}

.details p + p {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.details strong,
.details span {
  display: block;
}

.details strong {
  margin-bottom: 4px;
  color: var(--ink-deep);
  font-size: 0.84rem;
  text-transform: uppercase;
}

.details span {
  color: var(--muted);
}

.site-footer {
  padding: 26px 0;
  color: var(--paper);
  background: var(--ink-deep);
}

.site-footer p {
  margin: 0;
  font-size: 0.85rem;
}

a:focus-visible {
  outline: 3px solid var(--lilac);
  outline-offset: 4px;
}

@media (min-width: 761px) and (max-height: 800px) {
  .site-header {
    padding-top: 18px;
  }

  .hero-content {
    padding-top: 70px;
  }

  h1 {
    font-size: clamp(3.3rem, 6vw, 4.75rem);
  }

  .coming-soon {
    margin-top: 12px;
  }

  .intro {
    margin: 12px 0 20px;
    font-size: 1rem;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .hero {
    height: clamp(540px, calc(100svh - 16px), 680px);
    min-height: 540px;
  }

  .site-header {
    padding-top: 16px;
  }

  .brand img {
    width: 172px;
  }

  .location {
    max-width: 118px;
    text-align: right;
    font-size: 0.76rem;
    line-height: 1.35;
  }

  .hero-image {
    object-position: 61% center;
  }

  .hero-shade {
    background: rgba(13, 41, 47, 0.66);
  }

  .hero-content {
    justify-content: flex-end;
    padding: 118px 0 44px;
  }

  h1 {
    max-width: 560px;
    font-size: clamp(2.7rem, 13vw, 3.5rem);
    overflow-wrap: normal;
  }

  .intro {
    max-width: 520px;
    font-size: 1rem;
  }

  .welcome {
    padding-top: 54px;
  }

  .welcome-layout,
  .details {
    grid-template-columns: 1fr;
  }

  .welcome-layout {
    gap: 28px;
  }

  .details {
    margin-top: 34px;
  }

  .details p,
  .details p + p {
    padding: 18px 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 390px) {
  .brand img {
    width: 142px;
  }

  .hero-content {
    padding-bottom: 32px;
  }

  .coming-soon {
    margin-top: 14px;
  }

  .intro {
    margin: 12px 0 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
