@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;700&display=swap');

:root {
  --bg: #f8f8f8;
  --panel: #ffffff;
  --text: #0b0b0b;
  --muted-text: #5d5d5d;
  --line: #e5e5e5;
  --black: #000000;
  --red: #bf1111;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Manrope', 'Helvetica Neue', Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top, #fff 0%, #f4f4f4 65%);
  line-height: 1.7;
}

body.menu-open,
body.modal-open { overflow: hidden; }

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

.dropdown-nav[hidden],
.modal[hidden] { display: none !important; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  min-height: 66px;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  font-family: 'Tallow Regular', 'Horizon', 'Impact', sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: clamp(1rem, 2vw, 1.5rem);
}

.menu-toggle {
  border: 1px solid var(--black);
  background: #fff;
  color: var(--black);
  padding: 0.55rem 0.9rem;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dropdown-nav {
  position: fixed;
  top: 66px;
  right: 1rem;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid var(--line);
  border-radius: 16px;
  min-width: 260px;
  padding: 0.6rem;
  box-shadow: var(--shadow);
}

.dropdown-nav ul { list-style: none; margin: 0; padding: 0; }

.dropdown-nav a {
  display: block;
  text-align: center;
  padding: 0.8rem;
  border-radius: 12px;
  font-size: 0.88rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.dropdown-nav a:hover,
.dropdown-nav a:focus-visible,
.dropdown-nav a.active {
  background: #111;
  color: #fff;
}

.hero {
  min-height: calc(100vh - 66px);
  display: grid;
  place-items: center;
  padding: 1rem;
  background: linear-gradient(140deg, #0b0b0b 0%, #2e2e2e 45%, #0f0f0f 100%);
}

.hero-frame {
  width: min(100%, 1280px);
  height: calc(100vh - 98px);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 45px 80px rgba(0, 0, 0, 0.45);
  display: grid;
  place-items: center;
  background: #000;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 5rem 1rem;
  text-align: center;
}

.section h1,
.section h2,
.section h3,
.tag,
.cta-title {
  font-family: 'Tallow Regular', 'Horizon', 'Impact', sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0;
}

.section h1 { font-size: clamp(1.9rem, 4vw, 3rem); }
.section h2 { font-size: clamp(1.35rem, 3vw, 2.2rem); }

.tag {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  font-size: 0.72rem;
  border: 1px solid var(--text);
  border-radius: 999px;
}

.lead {
  max-width: 760px;
  margin: 0.5rem auto 0;
  color: var(--muted-text);
}

.cta-row,
.social-strip {
  margin-top: 1.7rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

button,
.btn {
  appearance: none;
  border: 1px solid var(--black);
  background: var(--black);
  color: #fff;
  padding: 0.78rem 1.15rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.76rem;
  border-radius: 999px;
  cursor: pointer;
}

.btn.ghost,
button.ghost {
  background: transparent;
  color: var(--black);
}

button:hover,
.btn:hover { background: var(--red); border-color: var(--red); color: #fff; }

.newsletter {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.newsletter form {
  margin: 1.5rem auto 0;
  max-width: 700px;
  display: grid;
  gap: 0.7rem;
  grid-template-columns: 1fr auto;
}

input,
textarea {
  width: 100%;
  border: 1px solid #cfcfcf;
  border-radius: 10px;
  padding: 0.8rem 0.95rem;
  font: inherit;
}

.grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.1rem;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.06);
  text-align: center;
}

.card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 12px;
}

.feature-band {
  background: #111;
  color: #fff;
  border-radius: 18px;
}

.feature-band .lead { color: #d6d6d6; }

.site-footer {
  margin-top: 3rem;
  border-top: 1px solid var(--line);
  padding-bottom: 1.5rem;
}

.footer-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 2.2rem 1rem 0;
  text-align: center;
  display: grid;
  gap: 1rem;
}

.small { color: var(--muted-text); font-size: 0.84rem; }

.footer-links,
.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem 1rem;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.07em;
}

.footer-bottom-links {
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  margin-top: 0.4rem;
}

.form-status { margin-top: 0.45rem; font-size: 0.82rem; }
.form-status.success { color: #0f7d2f; }
.form-status.error { color: #b10000; }

.modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(0, 0, 0, 0.58);
  display: grid;
  place-items: center;
  padding: 1rem;
}

.modal-card {
  width: min(920px, 100%);
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: minmax(220px, 42%) 1fr;
}

.modal-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-content {
  padding: 1.5rem;
  text-align: center;
}

.modal-content h2 { margin-bottom: 0.3rem; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 860px) {
  .hero-frame {
    height: calc(100vh - 84px);
    border-radius: 12px;
  }

  .newsletter form { grid-template-columns: 1fr; }

  .modal-card { grid-template-columns: 1fr; }
  .modal-media { max-height: 240px; }
}
