@import url("https://fonts.googleapis.com/css2?family=Figtree:wght@400;500;600;700;800&family=Fjalla+One&display=swap");

:root {
  --bg: #060606;
  --bg-soft: #0b0b0b;
  --bg-panel: #101010;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --text: #f3f3f3;
  --text-muted: #b7b7b7;
  --text-soft: #8d8d8d;
  --accent: #ec6b16;
  --accent-soft: rgba(236, 107, 22, 0.12);
  --radius: 10px;
  --shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
  --container: min(1220px, calc(100vw - 2rem));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: "Figtree", sans-serif;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.014), transparent 28%),
    linear-gradient(315deg, rgba(236, 107, 22, 0.035), transparent 24%);
}

img {
  display: block;
  max-width: 100%;
}

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

button {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.announcement {
  border-bottom: 1px solid var(--line);
  background: #080808;
  color: var(--text-soft);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.announcement .container {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0;
  flex-wrap: wrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  background: rgba(6, 6, 6, 0.92);
  backdrop-filter: blur(12px);
  transition: border-color 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
}

.site-header .container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.brand__mark {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #0e0e0e;
  object-fit: cover;
}

.brand__eyebrow {
  margin: 0 0 0.08rem;
  color: var(--text-soft);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand__title {
  margin: 0;
  font-family: "Fjalla One", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.site-nav__links a {
  padding: 0.68rem 0.92rem;
  border-radius: 999px;
  color: var(--text-muted);
  font-size: 0.94rem;
  font-weight: 600;
  transition: background 160ms ease, color 160ms ease;
}

.site-nav__links a:hover,
.site-nav__links a.is-active {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #0e0e0e;
  color: var(--text);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.82rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: "Figtree", sans-serif;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button--primary {
  background: var(--accent);
  color: #0b0b0b;
}

.button--ghost {
  border-color: var(--line-strong);
  background: transparent;
  color: var(--text);
}

.button--small {
  min-height: 42px;
  padding: 0.7rem 1rem;
  font-size: 0.81rem;
}

main {
  overflow: clip;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.85rem;
  color: var(--accent);
  font-family: "Figtree", sans-serif;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section {
  padding: 0;
}

.section-shell {
  width: var(--container);
  margin: 0 auto;
  padding: 5rem 0;
}

.section-heading {
  max-width: 42rem;
  margin-bottom: 1.4rem;
}

.section-heading h2 {
  margin: 0;
  font-family: "Fjalla One", sans-serif;
  font-size: clamp(1.95rem, 3.2vw, 3.15rem);
  line-height: 1.06;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.section-heading p {
  margin: 0.9rem 0 0;
  color: var(--text-muted);
}

.hero-campaign {
  position: relative;
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: flex-end;
  background: #0a0a0a;
}

.hero-campaign--lifestyle .hero-campaign__media img {
  object-position: center 48%;
}

.hero-campaign__media {
  position: absolute;
  inset: 0;
}

.hero-campaign__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-campaign__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.42) 34%, rgba(0, 0, 0, 0.16) 70%, rgba(0, 0, 0, 0.22) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.52) 100%);
}

.hero-campaign__content {
  position: relative;
  z-index: 1;
  width: min(540px, 100%);
  padding: 7.5rem 0 5rem;
}

.hero-campaign h1,
.page-hero h1 {
  margin: 0;
  font-family: "Fjalla One", sans-serif;
  font-size: clamp(2.7rem, 5.4vw, 4.7rem);
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.hero-campaign p,
.page-hero p {
  max-width: 34rem;
  margin: 0.95rem 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
}

.hero-campaign__actions,
.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.45rem;
}

.hero-campaign__meta {
  margin-top: 1.3rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.hero-campaign__meta strong {
  color: var(--text);
}

.split-band {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
  align-items: stretch;
  min-height: 660px;
}

.editorial-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.46fr) minmax(0, 0.54fr);
  gap: 2.5rem;
  align-items: start;
}

.editorial-copy {
  padding-top: 1rem;
}

.editorial-copy h2 {
  margin: 0;
  font-family: "Fjalla One", sans-serif;
  font-size: clamp(2rem, 3.4vw, 3.3rem);
  line-height: 1.03;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.editorial-copy p {
  max-width: 28rem;
  margin: 0.95rem 0 0;
  color: var(--text-muted);
}

.editorial-copy .list {
  max-width: 29rem;
}

.editorial-media {
  display: grid;
  gap: 1rem;
}

.editorial-media__primary {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.editorial-media__primary img {
  width: 100%;
  height: auto;
}

.editorial-media__caption {
  width: min(360px, 100%);
  color: var(--text-soft);
  font-size: 0.92rem;
}

.split-band--reverse {
  grid-template-columns: minmax(320px, 0.94fr) minmax(0, 1.06fr);
}

.split-band--reverse .split-band__media {
  order: 2;
}

.split-band--reverse .split-band__content {
  order: 1;
}

.split-band__media {
  min-height: 100%;
  background: #0d0d0d;
}

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

.split-band__content {
  display: flex;
  align-items: center;
  background: #0b0b0b;
}

.split-band__content-inner {
  width: min(470px, calc(100% - 4rem));
  margin: 0 auto;
  padding: 3rem 0;
}

.split-band__content-inner h2,
.split-band__content-inner h3 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.split-band__content-inner p {
  margin: 1rem 0 0;
  color: var(--text-muted);
}

.list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.list li {
  position: relative;
  margin-top: 0.65rem;
  padding-left: 1rem;
  color: var(--text-muted);
}

.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
}

.step-tile {
  background: transparent;
}

.step-tile__image {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius);
  background: #101010;
  box-shadow: var(--shadow);
}

.step-tile__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.step-tile__body {
  padding-top: 0.85rem;
}

.step-tile__index {
  display: inline-block;
  margin-bottom: 0.45rem;
  color: var(--accent);
  font-family: "Figtree", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.step-tile h3,
.photo-card h3,
.buy-summary h3,
.faq-item summary,
.note-panel h3 {
  margin: 0;
  font-family: "Fjalla One", sans-serif;
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.15;
}

.step-tile p,
.photo-card p,
.buy-summary p,
.note-panel p,
.faq-item p {
  margin: 0.7rem 0 0;
  color: var(--text-muted);
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.showcase-strip {
  display: grid;
  gap: 1.5rem;
}

.showcase-strip__image {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.showcase-strip__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-strip__copy {
  width: min(760px, 100%);
}

.showcase-strip__copy h2 {
  margin: 0;
  font-family: "Fjalla One", sans-serif;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.05;
  font-weight: 400;
}

.showcase-strip__copy p {
  margin: 0.9rem 0 0;
  color: var(--text-muted);
}

.photo-card {
  background: transparent;
}

.photo-card__image {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.photo-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-card__body {
  padding-top: 0.9rem;
}

.cta-banner {
  position: relative;
  background: #0b0b0b;
  overflow: hidden;
}

.cta-banner__media {
  position: absolute;
  inset: 0;
}

.cta-banner__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.48));
}

.cta-banner__inner {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin: 0 auto;
  padding: 5rem 0;
}

.cta-banner__content {
  width: min(520px, 100%);
}

.cta-banner h2 {
  margin: 0;
  font-family: "Fjalla One", sans-serif;
  font-size: clamp(1.95rem, 4vw, 3.25rem);
  line-height: 1.02;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.cta-banner p {
  margin: 0.9rem 0 0;
  color: rgba(255, 255, 255, 0.88);
}

.page-hero {
  background: #0a0a0a;
}

.page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: 2rem;
  align-items: center;
  padding: 4.5rem 0 3.5rem;
}

.page-hero__media {
  min-height: 100%;
}

.media-frame {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.media-frame--hero {
  min-height: 560px;
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.46fr);
  gap: 2rem;
  padding: 4rem 0;
}

.product-stack {
  display: grid;
  gap: 1.2rem;
}

.note-panel,
.buy-summary,
.faq-item,
.support-card,
.privacy-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #0f0f0f;
}

.note-panel,
.buy-summary,
.support-card,
.privacy-panel,
.faq-item {
  padding: 1.4rem;
}

.buy-summary {
  position: sticky;
  top: 100px;
}

.buy-summary__price {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  margin: 0.9rem 0 1rem;
}

.buy-summary__price strong {
  font-size: 2.35rem;
  line-height: 1;
  font-weight: 800;
}

.buy-summary__price span {
  color: var(--text-soft);
  font-family: "Figtree", sans-serif;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.buy-summary__actions {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.buy-summary__list {
  margin-top: 1rem;
  border-top: 1px solid var(--line);
}

.buy-summary__line {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--text-muted);
}

.buy-summary__line strong {
  color: var(--text);
  font-size: 0.92rem;
}

.legal-note {
  margin-top: 1rem;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.gallery-story {
  display: grid;
  gap: 0;
}

.gallery-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  min-height: 520px;
}

.gallery-band:nth-child(even) {
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
}

.gallery-band:nth-child(even) .gallery-band__media {
  order: 2;
}

.gallery-band:nth-child(even) .gallery-band__content {
  order: 1;
}

.gallery-band__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-band__content {
  display: flex;
  align-items: center;
  background: #0c0c0c;
}

.gallery-band__content-inner {
  width: min(420px, calc(100% - 4rem));
  margin: 0 auto;
  padding: 2rem 0;
}

.gallery-band__index {
  display: inline-block;
  margin-bottom: 0.55rem;
  color: var(--accent);
  font-family: "Figtree", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.gallery-band h3 {
  margin: 0;
  font-family: "Fjalla One", sans-serif;
  font-size: clamp(1.7rem, 2.5vw, 2.5rem);
  line-height: 1.08;
  font-weight: 400;
}

.gallery-band p {
  margin: 0.85rem 0 0;
  color: var(--text-muted);
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.support-grid--bottom {
  align-items: start;
}

.support-card h3,
.privacy-panel h2 {
  margin: 0;
  font-family: "Fjalla One", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.08;
}

.support-card p,
.privacy-panel p {
  margin: 0.75rem 0 0;
  color: var(--text-muted);
}

.support-card .list {
  margin-top: 0.9rem;
}

.support-block {
  padding: 4.5rem 0;
}

.support-block:last-of-type {
  padding-bottom: 5rem;
}

.privacy-panel {
  max-width: 56rem;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  color: var(--accent);
  font-size: 1.25rem;
}

.faq-item[open] summary::after {
  content: "−";
}

.footer {
  border-top: 1px solid var(--line);
  background: #080808;
}

.footer .container {
  display: block;
  padding: 1.5rem 0 2rem;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer__brand img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: cover;
}

.footer p,
.footer small {
  color: var(--text-soft);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 420ms ease, transform 420ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .split-band,
  .split-band--reverse,
  .editorial-layout,
  .gallery-band,
  .gallery-band:nth-child(even),
  .page-hero__grid,
  .product-layout,
  .support-grid,
  .photo-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .split-band--reverse .split-band__media,
  .split-band--reverse .split-band__content,
  .gallery-band:nth-child(even) .gallery-band__media,
  .gallery-band:nth-child(even) .gallery-band__content {
    order: initial;
  }

  .split-band,
  .gallery-band {
    min-height: 0;
  }

  .buy-summary {
    position: static;
  }
}

@media (max-width: 800px) {
  .announcement .container {
    justify-content: center;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: rgba(10, 10, 10, 0.98);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav__links {
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav__links a,
  .site-nav .button {
    width: 100%;
  }

  .hero-campaign {
    min-height: 74vh;
  }

  .hero-campaign__content,
  .section-shell,
  .cta-banner__inner,
  .page-hero__grid,
  .product-layout,
  .support-block {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 560px) {
  .hero-campaign h1,
  .page-hero h1 {
    font-size: 2.35rem;
  }

  .hero-campaign__content {
    padding: 5.8rem 0 3.5rem;
  }

  .section-shell,
  .product-layout,
  .support-block,
  .page-hero__grid,
  .cta-banner__inner {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .split-band__content-inner,
  .gallery-band__content-inner {
    width: min(100%, calc(100% - 2.2rem));
  }
}
