/* ── Reset ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── Variables ── */
:root {
  --accent:       #006ff2;        /* logo blue — buttons, labels, borders, dividers  */
  --accent-light: #7ab8ff;        /* soft blue — headings, highlights                */
  --white:        #ffffff;
  --off-white:    #f0ece4;
  --overlay-dark: rgba(0, 0, 0, 0.38);
}

/* ── Base ── */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Raleway', sans-serif;
  color: var(--white);
  background: #000;
  overflow-x: hidden;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  color: var(--white);
  line-height: 1.15;
}

/* ── Video Background ── */
.video-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.video-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--overlay-dark);
}

/* ── Fixed Header ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 40px 5px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 2px solid rgba(0, 111, 242, 0.15);
}

.site-header img {
  height: 120px;
  width: auto;
  display: block;
}

.header-contact-btn {
  font-family: 'Raleway', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 10px 24px;
  border-radius: 3px;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}

.header-contact-btn:hover {
  background: var(--accent);
  color: #fff;
}

/* ── Page Wrapper ── */
.page {
  position: relative;
  z-index: 1;
}

/* Contact page variant — centers the card vertically */
.page--contact {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 130px 24px 80px;
}

/* ══════════════════════════════════
   HOME PAGE — Hero
══════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 190px 24px 60px;
}

.hero-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.hero-logo {
  height: clamp(3rem, 9vw, 7rem);
  width: auto;
  display: block;
}

.hero-brand {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.4rem, 7.5vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1;
  color: var(--white);
  text-shadow: 0 2px 32px rgba(0, 0, 0, 0.6);
}

.hero-brand sup {
  font-size: 0.38em;
  vertical-align: super;
}

.hero-tagline {
  margin-top: 18px;
  font-size: clamp(0.85rem, 2.2vw, 1.1rem);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--off-white);
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
}

.hero-divider {
  width: 60px;
  height: 2px;
  background: var(--accent);
  margin: 40px auto;
}

.hero-intro {
  max-width: 660px;
  font-family: 'Raleway', sans-serif;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  font-weight: 400;
  line-height: 1.9;
  color: var(--off-white);
}

.hero-intro p + p {
  margin-top: 1.2em;
}

.hero-scroll-hint {
  margin-top: 60px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-light);
  animation: pulse 2.4s ease-in-out infinite;
}

.hero-scroll-hint::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: var(--accent);
  margin: 10px auto 0;
  animation: drop 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.5; }
  50%       { opacity: 1; }
}

@keyframes drop {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── Sections ── */
.section {
  padding: 100px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-inner {
  max-width: 760px;
  width: 100%;
}

.section-label {
  font-family: 'Raleway', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 28px;
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 32px;
}

.section-body {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  font-weight: 400;
  line-height: 1.95;
  color: var(--off-white);
}

.section-body p + p {
  margin-top: 1.4em;
}

.section-body em {
  color: var(--white);
  font-style: italic;
}

.section-divider {
  width: 40px;
  height: 1px;
  background: var(--accent);
  margin: 40px auto;
}

/* ── Audience Grid ── */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin-top: 40px;
  text-align: center;
}

.audience-item {
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(0, 111, 242, 0.35);
  border-radius: 6px;
  padding: 20px 12px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--off-white);
  backdrop-filter: blur(4px);
}

/* ── Callouts ── */
.callout-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.callout {
  background: rgba(0, 111, 242, 0.10);
  border-left: 3px solid var(--accent);
  padding: 24px 20px;
  text-align: left;
  border-radius: 0 6px 6px 0;
}

.callout p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--off-white);
}

/* ── Closing CTA ── */
.cta-section {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px 24px;
}

.cta-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
}

.cta-subtitle {
  margin-top: 16px;
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-light);
  font-size: 0.75rem;
}

.cta-lines {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta-line {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(0.95rem, 2.2vw, 1.2rem);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--off-white);
}

.cta-line.highlight {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.04em;
  color: var(--accent-light);
  font-size: clamp(1.3rem, 3.2vw, 1.9rem);
  margin-top: 8px;
}

/* ══════════════════════════════════
   CONTACT PAGE
══════════════════════════════════ */
.contact-card {
  width: 100%;
  max-width: 620px;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 111, 242, 0.3);
  border-radius: 8px;
  padding: 56px 52px;
}

.contact-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 16px;
}

.contact-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 12px;
}

.contact-subtitle {
  font-size: 0.92rem;
  font-weight: 400;
  color: rgba(240, 236, 228, 0.75);
  line-height: 1.7;
  margin-bottom: 40px;
}

.contact-divider {
  width: 40px;
  height: 1px;
  background: var(--accent);
  margin-bottom: 40px;
}

/* ── Form ── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-light);
}

.form-group input,
.form-group textarea,
.form-group select {
  font-family: 'Raleway', sans-serif;
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(0, 111, 242, 0.3);
  border-radius: 4px;
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(240, 236, 228, 0.35);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.09);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-submit {
  margin-top: 8px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent);
  border: none;
  border-radius: 4px;
  padding: 16px 32px;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.15s ease;
  align-self: flex-start;
}

.form-submit:hover:not(:disabled) {
  background: var(--accent-light);
  color: #000;
  transform: translateY(-1px);
}

.form-submit:active:not(:disabled) {
  transform: translateY(0);
}

.form-submit:disabled {
  background: rgba(0, 111, 242, 0.35);
  color: rgba(255, 255, 255, 0.45);
  cursor: not-allowed;
  transform: none;
}

.form-notice {
  display: none;
  font-size: 0.88rem;
  line-height: 1.6;
  padding: 14px 18px;
  border-radius: 4px;
  margin-top: 4px;
}

.form-notice.success {
  background: rgba(0, 111, 242, 0.12);
  border: 1px solid rgba(0, 111, 242, 0.4);
  color: var(--accent-light);
}

.form-notice.error {
  background: rgba(180, 60, 60, 0.12);
  border: 1px solid rgba(180, 60, 60, 0.4);
  color: #e8a0a0;
}

/* ══════════════════════════════════
   SHOP PAGE
══════════════════════════════════ */
.shop-page {
  background: linear-gradient(160deg, #050d1a 0%, #0a0a14 55%, #000 100%);
}

.shop-intro {
  padding: 160px 24px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.shop-intro-inner {
  max-width: 780px;
  width: 100%;
}

.shop-intro .section-label {
  margin-bottom: 20px;
}

.shop-intro-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 32px;
}

.shop-intro-text {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 400;
  line-height: 1.9;
  color: var(--off-white);
  max-width: 680px;
  margin: 0 auto;
}

.shop-divider {
  width: 50px;
  height: 2px;
  background: var(--accent);
  margin: 48px auto;
}

/* ── Product Grid ── */
.shop-products {
  padding: 0 24px 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.shop-products-inner {
  max-width: 1100px;
  width: 100%;
}

.shop-products-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--white);
  text-align: center;
  margin-bottom: 48px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 380px));
  justify-content: center;
  gap: 28px;
}

.product-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(0, 111, 242, 0.25);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s ease, transform 0.2s ease;
}

.product-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.product-card-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: rgba(0, 111, 242, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(0, 111, 242, 0.15);
}

.product-card-img span {
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(0, 111, 242, 0.5);
}

.product-card-body {
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card-name {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.product-card-desc {
  font-family: 'Raleway', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(240, 236, 228, 0.7);
  flex: 1;
  margin-bottom: 24px;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.product-card-price {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent-light);
}

.product-card-btn {
  font-family: 'Raleway', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent);
  border: none;
  border-radius: 4px;
  padding: 10px 20px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease;
}

.product-card-btn:hover {
  background: var(--accent-light);
  color: #000;
}

.product-card-btn.coming-soon {
  background: rgba(0, 111, 242, 0.2);
  color: var(--accent-light);
  cursor: default;
  pointer-events: none;
}

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
.site-footer {
  position: relative;
  z-index: 1;
  background: rgba(0, 0, 0, 0.72);
  border-top: 1px solid rgba(0, 111, 242, 0.2);
  padding: 48px 24px 36px;
  text-align: center;
}

.site-footer-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-brand {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent-light);
  margin-bottom: 4px;
}

.footer-info {
  font-family: 'Raleway', sans-serif;
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.9;
  color: rgba(240, 236, 228, 0.6);
}

.footer-copy {
  margin-top: 16px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: rgba(240, 236, 228, 0.35);
}

/* Phone rendered via CSS — visible to humans, not raw text for scrapers */
.phone-display::before {
  content: attr(data-p1) ' ' attr(data-p2) '-' attr(data-p3);
}

/* Honeypot — visually hidden, keeps bots out */
.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 600px) {
  .site-header {
    padding: 10px 20px;
  }

  .section {
    padding: 70px 20px;
  }

  .callout-row {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: 40px 28px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-submit {
    width: 100%;
    text-align: center;
  }
}
