
:root {
  --color-abyss: #040d14;
  --color-white: #ffffff;
  --color-text-soft: #e2e8f0;
  --color-glass: rgba(255, 255, 255, 0.05);
  --color-glass-strong: rgba(255, 255, 255, 0.07);
  --color-glass-border: rgba(255, 255, 255, 0.12);
  --color-header: rgba(255, 255, 255, 0.7);

  --font-base: "proxima-nova", "Proxima Nova", "Figtree", system-ui, -apple-system, "Segoe UI", sans-serif;

  --page-gutter: 72px;
  --header-height: 96px;
  --radius-panel: 24px;
}

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-base);
  color: var(--color-white);
  background-color: var(--color-abyss);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

h1,
h2,
p,
address {
  margin: 0;
}

a {
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--color-white);
  outline-offset: 4px;
  border-radius: 4px;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 10;
  display: flex;
  align-items: center;
  height: var(--header-height);
  padding: 0 var(--page-gutter);
  background-color: var(--color-header);
  border-bottom: 1px solid var(--color-glass-border);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.site-header__logo img {
  width: 206px;
  height: 66px;
  object-fit: contain;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100svh;
  padding: calc(var(--header-height) + 48px) var(--page-gutter) 66px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

/* Abyssal blue tint + cinematic text scrim */
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.hero::before {
  background-color: rgba(4, 13, 20, 0.45);
}

.hero::after {
  background: linear-gradient(
    to right,
    rgba(4, 13, 20, 0.9) 0%,
    rgba(4, 13, 20, 0.5) 50%,
    rgba(4, 13, 20, 0) 100%
  );
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 700px;
  margin: auto 0;
}

.hero__title {
  font-size: 72px;
  font-weight: 700;
  line-height: 1.2;
}

.hero__text {
  max-width: 640px;
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
  color: var(--color-text-soft);
}

/* ---------- Floating info bar ---------- */
.info-bar {
  display: flex;
  align-items: center;
  gap: 40px;
  width: 100%;
  max-width: 845px;
  min-height: 132px;
  padding: 24px 40px;
  background-color: var(--color-glass);
  border: 1px solid var(--color-glass-border);
  border-radius: var(--radius-panel);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.info-bar__item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.info-bar__item--hours {
  flex: 0 0 319px;
}

.info-bar__item--address {
  flex: 1 1 0;
  min-width: 0;
}

.info-bar__icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background-color: var(--color-glass-strong);
  border: 1px solid var(--color-glass-border);
  border-radius: 50%;
}

.info-bar__text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.info-bar__label {
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}

.info-bar__value {
  font-size: 18px;
  font-weight: 500;
  line-height: normal;
}

.info-bar__value--address {
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}

.info-bar__value--address a {
  text-decoration: none;
}

.info-bar__value--address a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.info-bar__divider {
  flex-shrink: 0;
  width: 1px;
  height: 60px;
  background-color: var(--color-glass-border);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  :root {
    --page-gutter: 40px;
  }

  .hero__title {
    font-size: 56px;
  }

  .info-bar__item--hours {
    flex-basis: auto;
  }
}

@media (max-width: 720px) {
  :root {
    --page-gutter: 20px;
    --header-height: 72px;
  }

  .site-header__logo img {
    width: 156px;
    height: 50px;
  }

  .hero {
    padding-top: calc(var(--header-height) + 40px);
    padding-bottom: 32px;
  }

  .hero::after {
    background: linear-gradient(
      to bottom,
      rgba(4, 13, 20, 0.6) 0%,
      rgba(4, 13, 20, 0.8) 100%
    );
  }

  .hero__title {
    font-size: 40px;
  }

  .hero__text {
    font-size: 16px;
    line-height: 28px;
  }

  .info-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-top: 40px;
    padding: 24px;
  }

  .info-bar__item--hours {
    flex: none;
  }

  .info-bar__divider {
    width: 100%;
    height: 1px;
  }
}
