/* ===========================
   RESET & BASE
   =========================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --gold:       #c8a96e;
  --gold-light: #e0c898;
  --gold-dark:  #9a7a44;
  --dark:       #0a0c10;
  --dark-2:     #111418;
  --dark-3:     #181c22;
  --mid:        #22272f;
  --text:       #d0d4da;
  --text-muted: #7a8290;
  --white:      #f0f2f5;
  --font-primary:   'Lexend', sans-serif;
  --font:           'Inter', system-ui, sans-serif;
}

html {
  font-family: var(--font);
  color: var(--text);
  background: var(--dark);
  scroll-behavior: smooth;
}



h1, h2, h3 {
  font-family: var(--font-primary);
  font-weight: 900;
  text-transform: uppercase;
}

/* ===========================
   SCROLL SNAP CONTAINER
   =========================== */
.scroll-container {
  height: 100vh;
  overflow-y: scroll;
  scroll-behavior: smooth;
}

/* ===========================
   NAVBAR
   =========================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 3rem;
  background: rgba(10, 12, 16, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200, 169, 110, 0.12);
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity 0.3s ease, transform 0.35s ease;
}

.navbar--hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-100%);
}

.navbar--visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 0.6rem;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white);
}

.hex-icon {
  width: 28px;
  height: 28px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--gold);
}


/* ===========================
   SECTION BASE
   =========================== */
.section {
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.section-inner {
  width: 100%;
  max-width: 1400px;
  padding: 2rem 3rem;
  display: flex;
  gap: 4rem;
  align-items: center;
}

.section-inner--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2.5rem;
}

.section-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.section-title span {
  color: var(--gold);
}

.body-text {
  color: var(--text-muted);
  line-height: 1.75;
  font-size: 0.95rem;
  max-width: 48ch;
  margin-bottom: 1rem;
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-block;
  position: relative;
  overflow: hidden;
  padding: 0.8rem 2rem;
  border-radius: 2px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  align-self: flex-start;
  transition: color 0.35s ease;
  z-index: 0;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -20%;
  width: 140%;
  height: 100%;
  background: var(--gold);
  transform: translateX(-100%) skewX(-12deg);
  transition: transform 0.35s ease;
  z-index: -1;
}

.btn:hover {
  color: var(--dark);
}

.btn:hover::before {
  transform: translateX(0) skewX(-12deg);
}

.btn--primary {
  color: var(--gold);
}

.btn--outline {
  color: var(--gold);
}

.section--team .btn {
  align-self: center;
}

/* ===========================
   HERO SECTION
   =========================== */
.section--hero {
  background: var(--dark);
  text-align: center;
}


.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 70vh;
  padding: 0 clamp(1.5rem, 5vw, 6rem);
}

.hero-content .btn {
  align-self: center;
}

.hero-hex {
  width: clamp(160px, 28vw, 380px);
  height: auto;
  animation: hex-pulse 4s ease-in-out infinite;
}

@keyframes hex-pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.04); }
}

.hero-title {
  font-size: clamp(1.4rem, 9vw, 8rem);
  line-height: 1.1;
  color: var(--white);
  letter-spacing: 0.2em;
  text-align: center;
  width: 100%;
}



/* ===========================
   QUOTE SECTION
   =========================== */
.section--quote {
  background: var(--dark);
  height: 50vh;
}

.quote-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.quote-content .btn {
  align-self: center;
}

.quote-text {
  font-family: var(--font-primary);
  font-weight: 900;
  font-size: clamp(2rem, 6vw, 6rem);
  color: var(--white);
  text-align: center;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0 clamp(1.5rem, 6vw, 8rem);
  line-height: 1.15;
}

/* ===========================
   ABOUT SECTION
   =========================== */
.section--about {
  background: var(--dark-2);
  height: auto;
  padding: 5rem 0;
}

.section--about .body-text {
  max-width: 68ch;
}

.about-text {
  flex: 1;
}

.section-inner--center .about-text {
  flex: none;
  max-width: 860px;
  text-align: center;
}

.section-inner--center .about-text .body-text {
  max-width: 80ch;
  margin-left: auto;
  margin-right: auto;
}

.section-inner--center .about-text .btn {
  display: inline-block;
}

.about-text .section-eyebrow {
  margin-bottom: 1rem;
}

.about-text .section-title {
  margin-bottom: 1.25rem;
}

.about-text .body-text {
  margin-bottom: 1.5rem;
}

.about-text .btn {
  margin-top: 1.25rem;
}

.about-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hex-cluster {
  display: grid;
  grid-template-columns: repeat(3, 90px);
  grid-template-rows: repeat(3, 78px);
  gap: 6px;
}

.hex-cell {
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: var(--mid);
  transition: background 0.4s;
}

.hex-cell--accent {
  background: rgba(200, 169, 110, 0.18);
}

.hex-cell:hover {
  background: rgba(200, 169, 110, 0.28);
}

/* ===========================
   PRODUCTS-ALL SECTION
   =========================== */
.section--products-all {
  background: var(--dark-2);
}

.section--related {
  background: var(--dark-2);
}

/* Dividers between consecutive sections */
.section + .section {
  border-top: 1px solid rgba(200, 169, 110, 0.1);
}

.hex-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 80px);
  grid-template-rows: repeat(3, 70px);
  gap: 8px;
}

/* ===========================
   PRODUCT SECTIONS
   =========================== */
.section--product {
  background: var(--dark-2);
  padding: 0;
}

.product-split {
  display: flex;
  width: 100%;
  height: 100%;
}

.product-split--reverse {
  flex-direction: row-reverse;
}

.product-visual {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  background: rgba(200, 169, 110, 0.03);
  border-right: 1px solid rgba(200, 169, 110, 0.08);
  padding: 3rem;
}

.product-split--reverse .product-visual {
  border-right: none;
  border-left: 1px solid rgba(200, 169, 110, 0.08);
}

.product-visual svg {
  width: min(280px, 45%);
  height: auto;
  filter: drop-shadow(0 0 40px rgba(200, 169, 110, 0.12));
}

.product-visual-label {
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.product-info {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 5rem;
}

.product-info .body-text {
  max-width: 72ch;
  margin-bottom: 1.5rem;
}

.product-info .section-eyebrow {
  margin-bottom: 1rem;
}

.product-info .section-title {
  margin-bottom: 1.25rem;
}

.product-info .btn {
  margin-top: 1.25rem;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.tag {
  font-family: var(--font);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.3rem 0.75rem;
  border: 1px solid rgba(200, 169, 110, 0.3);
  background: rgba(200, 169, 110, 0.05);
  border-radius: 2px;
  cursor: default;
  user-select: none;
}

/* ===========================
   FEATURED PRODUCTS SECTION
   =========================== */
.section--featured-products {
  background: var(--dark-2);
  height: auto;
  min-height: 100vh;
  padding: 5rem 0;
  justify-content: center;
}

.featured-products-inner {
  width: 100%;
  max-width: 1400px;
  padding: 0 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.featured-products-inner .section-eyebrow {
  margin-bottom: 0;
}

.featured-products-inner .section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.featured-products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  width: 100%;
}

.featured-card {
  display: flex;
  flex-direction: row;
  background: rgba(200, 169, 110, 0.03);
  border: 1px solid rgba(200, 169, 110, 0.2);
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.featured-card:hover {
  border-color: rgba(200, 169, 110, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 12px 50px rgba(200, 169, 110, 0.1);
}

.featured-card-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 3.5rem;
  background: rgba(200, 169, 110, 0.04);
  border-right: 1px solid rgba(200, 169, 110, 0.1);
  flex-shrink: 0;
  width: 260px;
}

.featured-card-visual svg {
  width: 130px;
  height: auto;
  filter: drop-shadow(0 0 30px rgba(200, 169, 110, 0.2));
}

.featured-card-body {
  display: flex;
  flex-direction: column;
  padding: 2.5rem 3rem;
  flex: 1;
  justify-content: center;
}

.featured-card-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.featured-card-title {
  font-family: var(--font-primary);
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.featured-card-title span {
  color: var(--gold);
}

.featured-card-body .product-tags {
  margin-bottom: 1.25rem;
}

.featured-card-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex: 1;
}

.featured-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

.featured-all-cta {
  width: 100%;
  padding-top: 3.5rem;
  margin-top: 1rem;
  border-top: 1px solid rgba(200, 169, 110, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.featured-all-cta .section-title {
  margin-bottom: 1.25rem;
}

.featured-all-cta .body-text {
  max-width: 72ch;
  margin-bottom: 1rem;
}

.featured-all-cta .btn {
  margin-top: 1.25rem;
  align-self: center;
}

/* ===========================
   TEAM SECTION
   =========================== */
.section--team {
  background: var(--dark-2);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  width: 100%;
}

.team-card {
  text-align: center;
  background: rgba(200, 169, 110, 0.03);
  border: 1px solid rgba(200, 169, 110, 0.08);
  border-radius: 4px;
  padding: 2rem 1.5rem;
  transition: border-color 0.2s, transform 0.2s;
}

.team-card:hover {
  border-color: rgba(200, 169, 110, 0.3);
  transform: translateY(-3px);
}


.team-avatar {
  display: flex;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.avatar-hex {
  width: 72px;
  height: 72px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: var(--dark-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  border: 2px solid var(--gold-dark);
}

.avatar-hex--accent {
  background: rgba(200, 169, 110, 0.15);
}

.team-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.team-role {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.team-bio {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ===========================
   CONTACT SECTION
   =========================== */
.section--contact {
  background: var(--dark);
  flex-direction: column;
  justify-content: center;
}

.section--contact .section-inner {
  align-items: flex-start;
}

.contact-text {
  flex: 1;
}

.contact-info {
  list-style: none;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-info li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.contact-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-info span:last-child {
  font-size: 0.9rem;
  color: var(--text);
}

.contact-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group textarea {
  background: var(--mid);
  border: 1px solid rgba(200, 169, 110, 0.15);
  border-radius: 2px;
  padding: 0.7rem 1rem;
  color: var(--text);
  font-family: var(--font);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
  resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.6;
}

/* ===========================
   FOOTER
   =========================== */
.site-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem 3rem;
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  border-top: 1px solid rgba(200, 169, 110, 0.08);
}

/* ===========================
   HAMBURGER BUTTON
   =========================== */
.nav-toggle {
  display: none;
  position: relative;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 52px;
  height: 60px;
}


.nav-toggle span {
  display: block;
  position: relative;
  z-index: 1;
  width: 20px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
  transition: transform 0.25s, opacity 0.25s;
}

.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===========================
   RESPONSIVE — 1024px
   =========================== */
@media (max-width: 1024px) {
  .product-info {
    padding: 3rem;
  }

  .section-inner {
    gap: 2.5rem;
  }

}

/* ===========================
   RESPONSIVE — 768px
   =========================== */
@media (max-width: 768px) {
  /* Hero */
  .hero-title {
    letter-spacing: 0.1em;
  }

  /* Navbar — strip bar, float the toggle */
  .navbar {
    background: transparent;
    backdrop-filter: none;
    border-bottom: none;
    padding: 1rem 1.25rem;
    pointer-events: none;
    justify-content: flex-end;
  }

  .navbar.navbar--visible {
    pointer-events: none;
  }

  .navbar.nav-is-open {
    background: rgba(10, 12, 16, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(200, 169, 110, 0.12);
    pointer-events: auto;
  }

  .navbar.navbar--hidden .nav-toggle {
    pointer-events: none;
  }

  .nav-logo {
    display: none;
  }

  .nav-toggle {
    display: flex;
    pointer-events: auto;
    width: auto;
    height: auto;
    padding: 4px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: center;
    gap: 0;
    background: rgba(10, 12, 16, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(200, 169, 110, 0.12);
    padding: 1rem 0;
    pointer-events: auto;
  }

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

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-links a {
    display: block;
    padding: 0.75rem 1rem;
  }


  /* Section base */
  .section-inner {
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 2rem;
    align-items: flex-start;
  }

  .section-inner--center {
    align-items: center;
  }

  /* About / Products-all — hide visual on mobile */
  .about-visual {
    display: none;
  }

  .about-text .body-text {
    max-width: 100%;
  }

  /* Products — stack logo top, info bottom */
  .product-split,
  .product-split--reverse {
    flex-direction: column;
  }

  .product-visual {
    flex: 0 0 42%;
    border-right: none;
    border-left: none;
    border-bottom: 1px solid rgba(200, 169, 110, 0.08);
    padding: 2rem;
  }

  .product-split--reverse .product-visual {
    border-left: none;
    border-bottom: 1px solid rgba(200, 169, 110, 0.08);
  }

  .product-visual svg {
    width: min(180px, 50%);
  }

  .product-info {
    flex: 1;
    padding: 2rem 1.5rem;
    overflow-y: auto;
  }

  .product-info .body-text {
    max-width: 100%;
  }

  /* Team — single column */
  .team-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    width: 100%;
  }

  .team-card {
    padding: 1.5rem 1rem;
  }

  .featured-products-inner {
    padding: 0 1.5rem;
  }

  .featured-card {
    flex-direction: column;
  }

  .featured-card-visual {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid rgba(200, 169, 110, 0.1);
    padding: 2rem;
  }

  /* Contact — stack text top, form bottom */
  .section--contact .section-inner {
    flex-direction: column;
    align-items: stretch;
    overflow-y: auto;
    max-height: 100vh;
    padding-top: 5rem;
    padding-bottom: 4rem;
  }

  .contact-info {
    margin-top: 1rem;
  }

  .contact-form textarea {
    rows: 3;
  }
}

/* ===========================
   RESPONSIVE — 480px
   =========================== */
@media (max-width: 480px) {
  /* Hero */
  .hero-title {
    letter-spacing: 0.05em;
  }

  /* Products */
  .product-visual {
    flex: 0 0 38%;
  }

  .product-visual svg {
    width: min(140px, 55%);
  }


  /* Contact */
  .section--contact .section-inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

/* ===========================
   SCROLLBAR
   =========================== */
.scroll-container::-webkit-scrollbar {
  width: 4px;
}

.scroll-container::-webkit-scrollbar-track {
  background: var(--dark);
}

.scroll-container::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 2px;
}
