@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Nunito+Sans:wght@400;500;600;700&display=swap');

:root {
  --ink: #eeeaf2;
  --muted: #b9b3c5;
  --forest: #101f1c;
  --forest-2: #142b27;
  --teal: #238f8b;
  --teal-light: #63c7bd;
  --violet: #8060a8;
  --violet-light: #b497d0;
  --plum: #4b3159;
  --night: #17152b;
  --night-2: #211a36;
  --gold: #c6a75b;
  --coral: #bd756d;
  --line: rgba(238,234,242,.15);
  --card: #1c302c;
  --shadow: 0 25px 70px rgba(0,0,0,.30);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--forest);
  font-family: "Nunito Sans", system-ui, sans-serif;
  line-height: 1.65;
}

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

/* =========================
   HEADER
========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;

  padding: 17px clamp(20px, 5vw, 72px);

  background: rgba(12,27,24,.92);
  backdrop-filter: blur(16px);

  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: .02em;
  color: #f2edf4;
}

.brand-sub {
  margin-top: 5px;
  color: #9fa9a5;
  font-size: .64rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: clamp(14px, 3vw, 34px);
  font-size: .88rem;
  font-weight: 700;
}

.nav a {
  position: relative;
  padding: 6px 0;
  color: #d9d4df;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--teal-light);
  transition: width .25s ease;
}

.nav a:hover::after {
  width: 100%;
}

/* =========================
   TYPOGRAFIA
========================= */

.eyebrow {
  margin: 0 0 13px;
  color: var(--teal-light);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .2em;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: .98;
  margin: 0;
}

h1 {
  max-width: 780px;
  font-size: clamp(4rem, 9vw, 8.5rem);
  font-weight: 600;
  letter-spacing: -.035em;
}

h2 {
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 600;
}

h3 {
  font-size: 2.1rem;
}

/* =========================
   HERO
========================= */

.hero {
  position: relative;
  min-height: 82vh;

  display: flex;
  align-items: center;

  overflow: hidden;

  padding: clamp(90px, 12vw, 160px)
           clamp(24px, 9vw, 130px);

  background:
    radial-gradient(
      circle at 78% 28%,
      rgba(128,96,168,.28),
      transparent 18%
    ),
    radial-gradient(
      circle at 72% 72%,
      rgba(35,143,139,.30),
      transparent 25%
    ),
    radial-gradient(
      circle at 35% 85%,
      rgba(75,49,89,.35),
      transparent 30%
    ),
    linear-gradient(
      125deg,
      #0c1b19 0%,
      #112a26 42%,
      #19172d 100%
    );
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;

  opacity: .30;

  background-image:
    radial-gradient(circle, #c6a75b 0 1px, transparent 1.5px),
    radial-gradient(circle, #8060a8 0 1px, transparent 1.5px),
    radial-gradient(circle, #63c7bd 0 1px, transparent 1.5px);

  background-size:
    130px 120px,
    190px 170px,
    250px 210px;

  background-position:
    20px 30px,
    80px 90px,
    140px 20px;

  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.lead {
  max-width: 610px;
  margin: 30px 0;

  color: #c2bec9;

  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

/* Księżyc */

.moon {
  position: absolute;

  right: 11vw;
  top: 15%;

  width: min(31vw, 360px);
  aspect-ratio: 1;

  border-radius: 50%;

  background:
    radial-gradient(
      circle at 35% 30%,
      #b59bd1,
      #8060a8 52%,
      #543a70 100%
    );

  box-shadow:
    0 0 40px rgba(128,96,168,.22),
    0 0 0 22px rgba(128,96,168,.07),
    0 0 0 65px rgba(128,96,168,.035);
}

.moon::after {
  content: "";

  position: absolute;

  width: 92%;
  height: 92%;

  top: -5%;
  left: 20%;

  border-radius: 50%;

  background: #121d1d;
}

/* Gwiazdki */

.hero-symbols {
  position: absolute;

  right: 5vw;
  bottom: 8%;

  display: flex;
  gap: 25px;

  color: var(--gold);

  font-size: 1.8rem;
}

/* =========================
   PRZYCISKI
========================= */

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 48px;
  padding: 12px 23px;

  border-radius: 999px;

  font-weight: 800;
  font-size: .9rem;

  transition:
    transform .2s ease,
    box-shadow .2s ease,
    background .2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
}

.primary {
  color: #fff;
  background: var(--teal);
}

.primary:hover {
  background: #2da7a1;
}

.ghost {
  color: #eeeaf2;
  border: 1px solid rgba(238,234,242,.22);
  background: rgba(255,255,255,.04);
}

/* =========================
   SEKCJE
========================= */

.section {
  padding:
    clamp(75px, 10vw, 140px)
    clamp(24px, 9vw, 130px);
}

/* =========================
   TRZY WARTOŚCI
========================= */

.values {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;

  background: #0a1514;

  padding-top: 0;
  padding-bottom: 0;
}

.value-card {
  padding: 55px 42px;

  background: #142824;
}

.value-card:nth-child(2) {
  background: #172a27;
}

.value-card:nth-child(3) {
  background: #20192e;
}

.icon {
  display: block;

  margin-bottom: 20px;

  color: var(--gold);

  font-size: 2rem;
}

.value-card h2 {
  font-size: 2.4rem;
}

.value-card p {
  color: var(--muted);
}

/* =========================
   O MNIE
========================= */

.about {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 35px;

  max-width: 1100px;
  margin: auto;

  background: var(--forest);
}

.section-mark {
  color: var(--gold);

  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .12em;

  padding-top: 10px;
}

.about > div:last-child {
  max-width: 760px;
}

.about p {
  max-width: 680px;
  margin: 25px 0 0;

  color: var(--muted);
}

/* =========================
   CO TWORZĘ
========================= */

.creations {
  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(128,96,168,.17),
      transparent 30%
    ),
    #17152a;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  align-items: end;

  margin-bottom: 55px;
}

.section-intro {
  max-width: 380px;
  color: var(--muted);
}

.creation-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 18px;

  max-width: 1100px;
}

.creation-card {
  min-height: 310px;

  padding: 35px;

  display: flex;
  flex-direction: column;
  justify-content: end;

  border-radius: 24px;

  box-shadow: var(--shadow);

  overflow: hidden;

  position: relative;
}

.creation-card::before {
  content: "✦";

  position: absolute;

  right: 28px;
  top: 20px;

  font-size: 5rem;

  opacity: .18;
}

.card-number {
  position: absolute;

  top: 28px;
  left: 30px;

  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .15em;
}

.card-a {
  background:
    linear-gradient(
      145deg,
      #1b514b,
      #153532
    );
}

.card-b {
  background:
    linear-gradient(
      145deg,
      #493466,
      #2d203f
    );
}

.card-c {
  background:
    linear-gradient(
      145deg,
      #5a344d,
      #342032
    );
}

.card-d {
  background:
    linear-gradient(
      145deg,
      #214c59,
      #172f3b
    );
}

.creation-card h3 {
  max-width: 400px;
  margin-bottom: 10px;

  color: #f1edf2;
}

.creation-card p {
  max-width: 430px;
  margin: 0;

  color: #bcb7c3;
}

/* =========================
   SKLEP
========================= */

.shop-preview {
  background:
    radial-gradient(
      circle at 75% 40%,
      rgba(128,96,168,.25),
      transparent 25%
    ),
    #0c2826;

  color: #f2eef4;
}

.shop-inner {
  max-width: 1100px;
  margin: auto;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 70px;
}

.shop-inner .eyebrow {
  color: var(--teal-light);
}

.shop-inner p {
  color: #aaaeb0;
  max-width: 600px;
}

/* magiczny orbit */

.orbit {
  flex: 0 0 240px;

  aspect-ratio: 1;

  border: 1px solid rgba(198,167,91,.45);

  border-radius: 50%;

  display: grid;
  place-items: center;

  position: relative;

  box-shadow:
    0 0 45px rgba(198,167,91,.08),
    inset 0 0 40px rgba(128,96,168,.08);
}

.orbit::before,
.orbit::after {
  content: "";

  position: absolute;

  border: 1px solid rgba(128,96,168,.45);

  border-radius: 50%;
}

.orbit::before {
  inset: 18px;

  transform:
    rotate(25deg)
    scaleY(.4);
}

.orbit::after {
  inset: 42px;

  transform:
    rotate(-25deg)
    scaleY(.4);
}

.orbit span {
  font-family: "Cormorant Garamond", serif;

  font-size: 1.8rem;

  letter-spacing: .12em;

  color: var(--gold);
}

/* =========================
   KONTAKT
========================= */

.newsletter {
  display: flex;

  justify-content: space-between;
  align-items: center;

  gap: 40px;

  max-width: 1100px;
  margin: auto;

  background: #101f1c;
}

.newsletter > div {
  max-width: 720px;
}

.newsletter p {
  color: var(--muted);
}

/* =========================
   STOPKA
========================= */

.footer {
  padding:
    30px
    clamp(24px, 9vw, 130px);

  display: flex;

  justify-content: space-between;

  gap: 30px;

  border-top: 1px solid var(--line);

  background: #0b1716;

  color: #858c8a;

  font-size: .82rem;
}

.footer strong {
  color: #eeeaf2;
  margin-right: 15px;
}

/* =========================
   TELEFONY
========================= */

@media (max-width: 800px) {

  .site-header {
    align-items: flex-start;
  }

  .nav {
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .nav a:nth-child(3),
  .nav a:nth-child(4) {
    display: none;
  }

  .hero {
    min-height: 75vh;

    padding-top: 105px;
    padding-bottom: 90px;
  }

  .moon {
    width: 210px;
    right: -35px;
    top: 10%;

    opacity: .55;
  }

  .hero-symbols {
    display: none;
  }

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

  .value-card {
    padding: 42px 28px;
  }

  .about {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .section-heading {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .shop-inner,
  .newsletter {
    flex-direction: column;
    align-items: flex-start;
  }

  .orbit {
    align-self: center;
  }

  .footer {
    flex-direction: column;
  }
}

/* =========================
   MAŁE TELEFONY
========================= */

@media (max-width: 520px) {

  .site-header {
    padding: 14px 18px;
  }

  .brand-name {
    font-size: 1.65rem;
  }

  .brand-sub {
    display: none;
  }

  .nav {
    gap: 9px;
  }

  .nav a {
    font-size: .72rem;
  }

  h1 {
    font-size: 3.6rem;
  }

  h2 {
    font-size: 3rem;
  }

  .lead {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .creation-card {
    min-height: 280px;
    padding: 28px;
  }

  .orbit {
    width: 190px;
    flex-basis: 190px;
  }
}