:root {
  --bg: #ffffff;
  --text: #1d1d1b;
  --muted: #616161;
  --line: #ececec;
  --gold: #baa26a;
  --gold-dark: #9c8450;
  --green: rgb(29, 118, 74);
  --green-dark: rgb(22, 92, 58);
  --panel: #f8f7f3;
  --shadow: 0 18px 40px rgba(0,0,0,0.08);
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.topbar.scrolled {
  background: rgba(16, 23, 20, 0.9);
  backdrop-filter: blur(12px);
  border-bottom-color: rgba(255,255,255,0.08);
  box-shadow: 0 8px 30px rgba(0,0,0,0.22);
}
.topbar-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-logo img {
  height: 42px;
  width: auto;
}
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: white;
  transition: transform 0.25s ease, opacity 0.25s ease, background 0.25s ease;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.topnav { display: flex; gap: 24px; align-items: center; }
.topnav a {
  font-weight: 500;
  color: rgba(255,255,255,0.92);
  transition: color 0.25s ease, opacity 0.25s ease;
}
.topnav a:hover { opacity: 0.82; }
.topnav .cta-link { color: white; font-weight: 700; }

.hero-banner {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15,15,15,0.78) 0%, rgba(15,15,15,0.48) 45%, rgba(15,15,15,0.16) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 120px 0 86px;
}
.hero-copy-box {
  max-width: 720px;
  color: white;
}
.mini-kicker,
.section-label {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
}
.hero-copy-box h1,
h2 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: -0.04em;
}
.hero-copy-box h1 {
  font-size: clamp(3.2rem, 6vw, 5.8rem);
  max-width: 11ch;
}
.hero-copy-box p {
  margin: 22px 0 0;
  max-width: 60ch;
  line-height: 1.75;
  color: rgba(255,255,255,0.9);
  font-size: 1.08rem;
}
.hero-buttons {
  margin-top: 32px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-facts {
  list-style: none;
  padding: 0;
  margin: 34px 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 760px;
}
.hero-facts li {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: 16px 18px;
}
.hero-facts strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 6px;
}
.hero-facts span {
  color: rgba(255,255,255,0.82);
  font-size: 0.94rem;
}
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--green);
  color: white;
}
.btn-primary:hover { background: var(--green-dark); }
.btn-light {
  background: rgba(255,255,255,0.12);
  color: white;
  border-color: rgba(255,255,255,0.24);
}
.btn-full { width: 100%; }

.intro-block,
.catalog-section,
.location-section,
.signup-section { padding: 88px 0; }
.intro-grid,
.location-grid,
.signup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}
.intro-grid p,
.section-heading p,
.location-copy p,
.signup-copy p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.04rem;
}
h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  max-width: 12ch;
}
.centered {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 46px;
}
.centered h2 { max-width: none; }

.catalog-section {
  background: var(--panel);
}
.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.logo-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  min-height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  box-shadow: var(--shadow);
}
.logo-card--featured {
  background: linear-gradient(180deg, #fff, #faf9f4);
}
.logo-card img {
  max-height: 94px;
  width: auto;
  object-fit: contain;
}

.location-image-wrap img {
  width: 100%;
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.location-card {
  margin-top: 28px;
  display: inline-grid;
  gap: 6px;
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 20px 24px;
  border-radius: 20px;
}
.location-card span { color: var(--muted); }

.signup-notes {
  margin: 24px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.9;
}
.form-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 28px;
  display: grid;
  gap: 16px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
label { display: grid; gap: 8px; }
label span { font-weight: 600; font-size: 0.94rem; }
input, select, textarea {
  width: 100%;
  font: inherit;
  border: 1px solid #dfdfdf;
  border-radius: 16px;
  padding: 14px 16px;
  background: #fff;
  color: var(--text);
}
textarea { resize: vertical; min-height: 120px; }
.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.checkbox-row input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}
.checkbox-row span {
  font-weight: 500;
  color: var(--muted);
  line-height: 1.6;
}
.form-helper {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

.site-footer {
  background: #111513;
  color: rgba(255,255,255,0.82);
  padding: 34px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 18px;
}
.footer-brand img {
  height: 42px;
  width: auto;
}
.site-footer strong {
  display: block;
  color: white;
  margin-bottom: 10px;
}
.site-footer p {
  margin: 0;
  max-width: 58ch;
  line-height: 1.7;
}
.footer-meta {
  display: flex;
  align-items: center;
  gap: 34px;
}
.footer-block {
  display: grid;
  gap: 6px;
}
.footer-title {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  color: var(--gold);
}
.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-links a { color: rgba(255,255,255,0.82); }

@media (max-width: 1024px) {
  .logo-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-facts { grid-template-columns: 1fr; max-width: 360px; }
}
@media (max-width: 860px) {
  .intro-grid,
  .location-grid,
  .signup-grid,
  .form-row,
  .logo-grid {
    grid-template-columns: 1fr;
  }
  .topbar-inner {
    min-height: 78px;
    padding: 14px 0;
    align-items: center;
    flex-wrap: wrap;
  }
  .menu-toggle { display: block; margin-left: auto; }
  .topnav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 0 6px;
  }
  .topnav.open { display: flex; }
  .topbar.scrolled .topnav,
  .topnav.open {
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .hero-copy-box h1 { max-width: none; }
  .footer-inner,
  .footer-meta,
  .footer-brand { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 640px) {
  .container { width: min(100% - 24px, 1180px); }
  .hero-content { padding: 108px 0 56px; }
  .hero-buttons { flex-direction: column; }
  .btn { width: 100%; }
  .hero-copy-box h1 { font-size: 2.6rem; }
  .hero-copy-box p { font-size: 1rem; }
}
