
:root {
  --accent: #CBF3BB;
  --accent-soft: #e3f8da;
  --bg: #050509;
  --text: #f7f7f7;
  --muted: #a6a7b0;
  --card: rgba(15, 15, 21, 0.96);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --radius-xl: 26px;
  --radius-pill: 999px;
  --shadow-soft: 0 18px 60px rgba(0, 0, 0, 0.75);
}

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

html, body {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", sans-serif;
  color: var(--text);
  background-color: var(--bg);
  /* patterned background – not flat & not a single gradient */
  background-image:
    radial-gradient(circle at 0 0, #15141e 0, transparent 55%),
    radial-gradient(circle at 100% 100%, #191924 0, transparent 55%),
    linear-gradient(135deg, rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(225deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size:
    520px 520px,
    520px 520px,
    70px 70px,
    70px 70px;
  background-attachment: fixed;
  line-height: 1.5;
}

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

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

/* ---------- LAYOUT ---------- */

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.wrapper {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- HEADER ---------- */

header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(20px);
  background: linear-gradient(
    to bottom,
    rgba(5, 5, 9, 0.98),
    rgba(5, 5, 9, 0.82),
    transparent
  );
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 30% 15%, var(--accent-soft), transparent 60%),
    radial-gradient(circle at 70% 85%, #607354, transparent 60%),
    #111319;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 10px 30px rgba(0,0,0,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  letter-spacing: 0.12em;
  font-size: 14px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-text span:first-child {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 13px;
}

.brand-text span:last-child {
  font-size: 11px;
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 22px;
  font-size: 14px;
  color: var(--muted);
}

.nav-links a {
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.22s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(9, 9, 13, 0.96);
  color: var(--text);
  cursor: pointer;
  transition: all 0.25s ease;
  gap: 6px;
}

.btn-primary {
  background:
    radial-gradient(circle at 0 -40%, #f5ffee, transparent 60%),
    var(--accent);
  color: #151814;
  border-color: rgba(0,0,0,0.2);
  box-shadow: 0 14px 40px rgba(203,243,187,0.3);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 52px rgba(203,243,187,0.4);
}

.btn-outline {
  background: rgba(9,9,13,0.96);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent-soft);
}

/* mobile nav */

.nav-toggle {
  display: none;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(10, 10, 15, 0.95);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle span {
  width: 16px;
  height: 1.5px;
  background: #fff;
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 16px;
  height: 1.5px;
  background: #fff;
  transition: transform 0.2s ease, top 0.2s ease;
}

.nav-toggle span::before {
  top: -5px;
}
.nav-toggle span::after {
  top: 5px;
}

.nav-toggle.active span {
  background: transparent;
}
.nav-toggle.active span::before {
  top: 0;
  transform: rotate(45deg);
}
.nav-toggle.active span::after {
  top: 0;
  transform: rotate(-45deg);
}

.nav-links-mobile {
  display: none;
  flex-direction: column;
  gap: 10px;
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--muted);
}

.nav-links-mobile a {
  padding: 4px 0;
}

.nav-links-mobile.show {
  display: flex;
}

/* ---------- SECTIONS ---------- */

main {
  flex: 1;
}

.section {
  padding: 60px 0 80px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 18px;
  margin-bottom: 28px;
}

.section-header h2 {
  font-size: 20px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-header p {
  max-width: 420px;
  font-size: 14px;
  color: var(--muted);
}

/* ---------- HERO ---------- */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  padding-top: 40px;
}

.hero-eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.hero-eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: rgba(255,255,255,0.35);
}

.hero-title {
  font-size: clamp(2.8rem, 4vw, 3.6rem);
  line-height: 1.03;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-title span {
  color: var(--accent-soft);
}

.hero-sub {
  max-width: 460px;
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 26px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 22px;
  font-size: 13px;
  color: var(--muted);
}

.hero-meta strong {
  color: var(--accent-soft);
  font-size: 18px;
}

.hero-visual {
  position: relative;
}

/* hero card includes photo + small cards */

.hero-card {
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 0 0, rgba(203,243,187,0.22), transparent 60%),
    var(--card);
  border: 1px solid var(--border-subtle);
  padding: 16px;
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 12px;
}

.hero-photo {
  border-radius: 22px;
  overflow: hidden;
  position: relative;
}

.hero-photo img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transform: scale(1.06);
  transform-origin: center;
  transition: transform 0.8s ease-out;
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: auto 20px 16px;
  height: 60px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0,0,0,0.85), transparent 70%);
  opacity: 0.7;
}

.hero-photo-caption {
  position: absolute;
  left: 20px;
  bottom: 22px;
  z-index: 1;
  font-size: 13px;
}

.hero-photo-caption span {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: rgba(5,5,7,0.9);
  border: 1px solid rgba(255,255,255,0.16);
  color: var(--accent-soft);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.hero-row {
  display: flex;
  gap: 12px;
  font-size: 12px;
}

.hero-mini {
  flex: 1;
  border-radius: 18px;
  padding: 10px 12px;
  background: rgba(9,9,14,0.96);
  border: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--muted);
}

.hero-mini strong {
  font-size: 13px;
  color: var(--accent-soft);
}

/* ---------- GRID / CARDS ---------- */

.grid {
  display: grid;
  gap: 18px;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  border-radius: 22px;
  padding: 18px 18px 20px;
  background:
    radial-gradient(circle at 0 0, rgba(255,255,255,0.06), transparent 55%),
    rgba(11,11,16,0.96);
  border: 1px solid var(--border-subtle);
  box-shadow: 0 14px 38px rgba(0,0,0,0.7);
}

.card-tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 10px;
}

.card-title-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 6px;
}

.card-title-row h3 {
  font-size: 16px;
}

.pill-subtle {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16);
  color: var(--muted);
  background: rgba(7,7,10,0.96);
}

.card p {
  font-size: 13px;
  color: var(--muted);
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.chip {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(7,7,11,0.96);
  color: var(--muted);
}

.chip.accent {
  border-color: rgba(203,243,187,0.8);
  color: var(--accent-soft);
  background: rgba(20,24,19,0.98);
}

/* PRODUCT GRID (collections) */

.product-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-card {
  border-radius: 22px;
  overflow: hidden;
  background: rgba(11,11,17,0.98);
  border: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 36px rgba(0,0,0,0.75);
}

.product-media {
  position: relative;
  overflow: hidden;
}

.product-media img {
  height: 260px;
  width: 100%;
  object-fit: cover;
  transition: transform 0.6s ease-out;
}

.product-tag {
  position: absolute;
  left: 14px;
  top: 14px;
  padding: 4px 10px;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 999px;
  background: rgba(5,5,7,0.9);
  border: 1px solid rgba(255,255,255,0.18);
}

.product-body {
  padding: 14px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 13px;
}

.product-meta span.price {
  font-weight: 600;
}

.product-body p {
  font-size: 12px;
  color: var(--muted);
}

.product-footer {
  margin-top: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: var(--muted);
}

.product-footer button {
  border-radius: 999px;
  padding: 6px 11px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(8,8,12,0.95);
  color: var(--accent-soft);
  font-size: 11px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.product-footer button:hover {
  border-color: var(--accent);
}

/* ABOUT PAGE */

.layout-two {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 32px;
}

.story-copy p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 12px;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.stat-card {
  border-radius: 18px;
  padding: 14px;
  border: 1px solid var(--border-subtle);
  background: rgba(11,11,16,0.96);
  font-size: 12px;
  color: var(--muted);
}

.stat-card strong {
  display: block;
  font-size: 20px;
  margin-bottom: 4px;
  color: var(--accent-soft);
}

.about-photo {
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 14px 40px rgba(0,0,0,0.8);
}

.about-photo img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

/* NEWSLETTER BLOCK */

.newsletter {
  margin-top: 40px;
}

.news-card {
  border-radius: 22px;
  padding: 18px 18px 20px;
  background:
    radial-gradient(circle at 100% 0, rgba(203,243,187,0.18), transparent 60%),
    rgba(11,11,16,0.96);
  border: 1px solid var(--border-subtle);
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 20px;
}

.news-card h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.news-card p {
  font-size: 14px;
  color: var(--muted);
}

.news-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.news-form input {
  flex: 1 1 180px;
  padding: 10px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(7,7,11,0.98);
  color: var(--text);
  font-size: 13px;
}

.news-form input::placeholder {
  color: #6b6c75;
}

/* FOOTER */

footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0 30px;
  margin-top: 30px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 12px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-links a:hover {
  color: var(--accent-soft);
}

/* ---------- ANIMATIONS ---------- */

[data-animate] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

[data-animate="fade-right"] {
  transform: translateX(-22px);
}
[data-animate="fade-left"] {
  transform: translateX(22px);
}

.in-view {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

.product-card:hover .product-media img,
.hero-card:hover .hero-photo img {
  transform: scale(1.1);
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 960px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-visual {
    order: -1;
  }
  .layout-two {
    grid-template-columns: minmax(0, 1fr);
  }
  .news-card {
    grid-template-columns: minmax(0, 1fr);
  }
  .product-grid,
  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
  .nav-toggle {
    display: inline-flex;
  }
  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .product-grid,
  .grid-3 {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-card {
    grid-template-rows: auto auto;
  }
}
