:root {
  color-scheme: dark;
  --bg: #0a090c;
  --surface: #121015;
  --surface-raised: #18151d;
  --text: #f6f3f8;
  --muted: #b2abb9;
  --line: rgba(255, 255, 255, 0.11);
  --violet: #8b5cf6;
  --violet-light: #b39aff;
  --gold: #d7a754;
  --green: #25d366;
  --shell: 76rem;
  --radius: 1.25rem;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
  background: var(--bg);
  color: var(--text);
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  margin: 0;
  min-width: 20rem;
  background:
    radial-gradient(circle at 90% 18%, rgba(139, 92, 246, 0.12), transparent 25rem), var(--bg);
  color: var(--text);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--violet-light);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  transform: translateY(-150%);
  border-radius: 0.5rem;
  background: var(--text);
  color: var(--bg);
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(100% - 2rem, var(--shell));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  border-bottom: 1px solid transparent;
  transition:
    background 180ms ease,
    border-color 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(10, 9, 12, 0.9);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 4.5rem;
  align-items: center;
  justify-content: space-between;
}

.brand {
  position: relative;
  display: block;
  width: min(13rem, calc(100vw - 5.75rem));
  height: 3rem;
  overflow: hidden;
  text-decoration: none;
}

.brand-logo {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: auto;
  transform: translateY(-50%);
}

.menu-button {
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  place-content: center;
  gap: 0.3rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(18, 16, 21, 0.78);
  color: var(--text);
  cursor: pointer;
}

.menu-button span {
  width: 1.05rem;
  height: 1px;
  background: currentColor;
}

.primary-navigation {
  position: fixed;
  inset: 4.5rem 0 auto;
  display: grid;
  max-height: 0;
  overflow: hidden;
  border-bottom: 1px solid transparent;
  background: rgba(10, 9, 12, 0.97);
  opacity: 0;
  transition:
    max-height 180ms ease,
    opacity 180ms ease;
}

.primary-navigation.is-open {
  max-height: 18rem;
  padding: 0.75rem 1rem 1.25rem;
  border-color: var(--line);
  opacity: 1;
}

.primary-navigation a {
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 1.05rem;
  text-decoration: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 46rem;
  align-items: end;
  overflow: hidden;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: 68% center;
}

.hero-shade {
  background:
    linear-gradient(180deg, rgba(7, 6, 9, 0.28), rgba(7, 6, 9, 0.35) 35%, rgba(7, 6, 9, 0.94) 80%),
    linear-gradient(90deg, rgba(7, 6, 9, 0.88), rgba(7, 6, 9, 0.12) 80%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 9rem;
  padding-bottom: 11.5rem;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--violet-light);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow span {
  display: inline-grid;
  width: 2rem;
  height: 2rem;
  margin-right: 0.6rem;
  place-items: center;
  border: 1px solid rgba(179, 154, 255, 0.5);
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.18);
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  max-width: 11ch;
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2.75rem, 14vw, 5.8rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

h1 em {
  color: var(--violet-light);
  font-weight: 400;
}

.hero-copy {
  max-width: 34rem;
  margin: 1.5rem 0 0;
  color: #d1cbd6;
  font-size: 1.02rem;
}

.button-row {
  display: grid;
  gap: 0.75rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.3rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 750;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

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

.button-primary {
  background: var(--violet);
  color: white;
}

.button-primary:hover {
  background: #7c4ce9;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(10, 9, 12, 0.52);
  color: white;
}

.hero-facts {
  position: absolute;
  z-index: 3;
  inset: auto 0 0;
  border-top: 1px solid var(--line);
  background: rgba(10, 9, 12, 0.76);
  backdrop-filter: blur(14px);
}

.hero-facts-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.hero-facts p {
  display: grid;
  min-width: 0;
  margin: 0;
  padding: 1rem 0.55rem;
  text-align: center;
}

.hero-facts p + p {
  border-left: 1px solid var(--line);
}

.hero-facts strong {
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-facts span {
  margin-top: 0.3rem;
  color: var(--muted);
  font-size: 0.64rem;
  line-height: 1.3;
}

.section {
  padding-block: 5.5rem;
}

.section-heading {
  max-width: 46rem;
  margin-bottom: 2.5rem;
}

.section-heading h2,
.contact-intro h2 {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2.35rem, 11vw, 4.6rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1;
}

.section-heading > p:last-child,
.contact-intro > p {
  margin: 1rem 0 0;
  color: var(--muted);
}

.feature-card,
.category-card,
.contact-panel,
.map-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
}

.feature-card {
  display: grid;
}

.feature-copy {
  padding: 1.5rem;
}

.card-number {
  margin: 0 0 0.8rem;
  color: var(--violet-light);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.feature-copy h3,
.category-copy h3 {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2rem, 9vw, 3.65rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}

.feature-copy > p:not(.card-number),
.category-copy > p:not(.card-number) {
  color: var(--muted);
}

.brand-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.4rem 0;
  padding: 0;
  list-style: none;
}

.brand-list li {
  padding: 0.48rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.76rem;
  font-weight: 700;
}

.text-link {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  color: var(--violet-light);
  font-weight: 750;
  text-decoration: none;
}

.product-stage {
  position: relative;
  min-height: 24rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.38), transparent 48%),
    linear-gradient(145deg, #191421, #0e0c11);
}

.product-stage::after {
  position: absolute;
  inset: auto 10% 8%;
  height: 2rem;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.65);
  content: '';
  filter: blur(12px);
}

.vape-product {
  position: absolute;
  z-index: 2;
  width: 76%;
  max-width: 22rem;
  filter: drop-shadow(0 1.5rem 1.2rem rgba(0, 0, 0, 0.42));
}

.vape-product-back {
  top: 1.3rem;
  left: -5%;
  transform: rotate(-7deg);
  opacity: 0.78;
}

.vape-product-front {
  right: -4%;
  bottom: 0;
  transform: rotate(5deg);
}

.stage-orbit {
  position: absolute;
  inset: 14% 10%;
  border: 1px solid rgba(179, 154, 255, 0.2);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.secondary-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.category-card {
  display: grid;
}

.category-image {
  position: relative;
  display: grid;
  min-height: 20rem;
  place-items: center;
  overflow: hidden;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.2), transparent 55%), #0e0c11;
}

.category-image > img {
  width: min(92%, 27rem);
  height: 20rem;
  object-fit: contain;
  filter: drop-shadow(0 1.5rem 1.4rem rgba(0, 0, 0, 0.34));
}

.headshop-image > img:first-child {
  width: 70%;
  transform: translateX(-14%);
}

.headshop-image .filter-product {
  position: absolute;
  right: -4%;
  bottom: -2%;
  width: 49%;
  height: auto;
}

.category-copy {
  padding: 1.5rem;
}

.availability-note {
  max-width: 48rem;
  margin: 1.5rem auto 0;
  color: #8f8795;
  font-size: 0.78rem;
  text-align: center;
}

.visit {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(139, 92, 246, 0.06), transparent 30%), #0c0b0e;
}

.visit-grid {
  display: grid;
  gap: 1rem;
}

.visit-details {
  display: grid;
  gap: 0.75rem;
}

.info-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--surface);
}

.info-icon {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.16);
  color: var(--violet-light);
  font-size: 1.2rem;
}

.info-card h3 {
  margin: 0;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.info-card p {
  margin: 0.35rem 0 0;
  color: var(--muted);
}

.route-button {
  margin-top: 0.25rem;
}

.map-card {
  min-height: 27rem;
}

.map-placeholder {
  display: grid;
  min-height: 27rem;
  place-content: center;
  padding: 2rem;
  background:
    linear-gradient(rgba(10, 9, 12, 0.84), rgba(10, 9, 12, 0.94)),
    repeating-linear-gradient(35deg, rgba(139, 92, 246, 0.14) 0 1px, transparent 1px 3rem);
  text-align: center;
}

.map-pin {
  display: grid;
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  place-items: center;
  border: 1px solid rgba(179, 154, 255, 0.35);
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.16);
  color: var(--violet-light);
  font-size: 2rem;
}

.map-placeholder h3 {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.8rem;
}

.map-placeholder p {
  max-width: 25rem;
  color: var(--muted);
}

.map-placeholder .button {
  justify-self: center;
}

.map-card iframe {
  width: 100%;
  height: 27rem;
  border: 0;
}

.contact-panel {
  display: grid;
  gap: 2rem;
  margin-top: 4rem;
  padding: 1.5rem;
  background:
    radial-gradient(circle at 0 0, rgba(139, 92, 246, 0.14), transparent 25rem), var(--surface);
}

.contact-intro .phone-link {
  display: inline-block;
  margin-top: 1.25rem;
  color: var(--violet-light);
  font-size: 1.25rem;
  font-weight: 800;
  text-decoration: none;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field label {
  font-size: 0.84rem;
  font-weight: 750;
}

.field label span,
.privacy-check strong {
  color: var(--violet-light);
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0.8rem;
  background: #0c0a0f;
  color: var(--text);
}

.field input {
  min-height: 3.25rem;
  padding: 0 0.9rem;
}

.field textarea {
  min-height: 9rem;
  padding: 0.85rem 0.9rem;
  resize: vertical;
}

.field input:hover,
.field textarea:hover {
  border-color: rgba(179, 154, 255, 0.5);
}

.field small {
  color: #8f8795;
}

.privacy-check {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: start;
  color: var(--muted);
  font-size: 0.8rem;
}

.privacy-check input {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.18rem;
  accent-color: var(--violet);
}

.privacy-check a {
  color: var(--text);
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.submit-button {
  width: 100%;
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.6;
}

.form-status {
  min-height: 1.5rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.form-status.is-success {
  color: #69e99b;
}

.form-status.is-error,
.field-error {
  color: #ff8f9c;
}

.field-error {
  margin: 0;
  font-size: 0.8rem;
}

.site-footer {
  padding-top: 3.5rem;
  border-top: 1px solid var(--line);
  background: #070608;
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

.footer-brand {
  position: relative;
  width: min(100%, 18rem);
  height: 4.5rem;
  overflow: hidden;
}

.footer-brand img {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: auto;
  transform: translateY(-50%);
}

.footer-grid h2 {
  margin: 0 0 0.55rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-grid a,
.footer-link-button {
  display: block;
  width: fit-content;
  margin-top: 0.35rem;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 0.88rem;
  text-decoration: none;
  cursor: pointer;
}

.footer-grid a:hover,
.footer-link-button:hover {
  color: var(--text);
}

.footer-bottom {
  display: flex;
  margin-top: 3rem;
  padding-block: 1.1rem;
  border-top: 1px solid var(--line);
  justify-content: space-between;
  gap: 1rem;
  color: #77717c;
  font-size: 0.72rem;
}

.footer-bottom p {
  margin: 0;
}

.whatsapp-button {
  position: fixed;
  z-index: 90;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  width: 3.6rem;
  height: 3.6rem;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0.8rem 2rem rgba(0, 0, 0, 0.4);
  color: #062d16;
  text-decoration: none;
}

.whatsapp-button svg {
  width: 1.8rem;
}

.whatsapp-button span {
  position: absolute;
  right: 0;
  bottom: calc(100% + 0.55rem);
  padding: 0.32rem 0.65rem;
  border-radius: 999px;
  background: #f6f3f8;
  color: #111;
  font-size: 0.7rem;
  font-weight: 800;
  white-space: nowrap;
}

.consent-banner {
  position: fixed;
  z-index: 200;
  inset: auto 0.75rem 0.75rem;
  padding: 1.25rem;
  border: 1px solid rgba(179, 154, 255, 0.35);
  border-radius: 1rem;
  background: rgba(18, 16, 21, 0.98);
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(20px);
}

.consent-banner h2 {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.45rem;
  line-height: 1.1;
}

.consent-banner p:not(.eyebrow) {
  margin: 0.7rem 0 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.consent-actions {
  display: grid;
  gap: 0.65rem;
  margin-top: 1rem;
}

[hidden] {
  display: none !important;
}

@media (min-width: 36rem) {
  .button-row,
  .consent-actions {
    display: flex;
    flex-wrap: wrap;
  }

  .hero-facts p {
    padding: 1.15rem 1rem;
  }

  .hero-facts span {
    font-size: 0.76rem;
  }

  .feature-copy,
  .category-copy,
  .contact-panel {
    padding: 2rem;
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }

  .footer-grid > div:last-child {
    grid-column: 2;
  }
}

@media (min-width: 52rem) {
  body.menu-open {
    overflow: auto;
  }

  .menu-button {
    display: none;
  }

  .brand {
    width: 17rem;
    height: 3.6rem;
  }

  .primary-navigation {
    position: static;
    display: flex;
    max-height: none;
    gap: 2rem;
    overflow: visible;
    border: 0;
    background: transparent;
    opacity: 1;
  }

  .primary-navigation a {
    padding: 0.5rem 0;
    border: 0;
    font-size: 0.82rem;
    font-weight: 700;
  }

  .hero {
    min-height: 49rem;
  }

  .hero-content {
    padding-bottom: 9.5rem;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(7, 6, 9, 0.28), rgba(7, 6, 9, 0.48) 72%, rgba(7, 6, 9, 0.9)),
      linear-gradient(90deg, rgba(7, 6, 9, 0.92), rgba(7, 6, 9, 0.08) 68%);
  }

  .hero-copy {
    font-size: 1.12rem;
  }

  .hero-facts-inner {
    width: min(100% - 2rem, 58rem);
  }

  .feature-card {
    grid-template-columns: 1fr 1fr;
    min-height: 35rem;
  }

  .feature-copy {
    display: flex;
    padding: 3rem;
    flex-direction: column;
    justify-content: center;
  }

  .product-stage {
    min-height: 35rem;
  }

  .secondary-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-card {
    grid-template-rows: 25rem 1fr;
  }

  .category-image {
    min-height: 25rem;
  }

  .category-image > img {
    height: 24rem;
  }

  .visit-grid {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .contact-panel {
    grid-template-columns: 0.85fr 1.15fr;
    padding: 3rem;
  }

  .contact-form {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-form .field:nth-of-type(3),
  .contact-form .privacy-check,
  .contact-form .submit-button,
  .contact-form .form-status {
    grid-column: 1 / -1;
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }

  .footer-grid > div:last-child {
    grid-column: auto;
  }

  .consent-banner {
    inset: auto 1.5rem 1.5rem auto;
    width: min(100% - 3rem, 40rem);
    padding: 1.5rem;
  }

  .whatsapp-button {
    right: 1.5rem;
    bottom: 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
