:root {
  --bg: #0a0c0d;
  --bg-soft: #121516;
  --fg: #f4efda;
  --fg-dim: rgba(244, 239, 218, 0.45);
  --accent: #4a9968;
  --accent-2: #3d8558;
  --cream: #f4efda;
  --rule: rgba(244, 239, 218, 0.08);
  --body: rgba(244, 239, 218, 0.78);
  --font: 'Space Grotesk', 'Segoe UI', sans-serif;
  --gutter: clamp(20px, 4vw, 64px);
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

::selection {
  background: var(--cream);
  color: var(--bg);
}

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

ul,
ol {
  list-style: none;
}

img {
  display: block;
}

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

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px var(--gutter);
  mix-blend-mode: difference;
}

.nav__logo {
  height: 42px;
  width: auto;
}

.nav__menu {
  display: flex;
  gap: clamp(18px, 2.6vw, 44px);
}

.nav__menu a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  opacity: 0.75;
  transition: opacity 0.25s ease;
}

.nav__menu a:hover {
  opacity: 1;
}

.nav__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--fg-dim);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  position: relative;
  flex-shrink: 0;
}

.nav__dot::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2.4s ease-out infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(3);
    opacity: 0;
  }
}

.loc {
  max-width: 880px;
  margin: 0 auto;
  padding: 148px var(--gutter) clamp(72px, 10vh, 128px);
}

.loc__crumbs {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--fg-dim);
  margin-bottom: 28px;
}

.loc__crumbs a:hover {
  color: var(--accent);
}

.loc h1 {
  font-size: clamp(30px, 4.6vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  font-weight: 700;
  margin-bottom: 28px;
}

.loc h2 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin: 44px 0 16px;
}

.loc p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--body);
  margin-bottom: 18px;
}

.loc__lead {
  font-size: 18px;
}

.loc__note {
  color: var(--accent);
  font-size: 14px;
}

.loc__rows li {
  border-top: 1px solid var(--rule);
  padding: 16px 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--body);
}

.loc__rows li:last-child {
  border-bottom: 1px solid var(--rule);
}

.loc__cta {
  border: 1px solid var(--rule);
  background: var(--bg-soft);
  padding: clamp(24px, 4vw, 40px);
  margin: 40px 0;
}

.loc__cta-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 0 !important;
}

.loc__cta-links a {
  font-weight: 600;
  border-bottom: 1px solid var(--rule);
  transition: color 0.25s ease, border-color 0.25s ease;
}

.loc__cta-links a:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.loc__nearby p a,
.loc__more a {
  color: var(--fg);
  border-bottom: 1px solid var(--rule);
  transition: color 0.25s ease, border-color 0.25s ease;
}

.loc__nearby p a:hover,
.loc__more a:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.loc__group {
  margin-bottom: 8px;
}

.loc__links {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0 24px;
}

.loc__links li {
  border-top: 1px solid var(--rule);
}

.loc__links a {
  display: block;
  padding: 12px 0;
  font-size: 15px;
  color: var(--body);
  transition: color 0.25s ease, padding-left 0.3s ease;
}

.loc__links a:hover {
  color: var(--accent);
  padding-left: 8px;
}

.footer {
  max-width: 1480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 36px;
  border-top: 1px solid var(--rule);
  padding: clamp(48px, 8vh, 90px) var(--gutter) 40px;
}

.footer__contact p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--body);
}

.footer__contact a:hover {
  color: var(--accent);
}

.footer__tagline {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-bottom: 10px;
}

.footer__links a {
  border-bottom: 1px solid var(--rule);
}

.footer__logo {
  height: clamp(44px, 5vw, 60px);
  width: auto;
}

.footer__row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--fg-dim);
  font-size: 13px;
}

.footer__meta {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

@media (max-width: 680px) {
  .nav__menu {
    display: none;
  }

  .loc {
    padding-top: 120px;
  }
}
