/* ==========================================================================
   Weriq.space — Arctic Bloom
   Pure CSS3 · Editorial gallery atmosphere
   ========================================================================== */

/* ---------- Design Tokens ---------- */
:root {
  --frost: #F7F9F6;
  --ice-mist: #E8F0F1;
  --arctic: #315C72;
  --peri: #7187C9;
  --lavender: #B8A1E8;
  --sun: #E6B94F;
  --sage: #8BBFA8;
  --ink: #17252B;
  --soft: #68767B;
  --border: rgba(49, 92, 114, 0.13);

  --font-display: "Gloock", Georgia, serif;
  --font-secondary: "Bodoni Moda", "Times New Roman", serif;
  --font-ui: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Nunito Sans", "Segoe UI", sans-serif;

  --ease-gallery: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-nav: 0 8px 32px rgba(23, 37, 43, 0.06), 0 2px 8px rgba(49, 92, 114, 0.04);
  --shadow-soft: 0 20px 60px rgba(49, 92, 114, 0.08);

  --nav-h: 4.5rem;
  --space: clamp(1.25rem, 4vw, 3rem);
  --max: 78rem;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--frost);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input { font: inherit; }

::selection {
  background: var(--lavender);
  color: var(--ink);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Grain Overlay ---------- */
.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px;
}

/* ---------- Shared Section Intro ---------- */
.section-intro {
  margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
}

.section-intro--center {
  text-align: center;
}

.section-intro--ideas {
  max-width: 28rem;
}

.section-label {
  font-family: var(--font-ui);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--peri);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.12;
  color: var(--ink);
  letter-spacing: -0.01em;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 1rem 1.75rem;
  border-radius: 0.5rem;
  border: 1px solid transparent;
  transition: background 0.45s var(--ease-gallery),
              color 0.45s var(--ease-gallery),
              border-color 0.45s var(--ease-gallery),
              transform 0.45s var(--ease-gallery),
              box-shadow 0.45s var(--ease-gallery);
}

.btn-primary {
  background: var(--arctic);
  color: var(--frost);
  border-color: var(--arctic);
}

.btn-primary:hover {
  background: var(--peri);
  border-color: var(--peri);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(49, 92, 114, 0.18);
}

.btn-ghost {
  background: transparent;
  color: var(--arctic);
  border-color: var(--border);
}

.btn-ghost:hover {
  border-color: var(--arctic);
  background: rgba(49, 92, 114, 0.04);
}

.btn-sun {
  background: var(--ink);
  border-color: var(--ink);
}

.btn-sun:hover {
  background: var(--arctic);
  border-color: var(--arctic);
}

/* ==========================================================================
   1. FLOATING NAVIGATION
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem var(--space);
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.nav-float {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  max-width: var(--max);
  width: 100%;
  padding: 0.65rem 0.75rem 0.65rem 1.5rem;
  background: rgba(247, 249, 246, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(49, 92, 114, 0.18);
  border-radius: 0.875rem;
  box-shadow: var(--shadow-nav);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--arctic);
  letter-spacing: 0.02em;
  flex-shrink: 0;
  position: relative;
}

.nav-logo::after {
  content: "";
  position: absolute;
  bottom: -0.2rem;
  left: 0;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--sun);
}

.nav-menu {
  display: none;
  flex: 1;
  justify-content: center;
  gap: clamp(1rem, 2.5vw, 2rem);
}

.nav-menu a {
  font-family: var(--font-ui);
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--soft);
  position: relative;
  padding: 0.35rem 0;
  transition: color 0.35s var(--ease-gallery);
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--arctic);
  transition: width 0.4s var(--ease-gallery);
}

.nav-menu a:hover {
  color: var(--arctic);
}

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

.nav-cta {
  margin-left: auto;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--frost);
  background: var(--arctic);
  padding: 0.7rem 1.15rem;
  border-radius: 0.5rem;
  flex-shrink: 0;
  transition: background 0.4s var(--ease-gallery), transform 0.4s var(--ease-gallery);
}

.nav-cta:hover {
  background: var(--peri);
  transform: translateY(-1px);
}

@media (min-width: 860px) {
  .nav-menu { display: flex; }
}

/* ==========================================================================
   2. HERO — Frosted Entrance
   ========================================================================== */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 2rem;
  padding: calc(var(--nav-h) + 3rem) var(--space) 4rem;
  position: relative;
  background:
    radial-gradient(ellipse 60% 50% at 85% 40%, rgba(184, 161, 232, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(139, 191, 168, 0.1) 0%, transparent 60%),
    linear-gradient(165deg, var(--frost) 0%, var(--ice-mist) 100%);
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 34rem;
  animation: rise-in 1.1s var(--ease-gallery) both;
}

.hero-label {
  font-family: var(--font-ui);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  color: var(--peri);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.75rem, 7.5vw, 5.25rem);
  line-height: 1.05;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.hero-support {
  font-family: var(--font-secondary);
  font-style: italic;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 400;
  color: var(--soft);
  line-height: 1.65;
  max-width: 28rem;
  margin-bottom: 2.25rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
}

/* Hero Artwork */
.hero-art {
  position: relative;
  height: min(52vw, 28rem);
  width: 100%;
  max-width: 32rem;
  margin: 0 auto;
  animation: float-gentle 12s ease-in-out infinite;
}

.art-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--border);
}

.art-circle--lg {
  width: 85%;
  aspect-ratio: 1;
  top: 5%;
  right: 0;
  background: rgba(232, 240, 241, 0.55);
  box-shadow: var(--shadow-soft);
}

.art-circle--md {
  width: 55%;
  aspect-ratio: 1;
  top: 22%;
  right: 18%;
  background: rgba(113, 135, 201, 0.12);
  animation: pulse-soft 8s ease-in-out infinite;
}

.art-circle--sm {
  width: 28%;
  aspect-ratio: 1;
  top: 38%;
  right: 35%;
  background: rgba(184, 161, 232, 0.2);
}

.art-peri {
  position: absolute;
  background: var(--peri);
  opacity: 0.35;
}

.art-peri--1 {
  width: 3.5rem;
  height: 3.5rem;
  top: 8%;
  left: 12%;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  animation: float-gentle 9s ease-in-out infinite reverse;
}

.art-peri--2 {
  width: 1.75rem;
  height: 5rem;
  bottom: 18%;
  left: 5%;
  border-radius: 2rem;
  opacity: 0.25;
}

.art-flower {
  position: absolute;
  width: 9rem;
  height: 9rem;
  top: 28%;
  right: 22%;
  z-index: 2;
}

.petal {
  position: absolute;
  width: 2.8rem;
  height: 4.2rem;
  background: linear-gradient(160deg, rgba(184, 161, 232, 0.55), rgba(113, 135, 201, 0.35));
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  left: 50%;
  top: 50%;
  transform-origin: center bottom;
  margin-left: -1.4rem;
  margin-top: -4rem;
}

.petal--1 { transform: rotate(0deg) translateY(-0.4rem); }
.petal--2 { transform: rotate(72deg) translateY(-0.4rem); }
.petal--3 { transform: rotate(144deg) translateY(-0.4rem); }
.petal--4 { transform: rotate(216deg) translateY(-0.4rem); }
.petal--5 { transform: rotate(288deg) translateY(-0.4rem); }

.flower-center {
  position: absolute;
  width: 1.6rem;
  height: 1.6rem;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--sun);
  box-shadow: 0 0 0 4px rgba(230, 185, 79, 0.25);
}

.art-sun {
  position: absolute;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--sun);
  top: 12%;
  right: 8%;
  box-shadow: 0 0 40px rgba(230, 185, 79, 0.35);
  animation: pulse-soft 6s ease-in-out infinite;
}

.art-line {
  position: absolute;
  background: rgba(49, 92, 114, 0.2);
}

.art-line--h {
  height: 1px;
  width: 55%;
  bottom: 22%;
  left: 10%;
}

.art-line--v {
  width: 1px;
  height: 40%;
  top: 15%;
  left: 28%;
}

.art-line--d {
  height: 1px;
  width: 35%;
  top: 55%;
  right: 5%;
  transform: rotate(-28deg);
  transform-origin: right center;
}

@media (min-width: 900px) {
  .hero {
    grid-template-columns: 1fr 1fr;
    padding-left: max(var(--space), calc((100vw - var(--max)) / 2 + var(--space)));
    padding-right: 0;
  }

  .hero-art {
    height: min(70vh, 36rem);
    max-width: none;
    margin: 0;
    justify-self: end;
    width: 100%;
  }
}

/* ==========================================================================
   3. WERIQ STATEMENT
   ========================================================================== */
.statement {
  position: relative;
  padding: clamp(5rem, 14vw, 11rem) var(--space);
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
  overflow: hidden;
}

.statement-label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--font-ui);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sage);
  padding-top: 0.5rem;
}

.statement-mark {
  position: absolute;
  top: clamp(2rem, 6vw, 4rem);
  left: clamp(3rem, 12vw, 8rem);
  font-family: var(--font-secondary);
  font-size: clamp(8rem, 22vw, 16rem);
  line-height: 0.7;
  color: rgba(184, 161, 232, 0.22);
  pointer-events: none;
  user-select: none;
}

.statement-body {
  position: relative;
  z-index: 1;
  max-width: 42rem;
  padding-top: 1rem;
}

.statement-quote {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 5.5vw, 3.85rem);
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 2rem;
}

.statement-divider {
  width: 4rem;
  height: 1px;
  background: var(--arctic);
  margin-bottom: 2rem;
  transition: width 0.8s var(--ease-gallery);
}

.statement:hover .statement-divider {
  width: 8rem;
}

.statement-text {
  font-size: 1.0625rem;
  color: var(--soft);
  max-width: 34rem;
  line-height: 1.8;
}

.statement-bloom {
  position: absolute;
  width: clamp(10rem, 22vw, 18rem);
  height: clamp(10rem, 22vw, 18rem);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 161, 232, 0.28) 0%, transparent 70%);
  right: -2%;
  bottom: 8%;
  animation: pulse-soft 10s ease-in-out infinite;
}

@media (max-width: 600px) {
  .statement {
    grid-template-columns: 1fr;
  }

  .statement-label {
    writing-mode: horizontal-tb;
    transform: none;
  }
}

/* ==========================================================================
   4. GALLERY OF IDEAS
   ========================================================================== */
.ideas {
  padding: clamp(4rem, 10vw, 8rem) 0;
  background: var(--ice-mist);
}

.ideas .section-intro {
  padding: 0 var(--space);
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
}

.idea-rows {
  max-width: var(--max);
  margin: 0 auto;
  border-top: 1px solid var(--border);
}

.idea-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  padding: clamp(1.75rem, 4vw, 2.75rem) var(--space);
  border-bottom: 1px solid var(--border);
  cursor: default;
  position: relative;
  transition: background 0.55s var(--ease-gallery),
              color 0.55s var(--ease-gallery);
}

.idea-row::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--sun);
  transition: width 0.6s var(--ease-gallery);
}

.idea-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1;
  color: var(--peri);
  letter-spacing: -0.02em;
  min-width: 3.5rem;
  transition: color 0.55s var(--ease-gallery);
}

.idea-title {
  font-family: var(--font-secondary);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 500;
  margin-bottom: 0.35rem;
  transition: color 0.55s var(--ease-gallery);
}

.idea-desc {
  font-size: 0.9375rem;
  color: var(--soft);
  max-width: 28rem;
  transition: color 0.55s var(--ease-gallery);
}

.idea-arrow {
  font-size: 1.5rem;
  color: var(--arctic);
  transition: transform 0.5s var(--ease-gallery), color 0.55s var(--ease-gallery);
}

.idea-row:hover {
  background: var(--arctic);
}

.idea-row:hover .idea-num,
.idea-row:hover .idea-title,
.idea-row:hover .idea-desc,
.idea-row:hover .idea-arrow {
  color: var(--frost);
}

.idea-row:hover .idea-num {
  color: var(--lavender);
}

.idea-row:hover .idea-arrow {
  transform: translateX(0.6rem);
  color: var(--sun);
}

.idea-row:hover::before {
  width: 100%;
}

@media (max-width: 560px) {
  .idea-row {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
  }

  .idea-arrow {
    grid-column: 2;
    justify-self: start;
  }
}

/* ==========================================================================
   5. BLOOMING GRID
   ========================================================================== */
.bloom {
  padding: clamp(4rem, 10vw, 8rem) var(--space);
  max-width: var(--max);
  margin: 0 auto;
}

.bloom-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: end;
}

.bloom-cell {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.bloom-visual {
  position: relative;
  overflow: hidden;
  transition: transform 0.7s var(--ease-gallery);
}

.bloom-fill {
  width: 100%;
  height: 100%;
  transition: transform 0.9s var(--ease-gallery), filter 0.7s var(--ease-gallery);
}

.bloom-fill--peri {
  background: linear-gradient(145deg, #8fa3d4 0%, var(--peri) 50%, #5a6fad 100%);
}

.bloom-fill--sage {
  background: linear-gradient(160deg, #a8d0bd 0%, var(--sage) 60%, #6a9e88 100%);
}

.bloom-fill--lavender {
  background: linear-gradient(180deg, #cbb8f0 0%, var(--lavender) 55%, #9b84c9 100%);
}

.bloom-fill--arctic {
  background: linear-gradient(120deg, #4a7a90 0%, var(--arctic) 50%, #244859 100%);
}

.bloom-fill--sun {
  background: linear-gradient(135deg, #f0d078 0%, var(--sun) 50%, #c99a35 100%);
}

.bloom-fill--ice {
  background: linear-gradient(160deg, #f0f5f4 0%, var(--ice-mist) 40%, #c5d5d8 100%);
  border: 1px solid var(--border);
}

.bloom-caption {
  transition: transform 0.55s var(--ease-gallery);
}

.bloom-caption h3 {
  font-family: var(--font-secondary);
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
  color: var(--ink);
}

.bloom-caption p {
  font-size: 0.875rem;
  color: var(--soft);
  line-height: 1.55;
}

.bloom-cell:hover .bloom-visual {
  transform: scale(1.03);
}

.bloom-cell:hover .bloom-fill {
  transform: scale(1.08);
  filter: saturate(1.15);
}

.bloom-cell:hover .bloom-caption {
  transform: translateY(-0.5rem);
}

.bloom-cell:hover .bloom-caption h3 {
  color: var(--arctic);
}

/* Irregular shapes */
.bloom-cell--circle .bloom-visual {
  aspect-ratio: 1;
  border-radius: 50%;
  width: min(100%, 16rem);
  margin: 0 auto;
}

.bloom-cell--oval .bloom-visual {
  aspect-ratio: 3 / 4;
  border-radius: 50% / 40%;
  width: min(100%, 14rem);
}

.bloom-cell--tall .bloom-visual {
  aspect-ratio: 2 / 3.2;
  border-radius: 1.5rem 1.5rem 40% 40%;
  width: 100%;
}

.bloom-cell--wide .bloom-visual {
  aspect-ratio: 16 / 9;
  border-radius: 1.25rem;
  width: 100%;
}

.bloom-cell--organic .bloom-visual {
  aspect-ratio: 1;
  border-radius: 60% 40% 55% 45% / 45% 55% 45% 55%;
  width: min(100%, 15rem);
  margin-left: auto;
}

.bloom-cell--angular .bloom-visual {
  aspect-ratio: 5 / 4;
  clip-path: polygon(8% 0%, 100% 0%, 92% 100%, 0% 100%);
  width: 100%;
}

@media (min-width: 640px) {
  .bloom-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .bloom-cell--wide { grid-column: span 2; }
}

@media (min-width: 980px) {
  .bloom-grid {
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem 1.75rem;
  }

  .bloom-cell--circle { grid-column: 1 / 5; align-self: center; }
  .bloom-cell--oval { grid-column: 5 / 9; padding-top: 3rem; }
  .bloom-cell--tall { grid-column: 9 / 13; }
  .bloom-cell--wide { grid-column: 1 / 8; }
  .bloom-cell--organic { grid-column: 8 / 11; padding-top: 2rem; }
  .bloom-cell--angular { grid-column: 4 / 10; margin-top: -1rem; }
}

/* ==========================================================================
   6. PROCESS RIBBON
   ========================================================================== */
.process {
  padding: clamp(4rem, 10vw, 7rem) var(--space);
  background:
    linear-gradient(180deg, var(--frost) 0%, var(--ice-mist) 100%);
  overflow: hidden;
}

.ribbon {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2.5rem;
  padding: 1rem 0 2rem 1.5rem;
}

.ribbon-path {
  display: none;
  color: var(--arctic);
  opacity: 0.35;
}

.ribbon-stage {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  position: relative;
  z-index: 2;
}

.ribbon-stage::before {
  content: "";
  position: absolute;
  left: 0.9rem;
  top: 2.1rem;
  width: 1px;
  height: calc(2.5rem + 1.1rem);
  background: linear-gradient(var(--arctic), var(--lavender));
  opacity: 0.35;
}

.ribbon-stage:last-child::before {
  display: none;
}

.ribbon-node {
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 50%;
  background: var(--lavender);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(184, 161, 232, 0.2);
  transition: transform 0.4s var(--ease-gallery);
}

.ribbon-node--active {
  background: var(--sun);
  box-shadow: 0 0 0 5px rgba(230, 185, 79, 0.28);
  animation: pulse-soft 4s ease-in-out infinite;
}

.ribbon-node--sage {
  background: var(--sage);
  box-shadow: 0 0 0 4px rgba(139, 191, 168, 0.25);
}

.ribbon-dot {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--frost);
}

.ribbon-name {
  font-family: var(--font-ui);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--arctic);
}

.flow-dot {
  display: none;
}

@media (min-width: 820px) {
  .ribbon {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding: 3.5rem 1rem 1rem;
    gap: 0;
  }

  .ribbon-path {
    display: block;
    position: absolute;
    top: 1.5rem;
    left: 0;
    width: 100%;
    height: 7.5rem;
    z-index: 0;
  }

  .ribbon-stage {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    flex: 1;
  }

  .ribbon-stage::before {
    display: none;
  }

  .ribbon-stage:nth-of-type(odd) {
    padding-top: 0;
  }

  .ribbon-stage:nth-of-type(even) {
    padding-top: 3.25rem;
  }

  .flow-dot {
    display: block;
    position: absolute;
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background: var(--sun);
    top: 4.2rem;
    z-index: 1;
    opacity: 0.7;
  }

  .flow-dot--1 { animation: flow-x 9s linear infinite; }
  .flow-dot--2 { animation: flow-x 9s linear infinite 3s; background: var(--lavender); }
  .flow-dot--3 { animation: flow-x 9s linear infinite 6s; background: var(--sage); }
}

/* ==========================================================================
   7. ARCTIC DATA WALL
   ========================================================================== */
.data-wall {
  position: relative;
  background: var(--arctic);
  padding: clamp(5rem, 12vw, 9rem) var(--space);
  overflow: hidden;
  color: var(--frost);
}

.data-frame {
  position: absolute;
  inset: 1.5rem;
  border: 1px solid rgba(247, 249, 246, 0.12);
  pointer-events: none;
}

.data-grid {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem) clamp(1.5rem, 4vw, 3rem);
}

.data-stat {
  position: relative;
  padding: 0.5rem 0;
}

.data-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 8vw, 6rem);
  line-height: 1;
  color: var(--lavender);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.data-label {
  font-family: var(--font-ui);
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(247, 249, 246, 0.72);
}

.data-accent {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  border: 1px solid var(--sun);
  border-radius: 50%;
  margin-top: 1.25rem;
  opacity: 0.7;
}

.data-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.data-lines span {
  position: absolute;
  background: rgba(247, 249, 246, 0.06);
}

.data-lines span:nth-child(1) {
  width: 1px;
  height: 60%;
  left: 33%;
  top: 20%;
}

.data-lines span:nth-child(2) {
  height: 1px;
  width: 40%;
  top: 50%;
  right: 10%;
}

.data-lines span:nth-child(3) {
  width: 1px;
  height: 35%;
  right: 22%;
  bottom: 10%;
}

@media (min-width: 900px) {
  .data-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ==========================================================================
   8. HUMAN PERSPECTIVES
   ========================================================================== */
.perspectives {
  padding: clamp(4rem, 10vw, 8rem) var(--space);
  max-width: var(--max);
  margin: 0 auto;
}

.perspectives-list {
  display: flex;
  flex-direction: column;
  gap: clamp(3.5rem, 8vw, 6rem);
}

.perspective {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.perspective-portrait {
  width: min(100%, 16rem);
}

.portrait-shape {
  aspect-ratio: 4 / 5;
  width: 100%;
}

.portrait-shape--a {
  border-radius: 50% 50% 40% 60% / 45% 55% 50% 50%;
  background:
    linear-gradient(160deg, rgba(184, 161, 232, 0.4), transparent 60%),
    linear-gradient(20deg, var(--ice-mist), var(--peri));
}

.portrait-shape--b {
  border-radius: 1.5rem 40% 1.5rem 40%;
  background:
    linear-gradient(200deg, rgba(139, 191, 168, 0.45), transparent 55%),
    linear-gradient(40deg, var(--arctic), var(--lavender));
}

.portrait-shape--c {
  border-radius: 60% 40% 50% 50% / 40% 50% 50% 60%;
  background:
    linear-gradient(120deg, rgba(230, 185, 79, 0.35), transparent 50%),
    linear-gradient(300deg, var(--peri), var(--ice-mist));
}

.perspective-quote p {
  font-family: var(--font-secondary);
  font-style: italic;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 1.5rem;
  max-width: 32rem;
}

.perspective-name {
  display: block;
  font-family: var(--font-ui);
  font-style: normal;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--arctic);
  margin-bottom: 0.25rem;
}

.perspective-meta {
  font-size: 0.8125rem;
  color: var(--soft);
}

.perspective--offset {
  padding-left: 0;
}

@media (min-width: 768px) {
  .perspective {
    grid-template-columns: minmax(10rem, 14rem) 1fr;
  }

  .perspective--right {
    grid-template-columns: 1fr minmax(10rem, 14rem);
    text-align: right;
  }

  .perspective--right .perspective-quote {
    justify-self: end;
  }

  .perspective--right .perspective-quote p {
    margin-left: auto;
  }

  .perspective--right .perspective-portrait {
    justify-self: end;
  }

  .perspective--offset {
    padding-left: 8%;
  }
}

/* ==========================================================================
   9. WERIQ EDITIONS
   ========================================================================== */
.editions {
  padding: clamp(4rem, 10vw, 8rem) var(--space);
  background: var(--ice-mist);
}

.editions-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.edition {
  background: var(--frost);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: clamp(2rem, 4vw, 2.75rem);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.5s var(--ease-gallery), box-shadow 0.5s var(--ease-gallery);
}

.edition:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.edition-name {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 0.35rem;
  color: var(--ink);
}

.edition-tag {
  font-family: var(--font-secondary);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--soft);
  margin-bottom: 1.75rem;
}

.edition-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
  flex: 1;
}

.edition-features li {
  font-family: var(--font-ui);
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  color: var(--soft);
  padding-left: 1.25rem;
  position: relative;
}

.edition-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--sage);
}

.edition-link {
  font-family: var(--font-ui);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--arctic);
  transition: color 0.35s var(--ease-gallery), letter-spacing 0.35s var(--ease-gallery);
}

.edition-link:hover {
  color: var(--peri);
  letter-spacing: 0.12em;
}

.edition--featured {
  background: var(--arctic);
  border: 1.5px solid var(--lavender);
  color: var(--frost);
}

.edition--featured .edition-name,
.edition--featured .edition-link {
  color: var(--frost);
}

.edition--featured .edition-tag {
  color: rgba(247, 249, 246, 0.7);
}

.edition--featured .edition-features li {
  color: rgba(247, 249, 246, 0.82);
}

.edition--featured .edition-features li::before {
  background: var(--sun);
}

.edition--featured .edition-link:hover {
  color: var(--sun);
}

.edition-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-family: var(--font-ui);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--sun);
  padding: 0.35rem 0.7rem;
  border-radius: 0.35rem;
}

@media (min-width: 800px) {
  .editions-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }

  .edition--featured {
    transform: scale(1.04);
    z-index: 1;
  }

  .edition--featured:hover {
    transform: scale(1.04) translateY(-4px);
  }
}

/* ==========================================================================
   10. WINTER SUN CTA
   ========================================================================== */
.winter-sun {
  position: relative;
  padding: clamp(6rem, 14vw, 11rem) var(--space);
  background: var(--frost);
  overflow: hidden;
  text-align: center;
}

.sun-art {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.sun-orb {
  position: absolute;
  width: min(70vw, 28rem);
  height: min(70vw, 28rem);
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, #f5d97a 0%, var(--sun) 45%, rgba(230, 185, 79, 0.2) 70%, transparent 75%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  opacity: 0.55;
  animation: pulse-soft 8s ease-in-out infinite;
}

.sun-shadow--lavender {
  position: absolute;
  width: min(50vw, 20rem);
  height: min(50vw, 20rem);
  border-radius: 50%;
  background: rgba(184, 161, 232, 0.2);
  filter: blur(40px);
  top: 55%;
  left: 42%;
  transform: translate(-50%, -50%);
}

.sun-arch {
  position: absolute;
  border: 1px solid rgba(49, 92, 114, 0.15);
  border-radius: 50%;
}

.sun-arch--1 {
  width: min(80vw, 36rem);
  height: min(80vw, 36rem);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.sun-arch--2 {
  width: min(55vw, 24rem);
  height: min(55vw, 24rem);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-color: rgba(113, 135, 201, 0.2);
}

.sun-curve {
  position: absolute;
  width: 120%;
  height: 40%;
  bottom: -10%;
  left: -10%;
  background: radial-gradient(ellipse at center, rgba(139, 191, 168, 0.18) 0%, transparent 70%);
  border-radius: 50%;
}

.sun-content {
  position: relative;
  z-index: 1;
  max-width: 36rem;
  margin: 0 auto;
}

.sun-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.25rem, 5.5vw, 4rem);
  line-height: 1.12;
  color: var(--ink);
  margin-bottom: 1.25rem;
}

.sun-text {
  font-family: var(--font-secondary);
  font-style: italic;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--soft);
  margin-bottom: 2.25rem;
  line-height: 1.65;
}

/* ==========================================================================
   11. GALLERY FOOTER
   ========================================================================== */
.site-footer {
  background: var(--ice-mist);
  padding: clamp(3.5rem, 8vw, 5.5rem) var(--space) 2.5rem;
  border-top: 1px solid var(--border);
}

.footer-top {
  max-width: var(--max);
  margin: 0 auto 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  line-height: 1;
  color: var(--arctic);
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}

.footer-tagline {
  font-family: var(--font-secondary);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--soft);
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.footer-heading {
  font-family: var(--font-ui);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--peri);
  margin-bottom: 1.15rem;
}

.footer-col a {
  font-size: 0.9375rem;
  color: var(--ink);
  display: inline-block;
  margin-bottom: 0.65rem;
  position: relative;
  transition: color 0.35s var(--ease-gallery);
}

.footer-col a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--arctic);
  transition: width 0.35s var(--ease-gallery);
}

.footer-col a:hover {
  color: var(--arctic);
}

.footer-col a:hover::after {
  width: 100%;
}

.footer-divider {
  max-width: var(--max);
  margin: 0 auto 2rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--sun), transparent);
  opacity: 0.55;
}

.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  justify-content: space-between;
}

.newsletter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  flex: 1;
  min-width: min(100%, 16rem);
  max-width: 26rem;
}

.newsletter input {
  flex: 1;
  min-width: 10rem;
  padding: 0.85rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background: var(--frost);
  color: var(--ink);
  outline: none;
  transition: border-color 0.35s var(--ease-gallery);
}

.newsletter input::placeholder {
  color: var(--soft);
  opacity: 0.7;
}

.newsletter input:focus {
  border-color: var(--arctic);
}

.newsletter-btn {
  padding: 0.85rem 1.25rem;
  background: var(--arctic);
  color: var(--frost);
  border: none;
  border-radius: 0.5rem;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.35s var(--ease-gallery);
}

.newsletter-btn:hover {
  background: var(--peri);
}

.social {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--arctic);
  transition: background 0.35s var(--ease-gallery),
              color 0.35s var(--ease-gallery),
              border-color 0.35s var(--ease-gallery);
}

.social-link:hover {
  background: var(--arctic);
  border-color: var(--arctic);
  color: var(--frost);
}

.copyright {
  font-size: 0.8125rem;
  color: var(--soft);
  width: 100%;
  text-align: center;
}

@media (min-width: 720px) {
  .footer-top {
    grid-template-columns: 1.2fr 1fr;
    align-items: start;
  }

  .copyright {
    width: auto;
    text-align: right;
    margin-left: auto;
  }
}

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(1.75rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float-gentle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes pulse-soft {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.06); opacity: 0.85; }
}

@keyframes flow-x {
  0% {
    left: 4%;
    top: 3.8rem;
    opacity: 0;
  }
  10% { opacity: 0.8; }
  25% { top: 2.2rem; }
  50% { top: 5.2rem; }
  75% { top: 2.5rem; }
  90% { opacity: 0.8; }
  100% {
    left: 94%;
    top: 3.8rem;
    opacity: 0;
  }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus visibility for accessibility */
:focus-visible {
  outline: 2px solid var(--sun);
  outline-offset: 3px;
}

a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
  outline: none;
}
