:root {
  --paper: #f4f1e8;
  --paper-warm: #ebe6d9;
  --ink: #0a0a0a;
  --ink-muted: #3a3a38;
  --ink-faint: #6b6b66;
  --rule: rgba(10, 10, 10, 0.12);
  --rule-light: rgba(10, 10, 10, 0.06);
  /* Work section accents (chips, buttons, year) */
  --work-cream: #f8f4ec;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: "Space Mono", monospace;
  overflow-x: hidden;
  cursor: auto;
}

/* Top band: ticker + nav with newsprint grid */
.top-band {
  position: relative;
  background-color: var(--paper);
  background-image: linear-gradient(var(--rule-light) 1px, transparent 1px),
    linear-gradient(90deg, var(--rule-light) 1px, transparent 1px);
  background-size: 40px 40px;
  border-bottom: 1px solid var(--rule);
}

.ticker {
  background: transparent;
  overflow: hidden;
  white-space: nowrap;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--rule);
}

.ticker-inner {
  display: inline-flex;
  align-items: center;
  animation: ticker 28s linear infinite;
}

.ticker-word {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.18em;
  padding: 12px 0;
  padding-right: 28px;
  white-space: nowrap;
  color: var(--ink);
}

.ticker-sep {
  color: var(--ink-muted);
  font-size: 1rem;
  padding: 0 16px 0 0;
  opacity: 0.45;
  font-family: "Space Mono", monospace;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

nav {
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 10;
}

.nav-logo {
  font-family: "Permanent Marker", cursive;
  font-size: 1.5rem;
  color: var(--ink);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.15em;
  color: var(--ink-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-links .nav-cta {
  border: 1px solid var(--ink);
  color: var(--ink);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 1.1rem;
}

.nav-links .nav-cta:hover {
  background: var(--ink);
  color: var(--paper);
}

.hero {
  min-height: 80vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 20px 40px 50px;
  position: relative;
  overflow: hidden;
  gap: 20px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--rule-light) 1px, transparent 1px),
    linear-gradient(90deg, var(--rule-light) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.hero-text {
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(10, 10, 10, 0.04);
  border: 1px solid var(--rule);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 20px;
}

.hero-eyebrow span {
  font-size: 0.72rem;
  color: var(--ink-muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-eyebrow .dot {
  width: 6px;
  height: 6px;
  background: var(--ink);
  border-radius: 50%;
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

.hero-h1 {
  font-family: "Protest Riot", system-ui, sans-serif;
  font-size: clamp(5.25rem, 11vw, 10.5rem);
  line-height: 0.92;
  color: var(--ink);
  letter-spacing: 0.02em;
}

.hero-h1 span {
  color: var(--ink);
}

.hero-sub {
  font-family: "Newsreader", Georgia, serif;
  font-size: 0.95rem;
  color: var(--ink-muted);
  line-height: 1.65;
  max-width: 400px;
  margin: 16px 0 22px;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
}

.hero-pill {
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: 100px;
  border: 1px solid var(--rule);
  color: var(--ink-faint);
  text-transform: uppercase;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  cursor: pointer;
  user-select: none;
}

.hero-pill:hover {
  border-color: var(--ink-muted);
  color: var(--ink-muted);
}

.hero-pill.active {
  background: rgba(10, 10, 10, 0.06);
  border-color: var(--ink);
  color: var(--ink);
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.btn-hero-primary {
  background: var(--ink);
  color: var(--paper);
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.15em;
  padding: 14px 32px;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(10, 10, 10, 0.15);
  background: #1a1a1a;
}

.btn-hero-secondary {
  background: transparent;
  color: var(--ink);
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.15em;
  padding: 14px 32px;
  border: 1.5px solid var(--rule);
  border-radius: 100px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-hero-secondary:hover {
  border-color: var(--ink);
  background: rgba(10, 10, 10, 0.03);
}

.hero-mini-stats {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hms-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid var(--rule);
  border-radius: 10px;
  padding: 8px 14px;
}

.hms-val {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.1rem;
  color: var(--ink);
  letter-spacing: 0.05em;
  line-height: 1;
}

.hms-lbl {
  font-size: 0.6rem;
  color: var(--ink-faint);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.3;
}

.hero-img-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.hero-img-ring {
  position: relative;
  width: 420px;
  height: 420px;
  background: radial-gradient(
    circle at 35% 35%,
    rgba(10, 10, 10, 0.04),
    transparent 65%
  );
  border-radius: 50%;
  border: 1px dashed var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: slowSpin 25s linear infinite;
}

@keyframes slowSpin {
  to {
    transform: rotate(360deg);
  }
}

.hero-img-ring img {
  max-height: min(500px, 70vh);
  width: auto;
  height: auto;
  object-fit: contain;
  animation: slowSpin 25s linear infinite reverse, float 4s ease-in-out infinite;
  filter: drop-shadow(0 16px 32px rgba(10, 10, 10, 0.12));
  position: relative;
  z-index: 2;
  transition: opacity 0.25s ease;
  cursor: pointer;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(360deg);
  }
  50% {
    transform: translateY(-15px) rotate(360deg);
  }
}

.stats-strip {
  display: flex;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 0 40px;
  background: rgba(255, 255, 255, 0.25);
}

.stat {
  flex: 1;
  text-align: center;
  padding: 20px 10px;
  border-right: 1px solid var(--rule);
}

.stat:last-child {
  border-right: none;
}

.stat-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.5rem;
  color: var(--ink);
  line-height: 1;
}

.stat-label {
  font-size: 0.62rem;
  color: var(--ink-faint);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 4px;
}

.slider-section {
  padding: 80px 0 60px;
  position: relative;
  z-index: 1;
}

.slider-section .section-header {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.section-header {
  padding: 0 40px;
  margin-bottom: 28px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.section-header--wide {
  max-width: 1000px;
  margin: 0 auto;
}

.section-header h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.9;
  color: var(--ink);
}

.section-header h2 em {
  font-style: normal;
  color: #6b4a6e;
}

.section-header p {
  font-family: "Newsreader", Georgia, serif;
  font-size: 0.9rem;
  color: var(--ink-muted);
  max-width: 300px;
  line-height: 1.65;
}

.slider-section .section-header p {
  max-width: 560px;
  margin: 0;
  text-align: left;
}

/* Extra top padding so leaning card art clears overflow:hidden (not clipped under the heading) */
.slider-viewport {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 138px 0 56px;
  margin-top: 0;
}

.slider-track {
  display: flex;
  gap: 24px;
  padding: 0 40px;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  user-select: none;
}

.slider-track.dragging {
  transition: none;
  cursor: grabbing;
}

.project-card {
  --card-accent: var(--ink);
  width: 340px;
  min-width: 300px;
  max-width: min(340px, 92vw);
  min-height: 480px;
  border-radius: 28px;
  flex-shrink: 0;
  position: relative;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 0;
  cursor: grab;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.project-card:hover {
  transform: translateY(-10px) rotate(-0.5deg);
  box-shadow: 0 24px 48px rgba(10, 10, 10, 0.18);
}

.project-card:nth-child(even):hover {
  transform: translateY(-10px) rotate(0.5deg);
}

.project-card__art {
  flex: 0 0 auto;
  min-height: 220px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 4px 8px 0 10px;
  overflow: visible;
}

/* Break the picture plane: sit high + left, slightly rotated, like leaning out of the box */
.card-img {
  display: block;
  position: relative;
  top: -56px;
  left: -14px;
  width: auto;
  height: auto;
  max-width: calc(100% + 20px);
  max-height: 300px;
  object-fit: contain;
  z-index: 2;
  pointer-events: none;
  transform: rotate(-2.5deg);
  transform-origin: 50% 65%;
  transition: transform 0.4s cubic-bezier(0.34, 1.3, 0.64, 1), filter 0.35s ease;
  filter: drop-shadow(0 18px 32px rgba(0, 0, 0, 0.38));
}

.project-card:hover .card-img {
  transform: rotate(-1deg) translate(4px, -10px) scale(1.04);
}

/* Dark tinted panels + accent (full-bleed color like the original cards) */
.project-card--p1 {
  --card-accent: #c8ccc4;
  background: linear-gradient(165deg, #3a3d42 0%, #2a2c30 100%);
}
.project-card--p2 {
  --card-accent: #9f8fd8;
  background: linear-gradient(165deg, #2e2650 0%, #1f1a38 100%);
}
.project-card--p3 {
  --card-accent: #e4b84a;
  background: linear-gradient(165deg, #4a3d12 0%, #2e2608 100%);
}
.project-card--p4 {
  --card-accent: #f07868;
  background: linear-gradient(165deg, #4a2218 0%, #30150f 100%);
}
.card-chip {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  border: 1px solid var(--card-accent);
  color: var(--card-accent);
  z-index: 6;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(6px);
}

.card-bottom {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 8px 28px 28px;
  margin-top: auto;
}

.card-name {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.2rem;
  letter-spacing: 0.08em;
  line-height: 1;
  color: var(--work-cream);
  margin-bottom: 8px;
}

.card-desc {
  font-family: "Newsreader", Georgia, serif;
  font-size: 0.8rem;
  color: rgba(248, 244, 236, 0.72);
  line-height: 1.55;
  margin-bottom: 18px;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.card-price {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.35rem;
  color: var(--card-accent);
  letter-spacing: 0.06em;
}

.card-btn {
  background: var(--card-accent);
  color: #141210;
  border: none;
  padding: 10px 20px;
  border-radius: 100px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: transform 0.2s, filter 0.2s;
}

a.card-btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.card-btn:hover {
  transform: scale(1.05);
  filter: brightness(1.08);
}

.slider-controls {
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 10px;
}

.ctrl-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid var(--rule);
  background: transparent;
  color: var(--ink);
  font-size: 1.2rem;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ctrl-btn:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 100px;
  background: var(--rule);
  transition: background 0.3s, width 0.3s;
  cursor: pointer;
}

.slider-dot.active {
  background: #5c3d5e;
  width: 28px;
}

.ingredients-section {
  padding: 100px 40px 80px;
  position: relative;
}

.ingredients-section::before {
  content: "FOCUS";
  font-family: "Bebas Neue", sans-serif;
  font-size: 20vw;
  color: rgba(10, 10, 10, 0.03);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 0.1em;
}

.ingredients-grid {
  max-width: 1000px;
  margin: 100px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 4px;
  row-gap: 100px;
  background: transparent;
  overflow: visible;
  position: relative;
}

.ing-card {
  padding: 88px 24px 36px;
  min-height: 260px;
  position: relative;
  overflow: visible;
  transition: background 0.3s;
  cursor: default;
  border: 1px solid rgba(10, 10, 10, 0.06);
}

.ing-card:nth-child(1),
.ing-card:nth-child(2),
.ing-card:nth-child(3) {
  z-index: 3;
}

.ing-card:nth-child(4),
.ing-card:nth-child(5),
.ing-card:nth-child(6) {
  z-index: 2;
}

.ing-card.c1 {
  background: #e9e8e4;
}
.ing-card.c2 {
  background: #e8e6f0;
}
.ing-card.c3 {
  background: #f2ecdf;
}
.ing-card.c4 {
  background: #f3e9e6;
}
.ing-card.c5 {
  background: #f0e8ec;
}

.ing-card:hover {
  filter: brightness(0.98);
}

.ing-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  transition: width 0.4s;
}

.ing-card:hover::before {
  width: 100%;
}

.ing-card.c1::before {
  background: #7a7670;
}
.ing-card.c2::before {
  background: #6b5bb5;
}
.ing-card.c3::before {
  background: #b8952e;
}
.ing-card.c4::before {
  background: #c45c48;
}
.ing-card.c5::before {
  background: #b85a78;
}

.ing-card.c6::before {
  background: #5c4a5e;
}

.ing-img-wrap {
  position: absolute;
  top: -62px;
  left: 8px;
  width: 168px;
  height: 168px;
  z-index: 5;
  pointer-events: none;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.ing-img {
  max-width: 100%;
  max-height: 168px;
  width: auto;
  height: auto;
  object-fit: contain;
  transform: rotate(-3deg);
  transform-origin: 50% 80%;
  transition: transform 0.4s ease;
  filter: drop-shadow(0 10px 18px rgba(10, 10, 10, 0.14));
}

.ing-card:hover .ing-img {
  transform: rotate(-1.5deg) translate(2px, -10px) scale(1.08);
}

.ing-name {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.05em;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 10px;
}

.ing-desc {
  font-family: "Newsreader", Georgia, serif;
  font-size: 0.78rem;
  color: var(--ink-muted);
  line-height: 1.65;
}

.ing-card--cta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding-top: 36px;
  background: #e4dfe8;
  border-color: rgba(10, 10, 10, 0.05);
}

.ing-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.ing-cta-line {
  font-family: "Permanent Marker", cursive;
  font-size: 1.3rem;
  color: var(--ink-muted);
  line-height: 1.25;
}

.ing-cta-link {
  color: var(--ink);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
}

.ing-cta-link:hover {
  color: var(--ink-muted);
  border-bottom-color: var(--ink-muted);
}

.newsletter {
  padding: 40px;
}

.newsletter-inner {
  background: var(--paper-warm);
  border: 1px solid var(--rule);
  border-radius: 28px;
  padding: 56px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
  position: relative;
  overflow: hidden;
}

.newsletter-inner::after {
  content: "";
  position: absolute;
  right: -20px;
  top: -20px;
  width: 200px;
  height: 200px;
  border: 1px solid var(--rule-light);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.6;
}

.nl-left {
  position: relative;
  z-index: 1;
}

.nl-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--rule);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 14px;
}

.nl-left h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  line-height: 0.9;
  color: var(--ink);
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}

.nl-proof {
  display: flex;
  align-items: center;
  gap: 0;
}

.nl-proof-text {
  font-size: 0.72rem;
  color: var(--ink-muted);
  line-height: 1.4;
}

.nl-proof-text strong {
  color: var(--ink);
  font-weight: 700;
  display: block;
  font-size: 0.8rem;
}

.nl-right {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.nl-perks {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nl-perk {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.74rem;
  color: var(--ink-muted);
}

.nl-perk-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border: 1px solid var(--rule);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.4);
}

.nl-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.nl-input {
  width: 100%;
  padding: 14px 20px;
  border-radius: 14px;
  border: 1px solid var(--rule);
  background: rgba(255, 255, 255, 0.6);
  color: var(--ink);
  font-family: "Space Mono", monospace;
  font-size: 0.82rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.nl-input::placeholder {
  color: var(--ink-faint);
}

.nl-input:focus {
  border-color: var(--ink-muted);
  box-shadow: 0 0 0 3px rgba(18, 18, 18, 0.08);
}

.nl-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.nl-label {
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-family: "Space Mono", monospace;
}

.nl-textarea {
  width: 100%;
  padding: 14px 20px;
  border-radius: 14px;
  border: 1px solid var(--rule);
  background: rgba(255, 255, 255, 0.6);
  color: var(--ink);
  font-family: "Space Mono", monospace;
  font-size: 0.82rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  min-height: 120px;
  resize: vertical;
}

.nl-textarea::placeholder {
  color: var(--ink-faint);
}

.nl-textarea:focus {
  border-color: var(--ink-muted);
  box-shadow: 0 0 0 3px rgba(18, 18, 18, 0.08);
}

.nl-form-note {
  margin: -2px 0 0;
  font-size: 0.68rem;
  color: var(--ink-faint);
}

.nl-form-status {
  margin: 0;
  min-height: 1.2em;
  font-size: 0.72rem;
  color: var(--ink-muted);
}

.nl-btn {
  padding: 14px 26px;
  background: var(--ink);
  color: var(--paper);
  border: none;
  border-radius: 100px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
  justify-self: start;
}

.nl-btn:hover {
  background: #222;
  transform: translateY(-2px);
}

.nl-btn:focus-visible {
  outline: 2px solid var(--ink-muted);
  outline-offset: 2px;
}

.lifestyle {
  padding: 80px 40px 100px;
}

.lifestyle-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.lifestyle-img-frame {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--rule);
}

.lifestyle-img-frame img {
  display: block;
  width: 100%;
  height: auto;
  filter: contrast(1.02);
}

.ls-badge {
  position: absolute;
  bottom: -16px;
  right: 28px;
  background: var(--paper);
  color: var(--ink);
  font-family: "Permanent Marker", cursive;
  font-size: 0.9rem;
  padding: 10px 22px;
  border-radius: 100px;
  border: 1px solid var(--rule);
  transform: rotate(-3deg);
  box-shadow: 2px 2px 0 rgba(10, 10, 10, 0.06);
}

.lifestyle-img-wrap {
  position: relative;
}

.ls-kicker {
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 16px;
}

.ls-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  line-height: 0.92;
  color: var(--ink);
  margin-bottom: 22px;
}

.ls-copy {
  font-family: "Newsreader", Georgia, serif;
  font-size: 0.95rem;
  color: var(--ink-muted);
  line-height: 1.75;
  margin-bottom: 30px;
}

.ls-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.ls-features li {
  display: grid;
  grid-template-columns: 8px 1fr;
  align-items: start;
  column-gap: 14px;
  font-size: 0.8rem;
  color: var(--ink-muted);
  line-height: 1.55;
}

.ls-features li strong {
  color: var(--ink);
}

.ls-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ink);
  flex-shrink: 0;
  margin-top: 0.42rem;
}

.ls-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.ls-btn-p {
  background: var(--ink);
  color: var(--paper);
  padding: 14px 28px;
  border-radius: 100px;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.1em;
  font-size: 1.1rem;
  text-decoration: none;
  transition: transform 0.2s, background 0.2s;
}

.ls-btn-p:hover {
  transform: translateY(-2px);
  background: #222;
}

.ls-btn-s {
  border: 1.5px solid var(--rule);
  color: var(--ink);
  padding: 14px 28px;
  border-radius: 100px;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.1em;
  font-size: 1.1rem;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.ls-btn-s:hover {
  border-color: var(--ink);
  background: rgba(10, 10, 10, 0.03);
}

footer {
  border-top: 1px solid var(--rule);
  padding: 36px 40px;
  background: rgba(255, 255, 255, 0.2);
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 28px;
  text-align: center;
}

.footer-logo-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
}

.footer-logo-text {
  font-family: "Permanent Marker", cursive;
  font-size: 1.2rem;
  color: var(--ink);
  text-decoration: none;
}

.footer-dev-label {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.footer-links {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a,
.footer-links span {
  font-size: 0.68rem;
  color: var(--ink-faint);
  text-decoration: none;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--ink);
}

.footer-contact {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 100px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
  cursor: pointer;
  white-space: nowrap;
}

.footer-contact-btn.btn-outline {
  background: transparent;
  border: 1.5px solid var(--rule);
  color: var(--ink);
}

.footer-contact-btn.btn-outline:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}

.footer-contact-btn.btn-primary {
  background: var(--ink);
  border: 1.5px solid var(--ink);
  color: var(--paper);
}

.footer-contact-btn.btn-primary:hover {
  background: #222;
  transform: translateY(-2px);
}

.footer-contact-btn i {
  font-size: 1rem;
}

@media (max-width: 800px) {
  nav {
    padding: 14px 20px;
  }

  .nav-links {
    gap: 18px;
  }

  .nav-links li:not(:last-child) {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 20px 20px 40px;
    text-align: center;
  }

  .hero-img-wrap {
    order: -1;
    margin-bottom: 10px;
  }

  .hero-img-ring {
    width: 260px;
    height: 260px;
  }

  .hero-img-ring img {
    height: 300px;
  }

  .hero-eyebrow {
    margin: 0 auto 16px;
  }

  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-pills {
    justify-content: center;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-mini-stats {
    justify-content: center;
  }

  .stats-strip {
    padding: 0 20px;
  }

  .stat-num {
    font-size: 2rem;
  }

  .slider-section {
    padding: 60px 0 40px;
  }

  .section-header {
    padding: 0 20px;
  }

  .slider-viewport {
    padding: 118px 0 48px;
  }

  .slider-track {
    padding: 0 20px;
  }

  .slider-controls {
    padding: 0 20px;
  }

  .ingredients-section {
    padding: 70px 20px 60px;
  }

  .ingredients-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 80px;
  }

  .newsletter {
    padding: 20px;
  }

  .newsletter-inner {
    grid-template-columns: 1fr;
    padding: 40px 28px;
    gap: 30px;
  }

  .lifestyle {
    padding: 60px 20px 80px;
  }

  .lifestyle-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ls-btns {
    justify-content: center;
  }

  footer {
    padding: 28px 20px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .footer-links {
    gap: 16px;
    justify-content: center;
  }

  .footer-contact {
    flex-direction: row;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .ticker-word {
    font-size: 1.1rem;
  }

  nav {
    padding: 12px 16px;
  }

  .nav-logo {
    font-size: 1.2rem;
  }

  .hero {
    padding: 16px 16px 36px;
  }

  .hero-h1 {
    font-size: clamp(4rem, 16vw, 5.75rem);
  }

  .hero-img-ring {
    width: 220px;
    height: 220px;
  }

  .hero-img-ring img {
    height: 250px;
  }

  .hero-sub {
    font-size: 0.88rem;
  }

  .stats-strip {
    overflow-x: auto;
  }

  .stat {
    min-width: 80px;
  }

  .stat-num {
    font-size: 1.8rem;
  }

  .stat-label {
    font-size: 0.55rem;
  }

  .project-card {
    width: min(300px, 92vw);
    min-width: 280px;
    min-height: 440px;
  }

  .project-card__art {
    min-height: 200px;
    padding: 2px 4px 0 6px;
  }

  .card-img {
    top: -44px;
    left: -8px;
    max-height: 240px;
  }

  .ingredients-grid {
    grid-template-columns: 1fr;
    row-gap: 80px;
  }

  .newsletter-inner {
    padding: 32px 20px;
  }

  .nl-left h2 {
    font-size: 2.2rem;
  }

  .nl-form {
    flex-direction: column;
  }

  .nl-btn {
    text-align: center;
    justify-self: center;
    width: min(260px, 100%);
  }

  .ls-features {
    gap: 16px;
    margin-bottom: 28px;
  }

  .ls-features li {
    font-size: 0.78rem;
    line-height: 1.6;
  }

  footer {
    padding: 24px 16px;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .footer-contact {
    flex-direction: column;
    gap: 10px;
  }

  .footer-contact-btn {
    width: 100%;
    justify-content: center;
  }
}
