/* Morena Vanessa custom site design */

:root {
  --bg: #fcfbff;
  --bg-soft: #f4edff;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-strong: rgba(255, 255, 255, 0.94);
  --surface-border: rgba(121, 81, 255, 0.16);
  --surface-border-strong: rgba(121, 81, 255, 0.28);
  --ink: #181228;
  --ink-soft: #2e2351;
  --muted: #62597f;
  --accent: #7c4dff;
  --accent-strong: #5f28f6;
  --accent-soft: #ece1ff;
  --accent-bright: #cfb6ff;
  --shadow: 0 28px 70px rgba(76, 39, 151, 0.12);
  --shadow-soft: 0 18px 38px rgba(76, 39, 151, 0.1);
  --radius-xl: 40px;
  --radius-lg: 30px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --shell: min(1180px, calc(100vw - 3rem));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--ink);
  font-family: "Manrope", "Helvetica Neue", sans-serif;
  line-height: 1.6;
  background:
    radial-gradient(circle at 10% 12%, rgba(174, 138, 255, 0.34), transparent 24rem),
    radial-gradient(circle at 86% 14%, rgba(123, 77, 255, 0.2), transparent 20rem),
    radial-gradient(circle at 55% 100%, rgba(216, 198, 255, 0.38), transparent 26rem),
    linear-gradient(180deg, #ffffff 0%, #fdfcff 30%, var(--bg-soft) 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
}

body::before {
  background-image:
    linear-gradient(rgba(124, 77, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 77, 255, 0.05) 1px, transparent 1px);
  background-size: 100% 6rem, 6rem 100%;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.48), transparent 88%);
}

body::after {
  inset: auto;
  right: -8rem;
  top: -8rem;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(147, 103, 255, 0.36) 0%, rgba(147, 103, 255, 0.08) 48%, transparent 72%);
  filter: blur(24px);
}

::selection {
  background: rgba(124, 77, 255, 0.18);
}

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

figure,
h1,
h2,
h3,
p {
  margin: 0;
}

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

button,
input,
textarea {
  font: inherit;
}

main {
  position: relative;
}

main::before,
main::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

main::before {
  left: -10rem;
  top: 16rem;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 77, 255, 0.22), transparent 70%);
  filter: blur(20px);
}

main::after {
  right: -12rem;
  top: 70rem;
  width: 30rem;
  height: 30rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(205, 183, 255, 0.34), transparent 66%);
  filter: blur(26px);
}

.section-shell,
.site-header,
.site-footer {
  width: var(--shell);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0.9rem;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  margin-top: 1rem;
  padding: 1rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(247, 241, 255, 0.72));
  backdrop-filter: blur(18px);
  box-shadow:
    0 14px 34px rgba(76, 39, 151, 0.08),
    0 0 0 1px rgba(121, 81, 255, 0.08),
    0 0 34px rgba(147, 103, 255, 0.12);
}

.brand,
.site-nav a,
.button,
.eyebrow,
.panel-label,
.metric-label,
.contact-form span {
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand,
h1,
h2,
h3,
strong {
  font-family: "Syne", "Avenir Next", sans-serif;
}

.brand {
  font-size: 0.96rem;
  font-weight: 800;
  color: var(--accent-strong);
  text-shadow: 0 0 20px rgba(124, 77, 255, 0.14);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.site-nav a {
  position: relative;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  transition: color 0.2s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.35rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-bright), var(--accent));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.social-card:hover strong,
.social-card:focus-visible strong {
  color: var(--accent-strong);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.88rem 1.3rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: linear-gradient(135deg, #8b63ff 0%, var(--accent) 42%, var(--accent-strong) 100%);
  box-shadow:
    0 18px 34px rgba(95, 40, 246, 0.24),
    0 0 28px rgba(124, 77, 255, 0.2);
  color: #ffffff;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow:
    0 22px 40px rgba(95, 40, 246, 0.28),
    0 0 34px rgba(124, 77, 255, 0.26);
}

.button-secondary,
.button-ghost {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(244, 238, 255, 0.88));
  border-color: rgba(124, 77, 255, 0.16);
  box-shadow: 0 16px 28px rgba(124, 77, 255, 0.08);
  color: var(--accent-strong);
}

.button-secondary:hover,
.button-secondary:focus-visible,
.button-ghost:hover,
.button-ghost:focus-visible {
  box-shadow:
    0 18px 34px rgba(124, 77, 255, 0.12),
    0 0 30px rgba(124, 77, 255, 0.12);
}

.hero,
.story,
.rhythm,
.gallery-section,
.contact-stage {
  padding-top: 5rem;
}

.eyebrow,
.panel-label,
.metric-label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
}

.eyebrow::before,
.panel-label::before {
  content: "";
  width: 1.8rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, currentColor);
}

.section-intro {
  max-width: 50rem;
}

.section-intro h2 {
  margin-top: 0.95rem;
  font-size: clamp(2.35rem, 4vw, 4.4rem);
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.section-intro-wide {
  display: grid;
  gap: 0.95rem;
}

.section-copy,
.story-lead p,
.pulse-card p,
.discipline-card p,
.gallery-caption,
.contact-panel p,
.hero-rail small {
  color: var(--muted);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: 4rem;
  align-items: center;
  min-height: calc(100vh - 8rem);
}

.hero-copy,
.hero-stage,
.surface-panel,
.frame,
.site-footer {
  animation: rise-in 0.85s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-copy {
  animation-delay: 0.08s;
}

.hero-stage {
  animation-delay: 0.16s;
}

h1 {
  margin-top: 1rem;
  max-width: 10ch;
  font-size: clamp(3.4rem, 7vw, 7rem);
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.headline-glow {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-strong), #8f63ff 50%, #ccb4ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 24px rgba(124, 77, 255, 0.18);
}

.lede {
  max-width: 36rem;
  margin-top: 1.6rem;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.hero-actions {
  margin-top: 2.1rem;
}

.hero-stage {
  position: relative;
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 1rem;
  align-items: end;
  padding: 1rem 0 0 1rem;
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 4% 10% auto 16%;
  height: 78%;
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.4), rgba(214, 193, 255, 0.12));
  box-shadow: 0 0 60px rgba(124, 77, 255, 0.14);
  z-index: -1;
}

.frame,
.surface-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--surface-strong), rgba(243, 236, 255, 0.84));
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.frame::before,
.surface-panel::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 36%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.36), transparent);
  pointer-events: none;
  z-index: 1;
}

.frame img {
  height: 100%;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.02);
}

.hero-main {
  grid-row: 1 / span 2;
  min-height: 39rem;
  transform: rotate(-3deg) translateY(0.5rem);
  animation: float-left 7s ease-in-out infinite;
}

.hero-side {
  min-height: 17rem;
  transform: rotate(3deg) translateY(-1.2rem);
  animation: float-right 6s ease-in-out infinite;
}

.hero-note {
  margin-left: -3.5rem;
  padding: 1.4rem;
  border-color: var(--surface-border-strong);
  box-shadow:
    var(--shadow-soft),
    0 0 30px rgba(124, 77, 255, 0.16);
}

.hero-note strong {
  display: block;
  margin-top: 0.8rem;
  color: var(--ink-soft);
  font-size: clamp(1.35rem, 2vw, 1.86rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.hero-rail {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin: -0.7rem 1rem 0 2rem;
  padding: 1rem;
}

.hero-rail article {
  padding: 0.85rem 0.95rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(124, 77, 255, 0.12);
}

.hero-rail small,
.discipline-index,
.social-card small,
.contact-form span {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-rail strong {
  display: block;
  margin-top: 0.45rem;
  color: var(--ink-soft);
  font-size: 1.02rem;
  letter-spacing: -0.02em;
}

.story-board {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.2rem;
}

.story-lead,
.story-photo {
  min-height: 29rem;
}

.story-lead {
  grid-column: span 7;
  display: grid;
  align-content: center;
  gap: 1.15rem;
  padding: 2rem;
}

.story-lead p {
  color: #5f577d;
  font-size: 1.04rem;
}

.story-lead p:first-child {
  color: var(--ink-soft);
  font-size: 1.12rem;
  font-weight: 600;
}

.story-photo {
  grid-column: span 5;
}

.pulse-card {
  grid-column: span 4;
  min-height: 13.5rem;
  padding: 1.55rem;
}

.pulse-card strong {
  display: block;
  margin-top: 0.8rem;
  color: var(--ink-soft);
  font-size: 1.45rem;
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.pulse-card p {
  margin-top: 0.78rem;
}

.pulse-card p,
.discipline-card p,
.contact-panel .section-copy,
.hero-rail small,
.gallery-caption p,
.contact-form span {
  color: #6a6288;
}

.rhythm {
  padding-bottom: 0.5rem;
}

.discipline-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.2rem;
}

.discipline-track::before {
  content: "";
  position: absolute;
  left: 4%;
  right: 4%;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124, 77, 255, 0.34), transparent);
  box-shadow: 0 0 18px rgba(124, 77, 255, 0.2);
}

.discipline-card {
  grid-column: span 4;
  min-height: 18.5rem;
  padding: 1.6rem;
}

.discipline-card-shift {
  transform: translateY(2rem);
}

.discipline-index {
  color: var(--accent);
}

.discipline-card h3 {
  margin-top: 0.95rem;
  color: var(--ink-soft);
  font-size: 1.82rem;
  letter-spacing: -0.045em;
}

.discipline-card p {
  margin-top: 0.85rem;
}

.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.2rem;
}

.gallery-card,
.gallery-caption {
  min-height: 17rem;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.gallery-card-large {
  grid-column: span 5;
  grid-row: span 2;
  min-height: 36rem;
}

.gallery-card-tall {
  grid-column: span 3;
  grid-row: span 2;
  min-height: 36rem;
}

.gallery-caption {
  grid-column: span 4;
  padding: 1.8rem;
}

.gallery-caption strong {
  display: block;
  margin-top: 1rem;
  color: var(--ink-soft);
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.gallery-mosaic > :nth-child(4) {
  grid-column: span 4;
}

.gallery-card-wide {
  grid-column: span 6;
}

.gallery-mosaic > :nth-child(6),
.gallery-mosaic > :nth-child(7) {
  grid-column: span 3;
}

.gallery-card:hover,
.gallery-card:focus-within,
.gallery-caption:hover,
.gallery-caption:focus-within {
  transform: translateY(-6px);
  border-color: rgba(124, 77, 255, 0.28);
  box-shadow:
    0 28px 70px rgba(76, 39, 151, 0.16),
    0 0 32px rgba(124, 77, 255, 0.16);
}

.contact-stage {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  gap: 1rem;
  padding-bottom: 5rem;
}

.contact-panel,
.contact-form {
  padding: 1.7rem;
}

.contact-panel {
  min-height: 100%;
}

.contact-panel h2 {
  margin-top: 0.95rem;
  font-size: clamp(2.1rem, 3.5vw, 3.5rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.contact-panel .section-copy {
  margin-top: 1.15rem;
  max-width: 30rem;
  font-size: 1.02rem;
}

.social-card {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(124, 77, 255, 0.14);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(241, 233, 255, 0.86));
  box-shadow: 0 16px 32px rgba(124, 77, 255, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.social-card:hover,
.social-card:focus-visible {
  transform: translateY(-2px);
  box-shadow:
    0 20px 40px rgba(76, 39, 151, 0.12),
    0 0 30px rgba(124, 77, 255, 0.14);
}

.social-card strong {
  display: block;
  color: var(--ink-soft);
}

.social-card small {
  margin-top: 0.15rem;
  color: var(--muted);
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  flex: none;
  border-radius: 50%;
  background: linear-gradient(145deg, #9d7dff, var(--accent-strong));
  box-shadow:
    0 14px 24px rgba(95, 40, 246, 0.22),
    0 0 26px rgba(124, 77, 255, 0.28);
  color: #ffffff;
}

.social-icon svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: currentColor;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.48rem;
}

.contact-form span {
  color: var(--muted);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(124, 77, 255, 0.14);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  resize: vertical;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(124, 77, 255, 0.42);
  background: #ffffff;
  box-shadow:
    0 0 0 4px rgba(124, 77, 255, 0.1),
    0 0 24px rgba(124, 77, 255, 0.12);
}

.site-footer {
  display: flex;
  justify-content: center;
  padding: 0 0 3rem;
  color: var(--muted);
  font-size: 0.88rem;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float-left {
  0%,
  100% {
    transform: rotate(-3deg) translateY(0.5rem);
  }

  50% {
    transform: rotate(-2deg) translateY(-0.4rem);
  }
}

@keyframes float-right {
  0%,
  100% {
    transform: rotate(3deg) translateY(-1.2rem);
  }

  50% {
    transform: rotate(1.8deg) translateY(-1.8rem);
  }
}

@media (max-width: 1100px) {
  .hero {
    gap: 3rem;
  }

  .hero-stage {
    padding-left: 0;
  }

  .discipline-card-shift {
    transform: translateY(1.25rem);
  }
}

@media (max-width: 920px) {
  .site-header {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .hero,
  .contact-stage {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 3.4rem;
  }

  .hero-copy {
    text-align: center;
    justify-items: center;
  }

  h1,
  .lede {
    max-width: none;
  }

  .hero-actions {
    justify-content: center;
  }

  .story-lead,
  .story-photo {
    grid-column: span 12;
    min-height: 26rem;
  }

  .pulse-card {
    grid-column: span 4;
  }

  .discipline-track::before {
    display: none;
  }

  .discipline-card {
    grid-column: span 12;
    min-height: auto;
  }

  .discipline-card-shift {
    transform: none;
  }

  .gallery-card-large {
    grid-column: span 6;
    min-height: 30rem;
  }

  .gallery-card-tall {
    grid-column: span 6;
    min-height: 30rem;
  }

  .gallery-caption,
  .gallery-mosaic > :nth-child(4),
  .gallery-card-wide {
    grid-column: span 12;
  }

  .gallery-mosaic > :nth-child(6),
  .gallery-mosaic > :nth-child(7) {
    grid-column: span 6;
  }
}

@media (max-width: 720px) {
  :root {
    --shell: min(100vw - 1.4rem, 1000px);
  }

  body::before {
    background-size: 100% 4.5rem, 4.5rem 100%;
  }

  .site-header {
    top: 0.6rem;
    gap: 0.9rem;
    padding: 1rem 1rem 1.1rem;
  }

  .site-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.9rem 1.1rem;
  }

  .button-ghost {
    width: 100%;
  }

  .hero,
  .story,
  .rhythm,
  .gallery-section,
  .contact-stage {
    padding-top: 4rem;
  }

  .hero-stage {
    grid-template-columns: 1fr;
  }

  .hero-main,
  .hero-side {
    grid-row: auto;
    min-height: 20rem;
    transform: none;
    animation: none;
  }

  .hero-note {
    margin-left: 0;
  }

  .hero-rail {
    grid-template-columns: 1fr;
    margin: 0;
  }

  .pulse-card {
    grid-column: span 12;
    min-height: auto;
  }

  .gallery-card-large,
  .gallery-card-tall,
  .gallery-caption,
  .gallery-mosaic > :nth-child(4),
  .gallery-card-wide,
  .gallery-mosaic > :nth-child(6),
  .gallery-mosaic > :nth-child(7) {
    grid-column: span 12;
  }

  .gallery-card-large,
  .gallery-card-tall {
    min-height: 20rem;
  }

  .social-card {
    width: 100%;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: clamp(2.9rem, 15vw, 4.2rem);
  }

  .section-intro h2,
  .contact-panel h2 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .button,
  .contact-form .button {
    width: 100%;
  }

  .story-lead,
  .contact-panel,
  .contact-form,
  .gallery-caption {
    padding: 1.35rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
