:root {
  --bg: #f3f0ea;
  --text: #f4f1eb;
  --text-dark: #181818;
  --muted: rgba(255, 255, 255, 0.78);
  --line: rgba(255, 255, 255, 0.18);
  --line-dark: rgba(24, 24, 24, 0.14);
  --overlay: rgba(0, 0, 0, 0.24);
  --container: 1440px;
  --header-height: 88px;
  --transition: 240ms ease;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text-dark);
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  height: var(--header-height);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0));
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  height: 100%;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  color: #fff;
}

.main-nav {
  display: flex;
  gap: 36px;
}

.main-nav a {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: #fff;
  transition: opacity var(--transition);
}

.main-nav a:hover {
  opacity: 0.7;
}

.snap-container {
  width: 100%;
}

.panel {
  position: relative;
  min-height: 100vh;
}

.hero-panel {
  display: grid;
  place-items: center;
  overflow: hidden;
}

.panel-image {
  position: absolute;
  inset: 0;
}

.panel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.panel-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.10) 26%, rgba(0, 0, 0, 0.18));
}

.panel-content {
  position: relative;
  z-index: 2;
  max-width: 980px;
  padding: 120px 32px 64px;
  text-align: center;
  color: #fff;
}

.panel-content-center {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.hero-panel h1 {
  margin: 0;
  font-size: clamp(5rem, 13vw, 10rem);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.04em;
}

.lead {
  max-width: 760px;
  margin: 28px auto 0;
  font-size: clamp(1.1rem, 2vw, 1.7rem);
  line-height: 1.45;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.92);
}

.lead.dark {
  color: rgba(24, 24, 24, 0.82);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 238px;
  height: 56px;
  margin-top: 38px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    transform var(--transition),
    background var(--transition),
    color var(--transition),
    border-color var(--transition),
    opacity var(--transition);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-outline {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(6px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn-dark {
  color: #fff;
  background: #181818;
  border: 1px solid #181818;
}

.btn-dark:hover {
  opacity: 0.92;
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 2;
  transform: translateX(-50%);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.product-panel {
  background: #ece8e1;
  color: var(--text-dark);
}

.panel-split {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
}

.panel-split-image {
  min-height: 100vh;
}

.panel-split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.panel-split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 72px 72px;
}

.panel-split-content .eyebrow {
  color: rgba(24, 24, 24, 0.55);
}

.panel-split-content h2 {
  margin: 0;
  font-size: clamp(2.8rem, 6vw, 5.6rem);
  font-weight: 300;
  line-height: 0.96;
  letter-spacing: -0.04em;
}

@media (max-width: 1100px) {
  .panel-split {
    grid-template-columns: 1fr;
  }

  .panel-split-image {
    min-height: 52vh;
  }

  .panel-split-content {
    padding: 56px 28px 72px;
  }
}

@media (max-width: 900px) {
  .site-header {
    height: 76px;
  }

  .header-inner {
    padding: 0 20px;
  }

  .main-nav {
    gap: 18px;
  }

  .main-nav a {
    font-size: 0.76rem;
  }

  .panel-content {
    padding: 110px 20px 56px;
  }

  .hero-panel h1 {
    font-size: clamp(3.5rem, 18vw, 6rem);
  }

  .lead {
    font-size: 1.04rem;
    line-height: 1.5;
  }

  .btn {
    min-width: 210px;
    height: 52px;
  }

  .scroll-indicator {
    bottom: 18px;
  }
}

@media (max-width: 640px) {
  .header-inner {
    flex-direction: column;
    justify-content: center;
    gap: 10px;
  }

  .logo {
    font-size: 0.95rem;
  }

  .main-nav {
    gap: 14px;
  }

  .main-nav a {
    font-size: 0.72rem;
  }

  .panel-split-content h2 {
    font-size: 2.5rem;
  }
}