:root {
  --bg: #f7f3ee;
  --bg-soft: #efe7dc;
  --text: #201b17;
  --muted: #6f6258;
  --card: #ffffff;
  --border: rgba(32, 27, 23, 0.12);
  --accent: #7a4d35;
  --accent-dark: #4e2f20;
  --shadow: 0 18px 50px rgba(32, 27, 23, 0.12);
  --radius: 24px;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(100% - 40px, var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(247, 243, 238, 0.92);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-weight: 750;
  letter-spacing: -0.02em;
}

.brand:hover {
  text-decoration: none;
}

.brand-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.brand-text {
  font-size: 1.05rem;
}

.nav-links {
  display: flex;
  gap: 22px;
  font-size: 0.95rem;
}

.nav-links a {
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--text);
}

.hero,
.page-hero {
  padding: 86px 0 74px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 48px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  max-width: 820px;
  font-size: clamp(2.75rem, 8vw, 6.5rem);
  line-height: 0.92;
  letter-spacing: -0.075em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.hero-text {
  max-width: 660px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 1.14rem;
}

.hero-actions,
.release-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 750;
  border: 1px solid transparent;
}

.button:hover {
  text-decoration: none;
}

.button.primary {
  background: var(--accent-dark);
  color: #ffffff;
}

.button.primary:hover {
  background: #3f261a;
}

.button.secondary {
  background: transparent;
  color: var(--accent-dark);
  border-color: var(--border);
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.58);
}

.hero-image-card {
  padding: 14px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-image {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-radius: calc(var(--radius) - 10px);
}

.section {
  padding: 76px 0;
}

.section.soft {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.two-column {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 48px;
}

.section-copy {
  color: var(--muted);
  font-size: 1.08rem;
}

.section-copy p:last-child {
  margin-bottom: 0;
}

.feature-panel,
.contact-panel {
  max-width: 860px;
  padding: 42px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-panel p,
.contact-panel p {
  color: var(--muted);
}

.release-card {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 36px;
  align-items: center;
  padding: 26px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.release-media img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-radius: calc(var(--radius) - 8px);
}

.release-copy p {
  color: var(--muted);
}

.status-box {
  margin: 24px 0;
  padding: 18px 20px;
  color: var(--text);
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 18px;
}

.site-footer {
  padding: 36px 0;
  color: var(--muted);
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 28px;
}

.footer-inner p {
  margin-bottom: 0;
}

.footer-note {
  max-width: 620px;
  font-size: 0.92rem;
}

@media (max-width: 860px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 14px;
  }

  .hero,
  .page-hero {
    padding-top: 58px;
  }

  .hero-grid,
  .two-column,
  .release-card {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 34px;
  }

  .footer-inner {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 28px, var(--max-width));
  }

  .hero-actions,
  .release-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .feature-panel,
  .contact-panel,
  .release-card {
    padding: 28px 20px;
  }
}