/* ==========================================================================
   HEZRO.SITE — Luminous Garden
   Pure HTML5 + CSS3
   ========================================================================== */

:root {
  /* Palette */
  --pearl: #FFF9F3;
  --sage: #F3F7F0;
  --rose: #E66B73;
  --peri: #6B78D8;
  --gold: #E5B94F;
  --teal: #6DB7A4;
  --slate: #31384B;
  --soft-pink: #F3C8CE;
  --soft-blue: #CBD4F5;
  --ink: #202331;
  --muted: #737782;
  --white: #FFFFFF;

  /* Gradients */
  --grad-rose-bloom: linear-gradient(135deg, #F3C8CE 0%, #E66B73 48%, #E5B94F 100%);
  --grad-botanical: linear-gradient(135deg, #F3F7F0 0%, #6DB7A4 50%, #6B78D8 100%);
  --grad-dream: linear-gradient(135deg, #FFF9F3 0%, #CBD4F5 50%, #F3C8CE 100%);
  --grad-golden: linear-gradient(135deg, #E5B94F 0%, #E66B73 50%, #6B78D8 100%);
  --grad-footer: linear-gradient(90deg, #E66B73 0%, #E5B94F 50%, #6B78D8 100%);

  /* Type */
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  --font-ui: "Inter", "Segoe UI", sans-serif;
  --font-mono: "Space Mono", ui-monospace, monospace;

  /* Layout */
  --space-xs: clamp(0.5rem, 1vw, 0.75rem);
  --space-sm: clamp(1rem, 2vw, 1.5rem);
  --space-md: clamp(1.75rem, 4vw, 3rem);
  --space-lg: clamp(3rem, 7vw, 6rem);
  --space-xl: clamp(4.5rem, 10vw, 9rem);
  --pad-x: clamp(1.25rem, 5vw, 5rem);
  --max: 72rem;
  --radius-soft: 40% 60% 55% 45% / 45% 40% 60% 55%;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --focus: 0 0 0 3px var(--pearl), 0 0 0 5px var(--peri);
}

/* Reset */
*,
*::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-size: clamp(1rem, 0.95rem + 0.2vw, 1.125rem);
  line-height: 1.65;
  color: var(--ink);
  background: var(--pearl);
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

ul,
ol {
  list-style: none;
}

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

:focus-visible {
  outline: none;
  box-shadow: var(--focus);
  border-radius: 2px;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: var(--pad-x);
  z-index: 1000;
  padding: 0.75rem 1.25rem;
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 0.875rem;
}

.skip-link:focus {
  top: 1rem;
}

/* Shared */
.label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: var(--space-sm);
}

.label--light {
  color: rgba(255, 249, 243, 0.55);
}

.label--on-rose {
  color: rgba(32, 35, 49, 0.7);
}

.section-head {
  max-width: var(--max);
  margin: 0 auto var(--space-md);
  padding: 0 var(--pad-x);
}

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

.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-ui);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: transform 0.45s var(--ease), background 0.45s var(--ease), color 0.45s var(--ease), border-color 0.45s var(--ease);
}

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

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

.btn--primary:hover {
  background: var(--rose);
  border-color: var(--rose);
  color: var(--white);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(32, 35, 49, 0.22);
}

.btn--ghost:hover {
  border-color: var(--rose);
  color: var(--rose);
}

.btn--on-dark {
  background: var(--ink);
  color: var(--pearl);
  border-color: var(--ink);
}

.btn--on-dark:hover {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

.btn--large {
  min-height: 3.5rem;
  padding-inline: 2.25rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: var(--space-sm);
  font-family: var(--font-ui);
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  transition: color 0.35s var(--ease), gap 0.35s var(--ease);
}

.text-link:hover {
  color: var(--rose);
  gap: 0.85rem;
}

/* ==========================================================================
   1. LUMINOUS HERO
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  background: var(--pearl);
  overflow: hidden;
  isolation: isolate;
}

.hero__grain {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' 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");
}

.hero__nav {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(1.25rem, 3vw, 2rem) var(--pad-x);
}

.hero__brand {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--ink);
}

.hero__nav-meta {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.hero__stage {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  min-height: calc(100vh - 5.5rem);
  min-height: calc(100svh - 5.5rem);
  padding: 0 var(--pad-x) clamp(2rem, 5vw, 3.5rem);
  gap: clamp(1.5rem, 4vw, 3rem);
}

.hero__outline {
  position: absolute;
  left: 50%;
  top: 42%;
  transform: translate(-50%, -50%);
  z-index: 0;
  font-family: var(--font-display);
  font-size: clamp(8rem, 22vw, 18rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 1px rgba(32, 35, 49, 0.08);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.hero__copy {
  position: relative;
  z-index: 4;
  max-width: 34rem;
  padding-block: var(--space-md);
  animation: rise-in 1.1s var(--ease) both;
}

.hero__eyebrow {
  margin-bottom: var(--space-sm);
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(3.25rem, 8vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: var(--space-sm);
}

.hero__title em {
  font-style: italic;
  font-weight: 500;
  background: var(--grad-rose-bloom);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__lede {
  max-width: 28rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  margin-bottom: var(--space-md);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero__artwork {
  position: relative;
  z-index: 2;
  width: min(100%, 34rem);
  aspect-ratio: 1;
  justify-self: end;
  margin-inline: auto;
  animation: float-soft 9s ease-in-out infinite;
}

.blob {
  position: absolute;
  display: block;
  border-radius: var(--radius-soft);
  will-change: transform, border-radius;
}

.blob--rose {
  width: 58%;
  height: 58%;
  top: 18%;
  left: 22%;
  background: var(--rose);
  filter: blur(0.5px);
  box-shadow: 0 30px 80px rgba(230, 107, 115, 0.28);
  animation: morph 12s ease-in-out infinite, spin-slow 28s linear infinite;
}

.blob--peri {
  width: 34%;
  height: 34%;
  top: 8%;
  right: 10%;
  border-radius: 50%;
  background: var(--peri);
  opacity: 0.9;
  box-shadow: 0 20px 50px rgba(107, 120, 216, 0.28);
  animation: float-y 7s ease-in-out infinite;
}

.blob--teal {
  width: 42%;
  height: 28%;
  bottom: 16%;
  left: 8%;
  border-radius: 50%;
  background: var(--teal);
  opacity: 0.85;
  transform: rotate(-18deg);
  box-shadow: 0 18px 40px rgba(109, 183, 164, 0.25);
  animation: float-x 8s ease-in-out infinite;
}

.blob--gold-ring {
  width: 46%;
  height: 46%;
  top: 28%;
  left: 28%;
  border-radius: 50%;
  background: transparent;
  border: 14px solid rgba(229, 185, 79, 0.75);
  box-shadow: inset 0 0 0 1px rgba(229, 185, 79, 0.2);
  animation: spin-slow 36s linear infinite reverse;
}

.blob--pink {
  width: 48%;
  height: 48%;
  top: 36%;
  right: 4%;
  background: rgba(243, 200, 206, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  filter: blur(2px);
  animation: morph 14s ease-in-out infinite reverse;
}

.blob--line {
  width: 52%;
  height: 1px;
  top: 52%;
  left: 24%;
  border-radius: 0;
  background: var(--slate);
  opacity: 0.55;
  transform: rotate(28deg);
  box-shadow: 0 0 0 0 transparent;
}

.blob--mist {
  width: 70%;
  height: 70%;
  top: 15%;
  left: 15%;
  border-radius: 50%;
  background: var(--grad-dream);
  opacity: 0.28;
  filter: blur(28px);
  z-index: -1;
  animation: pulse-soft 10s ease-in-out infinite;
}

.hero__float-labels {
  position: absolute;
  inset: 12% 8% 18% 48%;
  z-index: 3;
  pointer-events: none;
}

.float-label {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.16em;
  color: var(--muted);
  opacity: 0.7;
  animation: drift 8s ease-in-out infinite;
}

.float-label--1 { top: 8%; right: 8%; animation-delay: 0s; }
.float-label--2 { top: 38%; left: 0; animation-delay: 1.2s; }
.float-label--3 { bottom: 28%; right: 18%; animation-delay: 2s; }
.float-label--4 { bottom: 8%; left: 18%; animation-delay: 0.6s; }

.hero__footer-note {
  position: absolute;
  left: var(--pad-x);
  bottom: clamp(1.25rem, 3vw, 2rem);
  z-index: 4;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.hero__scroll {
  position: absolute;
  right: var(--pad-x);
  bottom: clamp(1.25rem, 3vw, 2rem);
  z-index: 4;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  transition: color 0.3s var(--ease);
}

.hero__scroll:hover {
  color: var(--rose);
}

/* ==========================================================================
   2. INTRODUCTION
   ========================================================================== */

.intro {
  position: relative;
  background: var(--sage);
  padding: var(--space-xl) var(--pad-x);
  overflow: hidden;
}

.intro__orb {
  position: absolute;
  width: clamp(12rem, 28vw, 22rem);
  height: clamp(12rem, 28vw, 22rem);
  right: -8%;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.85;
  box-shadow: 0 40px 100px rgba(229, 185, 79, 0.25);
  animation: pulse-soft 9s ease-in-out infinite;
}

.intro__inner {
  position: relative;
  z-index: 1;
  max-width: 40rem;
}

.intro__quote {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.75rem, 6vw, 4.75rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
  color: var(--ink);
}

.intro__text {
  max-width: 32rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
}

/* ==========================================================================
   3. GARDEN INDEX
   ========================================================================== */

.garden {
  background: var(--pearl);
  padding: var(--space-xl) 0;
}

.garden__list {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  border-top: 1px solid rgba(32, 35, 49, 0.1);
}

.garden__row {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  padding: clamp(1.5rem, 3vw, 2.35rem) 0;
  border-bottom: 1px solid rgba(32, 35, 49, 0.1);
  transition: background 0.45s var(--ease), padding 0.45s var(--ease);
}

.garden__row:hover,
.garden__row:focus-visible {
  background: linear-gradient(90deg, rgba(243, 200, 206, 0.35), transparent 70%);
  padding-inline: 1rem;
}

.garden__num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 500;
  line-height: 1;
  color: rgba(32, 35, 49, 0.18);
  min-width: 3.5rem;
  transition: transform 0.45s var(--ease), color 0.45s var(--ease);
}

.garden__row:hover .garden__num,
.garden__row:focus-visible .garden__num {
  transform: scale(1.08);
  color: var(--rose);
}

.garden__title {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.garden__desc {
  display: block;
  color: var(--muted);
  font-size: 0.975rem;
}

.garden__line {
  width: clamp(3rem, 12vw, 8rem);
  height: 1px;
  background: rgba(32, 35, 49, 0.18);
  transition: background 0.45s var(--ease), width 0.45s var(--ease);
}

.garden__row:hover .garden__line {
  background: var(--rose);
  width: clamp(4rem, 14vw, 10rem);
}

.garden__arrow {
  font-size: 1.5rem;
  color: var(--ink);
  transition: transform 0.45s var(--ease), color 0.45s var(--ease);
}

.garden__row:hover .garden__arrow {
  transform: translateX(0.4rem);
  color: var(--rose);
}

/* ==========================================================================
   4. COLOR STORIES
   ========================================================================== */

.colors {
  background: var(--sage);
  padding: var(--space-xl) 0;
}

.colors__gallery {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(0.85rem, 2vw, 1.5rem);
}

.panel {
  position: relative;
  overflow: hidden;
  min-height: clamp(14rem, 28vw, 20rem);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  isolation: isolate;
}

.panel__art {
  position: absolute;
  inset: 0;
  z-index: 0;
  transition: transform 1.2s var(--ease);
}

.panel:hover .panel__art {
  transform: scale(1.06);
}

.panel__name {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
}

.panel--bloom {
  grid-column: span 5;
  background: var(--grad-rose-bloom);
}

.panel--mist {
  grid-column: span 7;
  background: var(--grad-dream);
  min-height: clamp(12rem, 24vw, 17rem);
  align-self: end;
}

.panel--sun {
  grid-column: span 4;
  background: linear-gradient(160deg, #FFF9F3 0%, #E5B94F 55%, #E66B73 100%);
  min-height: clamp(16rem, 30vw, 22rem);
}

.panel--petal {
  grid-column: span 4;
  background: linear-gradient(145deg, #F3C8CE 0%, #FFF9F3 45%, #CBD4F5 100%);
}

.panel--grove {
  grid-column: span 4;
  background: var(--grad-botanical);
}

.panel--dusk {
  grid-column: span 12;
  background: linear-gradient(120deg, #31384B 0%, #6B78D8 45%, #E66B73 100%);
  min-height: clamp(12rem, 22vw, 16rem);
}

.panel--dusk .panel__name {
  color: var(--pearl);
}

.shape {
  position: absolute;
  display: block;
  border-radius: var(--radius-soft);
}

.shape--a {
  width: 55%;
  height: 70%;
  right: -8%;
  top: -10%;
  background: rgba(255, 255, 255, 0.28);
  border-radius: 50%;
}

.shape--b {
  width: 35%;
  height: 35%;
  left: 12%;
  bottom: 18%;
  border: 10px solid rgba(255, 249, 243, 0.45);
  border-radius: 50%;
}

.shape--c {
  width: 70%;
  height: 80%;
  left: 20%;
  top: 10%;
  background: rgba(107, 120, 216, 0.18);
  filter: blur(8px);
  border-radius: 50%;
}

.shape--d {
  width: 40%;
  height: 2px;
  left: 15%;
  top: 45%;
  background: var(--slate);
  opacity: 0.35;
  transform: rotate(-20deg);
  border-radius: 0;
}

.shape--e {
  width: 60%;
  height: 60%;
  right: 5%;
  top: 10%;
  border-radius: 50%;
  border: 1px solid rgba(32, 35, 49, 0.2);
}

.shape--f {
  width: 28%;
  height: 28%;
  left: 18%;
  bottom: 22%;
  background: rgba(230, 107, 115, 0.55);
  border-radius: 50%;
}

.shape--g {
  width: 80%;
  height: 55%;
  left: 10%;
  top: 20%;
  background: rgba(230, 107, 115, 0.25);
  border-radius: 50% 40% 60% 45%;
}

.shape--h {
  width: 22%;
  height: 22%;
  right: 18%;
  bottom: 20%;
  background: var(--soft-blue);
  border-radius: 50%;
}

.shape--i {
  width: 45%;
  height: 70%;
  left: -5%;
  top: 15%;
  background: rgba(255, 249, 243, 0.35);
  border-radius: 60% 40%;
}

.shape--j {
  width: 36%;
  height: 36%;
  right: 12%;
  bottom: 18%;
  border: 8px solid rgba(49, 56, 75, 0.2);
  border-radius: 50%;
}

.shape--k {
  width: 28%;
  height: 90%;
  left: 15%;
  top: 5%;
  background: rgba(229, 185, 79, 0.35);
  border-radius: 50%;
  filter: blur(2px);
}

.shape--l {
  width: 40%;
  height: 40%;
  right: 12%;
  top: 25%;
  border: 1px solid rgba(255, 249, 243, 0.35);
  border-radius: 50%;
}

/* ==========================================================================
   5. LIGHT STUDIO
   ========================================================================== */

.studio {
  background: var(--slate);
  color: var(--pearl);
  padding: var(--space-xl) var(--pad-x);
  overflow: hidden;
}

.studio__inner {
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
}

.studio__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.75rem, 6vw, 5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-lg);
  color: var(--pearl);
}

.studio__installation {
  position: relative;
  width: min(100%, 48rem);
  aspect-ratio: 8 / 5;
  margin: 0 auto;
}

.studio__object {
  position: absolute;
  inset: 18% 28%;
  z-index: 2;
}

.light-orb {
  position: absolute;
  border-radius: 50%;
  display: block;
}

.light-orb--peri {
  width: 72%;
  height: 72%;
  top: 8%;
  left: 4%;
  background: rgba(107, 120, 216, 0.55);
  filter: blur(2px);
  animation: illuminate 8s ease-in-out infinite;
}

.light-orb--rose {
  width: 58%;
  height: 58%;
  top: 28%;
  right: 0;
  background: rgba(230, 107, 115, 0.55);
  animation: illuminate 9s ease-in-out infinite reverse;
}

.light-orb--teal {
  width: 42%;
  height: 42%;
  bottom: 0;
  left: 18%;
  background: rgba(109, 183, 164, 0.5);
  animation: float-y 7s ease-in-out infinite;
}

.light-orb--gold {
  width: 30%;
  height: 30%;
  top: 0;
  right: 18%;
  background: rgba(229, 185, 79, 0.65);
  animation: float-x 8s ease-in-out infinite;
}

.light-orb--core {
  width: 22%;
  height: 22%;
  top: 40%;
  left: 40%;
  background: rgba(255, 249, 243, 0.85);
  box-shadow: 0 0 60px rgba(255, 249, 243, 0.25);
  animation: pulse-soft 5s ease-in-out infinite;
}

.studio__lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: var(--soft-blue);
  z-index: 1;
}

.studio__tag {
  position: absolute;
  z-index: 3;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.16em;
  color: rgba(255, 249, 243, 0.65);
}

.studio__tag--1 { top: 8%; left: 4%; }
.studio__tag--2 { top: 10%; right: 2%; }
.studio__tag--3 { bottom: 10%; left: 2%; }
.studio__tag--4 { bottom: 8%; right: 4%; }

/* ==========================================================================
   6. COLLECTION
   ========================================================================== */

.collection {
  background: var(--pearl);
  padding: var(--space-xl) 0;
}

.collection__list {
  max-width: 78rem;
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.experience {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
}

.experience--right {
  grid-template-columns: 0.9fr 1.1fr;
}

.experience--right .experience__visual {
  order: 2;
}

.experience--right .experience__copy {
  order: 1;
  text-align: right;
}

.experience--right .text-link {
  justify-content: flex-end;
}

.experience__visual {
  position: relative;
  aspect-ratio: 5 / 4;
  overflow: hidden;
  background: var(--sage);
}

.experience__visual--1 {
  background: var(--grad-dream);
}

.experience__visual--2 {
  background: linear-gradient(145deg, #F3F7F0, #6DB7A4 60%, #CBD4F5);
  aspect-ratio: 4 / 5;
}

.experience__visual--3 {
  background: var(--grad-golden);
  aspect-ratio: 16 / 11;
}

.experience__visual--4 {
  background: linear-gradient(160deg, #31384B, #6B78D8 55%, #F3C8CE);
}

.exp-shape {
  position: absolute;
  display: block;
  transition: transform 1.2s var(--ease);
}

.experience:hover .exp-shape {
  transform: scale(1.05) translateY(-4px);
}

.exp-shape--a {
  width: 55%;
  height: 55%;
  top: 18%;
  left: 18%;
  background: rgba(230, 107, 115, 0.55);
  border-radius: var(--radius-soft);
}

.exp-shape--b {
  width: 30%;
  height: 30%;
  right: 14%;
  bottom: 16%;
  border-radius: 50%;
  border: 12px solid rgba(229, 185, 79, 0.7);
}

.exp-shape--c {
  width: 70%;
  height: 45%;
  top: 20%;
  left: 15%;
  background: rgba(255, 249, 243, 0.4);
  border-radius: 50%;
}

.exp-shape--d {
  width: 1px;
  height: 55%;
  top: 22%;
  left: 50%;
  background: var(--slate);
  opacity: 0.4;
}

.exp-shape--e {
  width: 48%;
  height: 70%;
  left: 10%;
  top: 15%;
  background: rgba(255, 249, 243, 0.3);
  border-radius: 50% 40% 60% 50%;
}

.exp-shape--f {
  width: 32%;
  height: 32%;
  right: 14%;
  bottom: 18%;
  background: var(--soft-blue);
  border-radius: 50%;
  opacity: 0.7;
}

.exp-shape--g {
  width: 60%;
  height: 60%;
  top: 20%;
  left: 20%;
  border-radius: 50%;
  border: 1px solid rgba(255, 249, 243, 0.35);
}

.exp-shape--h {
  width: 24%;
  height: 24%;
  top: 38%;
  left: 38%;
  background: rgba(229, 185, 79, 0.75);
  border-radius: 50%;
}

.experience__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

.experience__desc {
  color: var(--muted);
  max-width: 24rem;
}

.experience--right .experience__desc {
  margin-left: auto;
}

/* ==========================================================================
   7. FIELD NOTES
   ========================================================================== */

.notes {
  background: var(--sage);
  padding: var(--space-xl) 0;
}

.notes__list {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(32, 35, 49, 0.12);
}

.note {
  display: grid;
  grid-template-columns: 12rem 1fr auto;
  gap: clamp(1rem, 3vw, 2.5rem);
  align-items: start;
  padding: clamp(1.75rem, 3.5vw, 2.75rem) 0;
  border-bottom: 1px solid rgba(32, 35, 49, 0.12);
}

.note__meta {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 0.45rem;
}

.note__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 0.65rem;
}

.note__title a {
  transition: color 0.35s var(--ease);
}

.note__title a:hover {
  color: var(--rose);
}

.note__desc {
  color: var(--muted);
  max-width: 28rem;
}

.note .text-link {
  margin-top: 0.45rem;
  white-space: nowrap;
}

/* ==========================================================================
   8. HEZRO CIRCLE
   ========================================================================== */

.circle {
  background: var(--pearl);
  padding: var(--space-xl) 0;
}

.circle__grid {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.5vw, 1.75rem);
  align-items: stretch;
}

.access {
  display: flex;
  flex-direction: column;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border-top: 1px solid rgba(32, 35, 49, 0.14);
  min-height: 100%;
  background: transparent;
}

.access--featured {
  background: var(--grad-rose-bloom);
  border-top: none;
  padding-block: clamp(2.25rem, 4vw, 3.25rem);
  transform: translateY(-0.75rem);
}

.access__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.access__desc {
  color: var(--muted);
  margin-bottom: var(--space-sm);
}

.access--featured .access__desc {
  color: rgba(32, 35, 49, 0.75);
}

.access__list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin: auto 0 var(--space-md);
  font-family: var(--font-ui);
  font-size: 0.925rem;
  color: var(--ink);
}

.access__list li {
  padding-left: 1rem;
  position: relative;
}

.access__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--teal);
}

.access--featured .access__list li::before {
  background: var(--ink);
}

.access .btn {
  align-self: flex-start;
}

/* ==========================================================================
   9. FINAL BLOOM
   ========================================================================== */

.bloom {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  background: var(--sage);
  display: grid;
  place-items: center;
  text-align: center;
  padding: var(--space-xl) var(--pad-x);
  overflow: hidden;
}

.bloom__art {
  position: absolute;
  width: min(90vw, 42rem);
  aspect-ratio: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
}

.bloom-ring,
.bloom-core {
  position: absolute;
  border-radius: 50%;
  display: block;
}

.bloom-ring--1 {
  inset: 0;
  background: rgba(230, 107, 115, 0.28);
  animation: bloom-spin 40s linear infinite, morph 16s ease-in-out infinite;
  border-radius: var(--radius-soft);
}

.bloom-ring--2 {
  inset: 12%;
  background: rgba(107, 120, 216, 0.28);
  animation: bloom-spin 32s linear infinite reverse;
}

.bloom-ring--3 {
  inset: 24%;
  background: rgba(109, 183, 164, 0.32);
  animation: pulse-soft 10s ease-in-out infinite;
}

.bloom-ring--4 {
  inset: 34%;
  border: 16px solid rgba(229, 185, 79, 0.55);
  background: transparent;
  animation: bloom-spin 48s linear infinite;
}

.bloom-core {
  inset: 42%;
  background: rgba(255, 249, 243, 0.75);
  box-shadow: 0 0 80px rgba(255, 249, 243, 0.35);
}

.bloom__content {
  position: relative;
  z-index: 1;
  max-width: 40rem;
}

.bloom__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-sm);
  color: var(--ink);
}

.bloom__title em {
  font-style: italic;
}

.bloom__text {
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  margin-bottom: var(--space-md);
}

/* ==========================================================================
   10. FOOTER
   ========================================================================== */

.footer {
  background: var(--ink);
  color: rgba(255, 249, 243, 0.78);
  padding: 0 var(--pad-x) var(--space-md);
}

.footer__divider {
  height: 2px;
  background: var(--grad-footer);
  margin: 0 calc(-1 * var(--pad-x)) var(--space-lg);
}

.footer__top {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1.5fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-lg);
}

.footer__logo {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: 0.04em;
  color: var(--pearl);
  margin-bottom: 0.75rem;
}

.footer__tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  color: rgba(255, 249, 243, 0.65);
}

.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  align-content: start;
  padding-top: 0.75rem;
}

.footer__heading {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 249, 243, 0.45);
  margin-bottom: 1.25rem;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__col a {
  font-family: var(--font-ui);
  font-size: 0.95rem;
  color: rgba(255, 249, 243, 0.78);
  transition: color 0.3s var(--ease);
}

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

.footer__bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 249, 243, 0.1);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  color: rgba(255, 249, 243, 0.4);
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(1.5rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

@keyframes float-x {
  0%, 100% { transform: translateX(0) rotate(-18deg); }
  50% { transform: translateX(12px) rotate(-12deg); }
}

@keyframes morph {
  0%, 100% {
    border-radius: 40% 60% 55% 45% / 45% 40% 60% 55%;
  }
  33% {
    border-radius: 55% 45% 40% 60% / 50% 55% 45% 50%;
  }
  66% {
    border-radius: 45% 55% 60% 40% / 55% 45% 50% 55%;
  }
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes bloom-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

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

@keyframes illuminate {
  0%, 100% { opacity: 0.45; filter: blur(2px); }
  50% { opacity: 0.8; filter: blur(0.5px); }
}

@keyframes drift {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1100px) {
  .hero__stage {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-bottom: 5rem;
  }

  .hero__artwork {
    order: -1;
    width: min(100%, 26rem);
    justify-self: center;
    margin-top: 1rem;
  }

  .hero__float-labels {
    inset: 4% 4% auto 4%;
    height: 40%;
  }

  .hero__outline {
    top: 22%;
    font-size: clamp(6rem, 28vw, 12rem);
  }

  .experience,
  .experience--right {
    grid-template-columns: 1fr;
  }

  .experience--right .experience__visual,
  .experience--right .experience__copy {
    order: initial;
  }

  .experience--right .experience__copy,
  .experience--right .text-link {
    text-align: left;
    justify-content: flex-start;
  }

  .experience--right .experience__desc {
    margin-left: 0;
  }

  .note {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .note .text-link {
    justify-self: start;
  }

  .access--featured {
    transform: none;
  }
}

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

  .panel--bloom,
  .panel--mist,
  .panel--sun,
  .panel--petal,
  .panel--grove,
  .panel--dusk {
    grid-column: span 1;
    min-height: 14rem;
  }

  .panel--dusk {
    grid-column: span 2;
  }

  .circle__grid {
    grid-template-columns: 1fr;
    max-width: 28rem;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .garden__row {
    grid-template-columns: auto 1fr auto;
  }

  .garden__line {
    display: none;
  }

  .studio__installation {
    aspect-ratio: 1 / 1.05;
  }

  .studio__object {
    inset: 22% 18%;
  }
}

@media (max-width: 600px) {
  .hero__actions {
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__footer-note {
    max-width: 55%;
  }

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

  .panel--dusk {
    grid-column: span 1;
  }

  .float-label--2,
  .float-label--4 {
    display: none;
  }

  .blob--line {
    opacity: 0.35;
  }

  .intro__orb {
    width: 10rem;
    height: 10rem;
    right: -12%;
    opacity: 0.7;
  }

  .footer__cols {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .studio__tag--1,
  .studio__tag--2 {
    top: 0;
  }

  .studio__tag--3,
  .studio__tag--4 {
    bottom: 0;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
