:root {
  --bg: #1b0c0c;
  --panel: #313e17;
  --panel-soft: #243011;
  --accent: #ffde42;
  --accent-deep: #c7ad2f;
  --text: #f7f6f1;
  --text-dim: #d4d1bf;
  --ok: #93c572;
  --space-xs: 0.35rem;
  --space-sm: 0.6rem;
  --space-md: 1rem;
  --space-lg: 1.6rem;
  --space-xl: 2.4rem;
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.8rem;
  --shadow: 0 1rem 2.2rem rgba(0, 0, 0, 0.28);
  --font-display: "Bricolage Grotesque", sans-serif;
  --font-body: "Manrope", sans-serif;
  --transition: 0.32s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: radial-gradient(circle at 12% 18%, #4c5c2d 0%, var(--bg) 44%);
  color: var(--text);
  line-height: 1.45;
  font-size: 0.95rem;
  overflow-x: hidden;
}

a {
  color: var(--accent);
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius-md);
  height: auto;
}

.shell {
  width: min(92%, 74rem);
  margin: 0 auto;
}

.mast {
  width: 100%;
  background: rgba(27, 12, 12, 0.94);
  border-bottom: 0.06rem solid rgba(255, 222, 66, 0.24);
  padding: 0.72rem 0;
  display: flex;
  justify-content: center;
}

.mast.away {
  transform: none;
  opacity: 1;
}

.brandline {
  font-family: var(--font-display);
  font-size: 1.12rem;
  letter-spacing: 0.02em;
  color: var(--accent);
}

.toggle {
  display: none;
  border: 0;
  background: var(--panel);
  color: var(--text);
  border-radius: var(--radius-sm);
  padding: 0.44rem 0.62rem;
  font-size: 0.92rem;
}

.head-inner {
  width: min(92%, 74rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.navline {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.navline a {
  color: var(--text);
  font-size: 0.82rem;
  padding: 0.42rem 0.62rem;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}

.navline a:hover,
.navline a:focus-visible {
  background: var(--accent);
  color: var(--bg);
}

.intro {
  min-height: 72svh;
  padding: var(--space-xl) 0;
  display: grid;
  align-items: center;
}

.hero-piece {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-lg);
  align-items: center;
}

.hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 5vw, 3.3rem);
  margin: 0 0 var(--space-md);
  line-height: 1.04;
}

.hero-copy p {
  color: var(--text-dim);
  max-width: 35rem;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: var(--space-md) 0 var(--space-lg);
}

.chip-row span {
  border: 0.06rem solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  font-size: 0.76rem;
}

.cta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.cta-line a,
.cta-line button {
  border: 0;
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
}

.prime {
  background: var(--accent);
  color: var(--bg);
}

.ghost {
  background: transparent;
  border: 0.06rem solid rgba(255, 255, 255, 0.35);
  color: var(--text);
}

.canvas-wrap {
  min-height: 18rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255, 222, 66, 0.15), rgba(49, 62, 23, 0.85));
  box-shadow: var(--shadow);
  overflow: hidden;
}

#pulse-art {
  width: 100%;
  height: 100%;
  display: block;
}

.skew-band {
  transform: rotate(-2deg);
  margin: 3.4rem 0;
}

.skew-band > .shell {
  transform: rotate(2deg);
}

.card-rail {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tile {
  background: rgba(49, 62, 23, 0.82);
  border-radius: var(--radius-md);
  border: 0.06rem solid rgba(255, 222, 66, 0.18);
  padding: var(--space-md);
}

.photo-pair {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: var(--space-md);
  align-items: end;
  margin: var(--space-xl) 0;
}

.lift {
  transform: translateY(1.6rem);
}

.section {
  padding: var(--space-xl) 0;
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 2rem);
  margin: 0 0 var(--space-sm);
}

.section p {
  color: var(--text-dim);
  margin: 0 0 var(--space-sm);
  overflow-wrap: anywhere;
}

.kink-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-lg);
  align-items: start;
}

.stacked {
  margin-top: -2rem;
}

.pricing-set {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-md);
}

.price-box {
  background: rgba(255, 255, 255, 0.03);
  border: 0.06rem solid rgba(255, 222, 66, 0.2);
  border-radius: var(--radius-md);
  padding: var(--space-md);
}

.price {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.form-wrap {
  display: grid;
  gap: var(--space-sm);
  max-width: 30rem;
}

.form-wrap input,
.form-wrap textarea {
  border: 0.06rem solid rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.18);
  color: var(--text);
  border-radius: var(--radius-sm);
  padding: 0.6rem;
  font: inherit;
}

.consent-row {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  font-size: 0.8rem;
}

.map-box iframe {
  border: 0;
  width: 100%;
  min-height: 16rem;
  border-radius: var(--radius-md);
}

.small-foot {
  padding: var(--space-lg) 0 var(--space-xl);
  border-top: 0.06rem solid rgba(255, 255, 255, 0.16);
  margin-top: var(--space-xl);
}

.footline {
  display: flex;
  justify-content: space-between;
  gap: var(--space-sm);
  flex-wrap: wrap;
  font-size: 0.76rem;
  color: var(--text-dim);
}

.policy-pop {
  position: fixed;
  right: var(--space-md);
  bottom: var(--space-md);
  max-width: 19rem;
  background: var(--panel);
  border-radius: var(--radius-md);
  border: 0.06rem solid rgba(255, 222, 66, 0.36);
  padding: var(--space-md);
  box-shadow: var(--shadow);
  z-index: 50;
}

.policy-pop p {
  margin: 0 0 var(--space-sm);
  font-size: 0.76rem;
}

.hidden {
  display: none;
}

@media (min-width: 90rem) {
  .shell,
  .head-inner {
    width: min(90%, 78rem);
  }
}

@media (max-width: 80rem) {
  .shell,
  .head-inner {
    width: min(93%, 74rem);
  }
}

@media (max-width: 64rem) {
  .hero-piece,
  .card-rail,
  .photo-pair,
  .kink-layout,
  .pricing-set {
    grid-template-columns: 1fr;
  }

  .lift,
  .stacked {
    transform: none;
    margin-top: 0;
  }

  .intro {
    min-height: auto;
  }

  .canvas-wrap {
    min-height: 14.5rem;
  }
}

@media (max-width: 56rem) {
  .shell {
    width: min(94%, 74rem);
  }

  .section {
    padding: 1.9rem 0;
  }

  .card-rail,
  .pricing-set {
    gap: 0.8rem;
  }
}

@media (max-width: 50rem) {
  .toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .navline {
    display: none;
    width: 100%;
    padding-top: var(--space-sm);
    gap: 0.35rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .navline.open {
    display: flex;
  }

  .navline a {
    width: 100%;
    font-size: 0.8rem;
    padding: 0.38rem 0.58rem;
  }
}

@media (max-width: 48rem) {
  .mast {
    padding: 0.58rem 0;
  }

  .head-inner {
    width: min(94%, 74rem);
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .hero-copy h1 {
    font-size: clamp(1.55rem, 8vw, 2.4rem);
  }

  body {
    font-size: 0.9rem;
  }

  .policy-pop {
    right: 0.7rem;
    left: 0.7rem;
    bottom: 0.7rem;
    max-width: none;
  }
}

@media (max-width: 40rem) {
  .section {
    padding: 1.55rem 0;
  }

  .hero-copy p {
    font-size: 0.88rem;
  }

  .chip-row span {
    font-size: 0.72rem;
    padding: 0.3rem 0.58rem;
  }

  .cta-line a,
  .cta-line button {
    width: 100%;
    text-align: center;
    padding: 0.58rem 0.7rem;
  }

  .form-wrap {
    max-width: 100%;
  }

  .map-box iframe {
    min-height: 13rem;
  }

  .footline {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }
}

@media (max-width: 36rem) {
  .head-inner {
    width: 95%;
    gap: 0.55rem;
  }

  .brandline {
    font-size: 1rem;
  }

  .section p,
  .tile p,
  .price-box p {
    font-size: 0.86rem;
  }

  .map-box iframe {
    min-height: 12rem;
  }
}

@media (max-width: 30rem) {
  html {
    font-size: 95%;
  }

  .brandline {
    font-size: 0.96rem;
  }

  .toggle {
    padding: 0.4rem 0.56rem;
    font-size: 0.84rem;
  }

  .hero-copy h1 {
    font-size: clamp(1.3rem, 9vw, 1.2rem);
  }

  .section h2 {
    font-size: clamp(1.05rem, 6.4vw, 1.42rem);
  }

  .price {
    font-size: 1.1rem;
  }

  .policy-pop {
    padding: 0.75rem;
    border-radius: 0.75rem;
  }

  .policy-pop p {
    font-size: 0.72rem;
  }
}

@media (max-width: 26rem) {
  .toggle {
    padding: 0.36rem 0.5rem;
    font-size: 0.8rem;
  }

  .section h2 {
    line-height: 1.2;
  }

  .consent-row {
    font-size: 0.74rem;
  }
}

@media (max-width: 23rem) {
  .mast {
    padding: 0.48rem 0;
  }

  .navline a {
    width: 100%;
    text-align: center;
  }

  .canvas-wrap {
    min-height: 11.2rem;
  }

  .tile,
  .price-box {
    padding: 0.72rem;
  }
}

@media (max-width: 20rem) {
  html {
    font-size: 90%;
  }

  .shell {
    width: 95%;
  }

  .section {
    padding: 1.25rem 0;
  }

  .hero-copy h1 {
    font-size: 1.2rem;
  }

  .brandline {
    font-size: 0.9rem;
  }

  .policy-pop {
    right: 0.35rem;
    left: 0.35rem;
    bottom: 0.35rem;
    padding: 0.62rem;
  }
}
