:root {
  --ink: #f6f0e8;
  --muted: #c9beb2;
  --line: rgba(246, 240, 232, 0.16);
  --paper: #efe7dc;
  --night: #0b0f12;
  --night-soft: #141819;
  --gold: #d8a44e;
  --water: #77bbd6;
  --fire: #df7148;
  --earth: #6f9167;
  --air: #d9e3e2;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 18%, rgba(119, 187, 214, 0.15), transparent 26rem),
    radial-gradient(circle at 82% 12%, rgba(223, 113, 72, 0.13), transparent 24rem),
    linear-gradient(180deg, #080c0f 0%, #111210 48%, #090b0b 100%);
  font-family: "Noto Sans Armenian", system-ui, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, #000, transparent 82%);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem clamp(1rem, 4vw, 3.5rem);
  border-bottom: 1px solid var(--line);
  background: rgba(8, 12, 15, 0.76);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 2.3rem;
  height: 2.3rem;
  place-items: center;
  color: #101110;
  border-radius: 50%;
  background: conic-gradient(from 20deg, var(--water), var(--air), var(--fire), var(--earth), var(--water));
}

nav {
  display: flex;
  gap: clamp(0.7rem, 2vw, 1.5rem);
  color: var(--muted);
  font-size: 0.9rem;
}

nav a:hover {
  color: var(--ink);
}

.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: calc(92svh - 73px);
  overflow: hidden;
  padding: clamp(7rem, 10vw, 10rem) clamp(1rem, 5vw, 5rem) clamp(2.5rem, 6vw, 5.5rem);
  isolation: isolate;
}

.hero-video,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-video {
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(8, 12, 15, 0.88) 0%, rgba(8, 12, 15, 0.58) 44%, rgba(8, 12, 15, 0.18) 100%),
    linear-gradient(180deg, rgba(8, 12, 15, 0.42) 0%, rgba(8, 12, 15, 0.12) 42%, rgba(8, 12, 15, 0.88) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 30%;
  background: linear-gradient(180deg, transparent, #080c0f);
}

.hero-copy {
  position: relative;
  max-width: 43rem;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.95;
}

h1 {
  font-size: clamp(4rem, 10vw, 9.5rem);
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4.8rem);
}

.hero-text {
  max-width: 35rem;
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.8;
}

.element-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.element-line span {
  padding: 0.55rem 0.8rem;
  border: 1px solid rgba(246, 240, 232, 0.2);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(8, 12, 15, 0.38);
  backdrop-filter: blur(10px);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.08rem;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

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

.button.primary {
  color: #15100c;
  background: var(--paper);
}

.button.secondary {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.05);
}

.intro {
  padding: 3rem clamp(1rem, 5vw, 5rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(239, 231, 220, 0.05);
}

.intro p {
  max-width: 67rem;
  margin: 0 auto;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4.5vw, 4.8rem);
  line-height: 1.08;
  text-align: center;
}

.product-glimpse {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.9fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 5vw, 5rem);
  border-bottom: 1px solid var(--line);
}

.product-glimpse img {
  width: 100%;
  max-height: 42rem;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.35);
}

.product-glimpse p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.9;
}

.elements {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
}

.element-card {
  min-height: 31rem;
  padding: clamp(1.2rem, 2vw, 2rem);
  border-right: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.018));
}

.element-card:last-child {
  border-right: 0;
}

.element-art {
  height: 11rem;
  margin-bottom: 2.3rem;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  background-size: 170% 170%;
  filter: saturate(0.92);
}

.water .element-art {
  background:
    radial-gradient(circle at 20% 70%, rgba(255,255,255,0.8), transparent 16%),
    linear-gradient(135deg, #28577d, #c7e5ed 42%, #5aa6ca 67%, #f3f6ef);
}

.fire .element-art {
  background:
    radial-gradient(circle at 70% 30%, rgba(255, 230, 145, 0.72), transparent 18%),
    linear-gradient(135deg, #55251d, #df7148 40%, #ebb66f 68%, #2a1813);
}

.earth .element-art {
  background:
    radial-gradient(circle at 30% 35%, rgba(205, 180, 105, 0.42), transparent 18%),
    linear-gradient(135deg, #2c3626, #7d986b 40%, #3f5535 72%, #cab78a);
}

.air .element-art {
  background:
    radial-gradient(circle at 64% 30%, rgba(255,255,255,0.9), transparent 16%),
    linear-gradient(135deg, #eef1ec, #b7d8df 40%, #eff1ec 68%, #7e9ead);
}

.element-card span {
  color: var(--muted);
  font-weight: 700;
}

.element-card h2 {
  margin-top: 0.5rem;
  font-size: clamp(2.4rem, 5.6vw, 5.4rem);
}

.element-card p {
  margin: 1.2rem 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 5vw, 5rem);
}

.story p:last-child {
  align-self: end;
  max-width: 42rem;
  margin: 0;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.9;
}

.order {
  padding: 0 clamp(1rem, 5vw, 5rem) clamp(4rem, 7vw, 6rem);
}

.order-panel {
  max-width: 70rem;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(119,187,214,0.14), transparent 32%),
    linear-gradient(315deg, rgba(223,113,72,0.15), transparent 32%),
    rgba(255, 255, 255, 0.045);
  text-align: center;
}

.order-panel p:not(.eyebrow) {
  max-width: 43rem;
  margin: 1.2rem auto 1.7rem;
  color: var(--muted);
  line-height: 1.8;
}

@media (max-width: 980px) {
  .product-glimpse,
  .story {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

  .element-card:nth-child(2n) {
    border-right: 0;
  }
}

@media (max-width: 640px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    justify-content: space-between;
  }

  h1 {
    font-size: 4rem;
  }

  .hero {
    min-height: 84svh;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(8, 12, 15, 0.84) 0%, rgba(8, 12, 15, 0.52) 100%),
      linear-gradient(180deg, rgba(8, 12, 15, 0.24) 0%, rgba(8, 12, 15, 0.86) 100%);
  }

  .elements {
    grid-template-columns: 1fr;
  }

  .element-card {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .button {
    width: 100%;
  }
}
