/* ==========================================================================
   1. CSS Variables
   ========================================================================== */

:root {
  /* Colors */
  --bg:          #FFFAF7;
  --bg-alt:      #FFF8F3;
  --coral:       #FFB088;
  --coral-deep:  #FF7B7B;
  --lilac:       #C4A8FF;
  --mint:        #7EDDB5;
  --sky:         #7BC8F6;
  --yellow:      #FFD66B;
  --text:        #3A3238;
  --text-light:  #6B5F68;
  --white:       #ffffff;

  /* Glass */
  --glass-bg:    rgba(255, 255, 255, 0.55);
  --glass-border: rgba(255, 255, 255, 0.35);
  --glass-blur:  12px;

  /* Fonts */
  --font-heading: 'Fraunces', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --font-hand:    'Caveat', cursive;

  /* Spacing */
  --section-pad: 100px;
  --container:   960px;

  /* Transitions */
  --ease:        cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition:  0.3s var(--ease);
}

/* ---------- Dark Theme ---------- */
[data-theme="dark"] {
  --bg:          #1A1618;
  --bg-alt:      #211D1F;
  --text:        #F0EAE6;
  --text-light:  #A89E9A;
  --white:       #F0EAE6;

  --coral:       #FF9B6B;
  --coral-deep:  #FF6B5B;
  --lilac:       #B898FF;
  --mint:        #6BCCAA;
  --sky:         #6BB8F0;
  --yellow:      #FFCC55;

  --glass-bg:    rgba(30, 26, 28, 0.65);
  --glass-border: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] body {
  background: linear-gradient(135deg, #1A1618, #1E1520, #161A22, #151E1A, #1A1618);
  background-size: 400% 400%;
  animation: gradient-flow 20s ease infinite;
}

[data-theme="dark"] .nav--scrolled {
  background: rgba(26, 22, 24, 0.85);
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .nav__links {
  background: rgba(26, 22, 24, 0.97);
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .hero-wrap + .section {
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .glass-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

[data-theme="dark"] .timeline::before {
  border-left-color: rgba(255, 255, 255, 0.12);
}

[data-theme="dark"] .timeline__marker--future {
  background: var(--bg);
  border-color: var(--lilac);
}

[data-theme="dark"] .pill--coral { background: rgba(255, 155, 107, 0.2); color: #FFB88A; }
[data-theme="dark"] .pill--lilac { background: rgba(184, 152, 255, 0.2); color: #C9AAFF; }
[data-theme="dark"] .pill--mint  { background: rgba(107, 204, 170, 0.2); color: #8EDDBB; }
[data-theme="dark"] .pill--sky   { background: rgba(107, 184, 240, 0.2); color: #8EC8F6; }

[data-theme="dark"] .blob { opacity: 0.2; }

@supports not (backdrop-filter: blur(1px)) {
  [data-theme="dark"] .glass-card {
    background: rgba(30, 26, 28, 0.92);
  }
}

/* ==========================================================================
   2. Reset & Base
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.68;
  color: var(--text);
  background: linear-gradient(135deg, #FFFAF7, #FFF0E6, #F5F0FF, #F0FFF5, #FFFAF7);
  background-size: 400% 400%;
  overflow-x: hidden;
  animation: gradient-flow 20s ease infinite;
}

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

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

ul {
  list-style: none;
}

/* ==========================================================================
   3. Typography
   ========================================================================== */

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  font-variation-settings: 'opsz' 32;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 800; font-variation-settings: 'opsz' 72; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-variation-settings: 'opsz' 48; }
h3 { font-size: 1.25rem; font-weight: 600; }

.handwriting {
  font-family: var(--font-hand);
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--coral);
}

/* ==========================================================================
   4. Layout
   ========================================================================== */

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-pad) 0;
}

.section--alt {
  background-color: var(--bg-alt);
}

.section__label {
  margin-bottom: 4px;
}

.section__title {
  margin-bottom: 48px;
}

/* ==========================================================================
   5. Navigation
   ========================================================================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.nav--scrolled {
  background: rgba(255, 250, 247, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 12px rgba(58, 50, 56, 0.06);
  padding: 12px 0;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: var(--font-hand);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--coral);
  transition: color var(--transition);
}

.nav__logo:hover {
  color: var(--coral-deep);
}

.nav__links {
  display: flex;
  gap: 32px;
}

.nav__links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-light);
  transition: color var(--transition);
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--coral);
  border-radius: 1px;
  transition: width var(--transition);
}

.nav__links a:hover {
  color: var(--text);
}

.nav__links a:hover::after,
.nav__links a.is-active::after {
  width: 100%;
}

.nav__links a.is-active {
  color: var(--text);
}

/* Hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 110;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav__toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Theme Toggle */
.nav__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.theme-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
  padding: 6px;
  border-radius: 8px;
  color: var(--text-light);
  transition: color var(--transition), background var(--transition);
}

.theme-toggle:hover {
  color: var(--text);
  background: var(--glass-bg);
}

/* Smooth theme transition */
body.theme-transitioning,
body.theme-transitioning *,
body.theme-transitioning *::before,
body.theme-transitioning *::after {
  transition: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease !important;
}

/* ==========================================================================
   6. Hero
   ========================================================================== */

.hero-wrap {
  min-height: 115vh;
  position: relative;
}

.hero {
  position: sticky;
  top: 0;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.hero__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.hero__text {
  flex: 0 1 60%;
}

.hero__greeting {
  font-size: 1.6rem;
  margin-bottom: 4px;
  color: var(--text);
  display: inline-block;
  animation: scribble 0.8s steps(6, end) infinite;
  transform-origin: left center;
  cursor: default;
}

@keyframes scribble {
  0%   { transform: translateY(-1.5px); }
  16%  { transform: translateY(1px); }
  33%  { transform: translateY(-0.5px); }
  50%  { transform: translateY(1.5px); }
  66%  { transform: translateY(-1px); }
  83%  { transform: translateY(0.5px); }
  100% { transform: translateY(-1.5px); }
}

.hero__name {
  margin-bottom: 12px;
}

[data-theme="dark"] .hero__name {
  color: var(--white);
}

.hero__location {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.hero__subtitle {
  font-size: 1.15rem;
  color: var(--text);
  max-width: 480px;
  margin-bottom: 28px;
}

/* Pills */
.hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.pill--sm {
  padding: 4px 14px;
  font-size: 0.8rem;
}

.pill--coral {
  background: rgba(255, 176, 136, 0.25);
  color: #c06a3a;
}

.pill--lilac {
  background: rgba(196, 168, 255, 0.25);
  color: #7b5cc4;
}

.pill--mint {
  background: rgba(126, 221, 181, 0.25);
  color: #3a8f65;
}

.pill--sky {
  background: rgba(123, 200, 246, 0.25);
  color: #2a7ab5;
}

/* Avatar */
.hero__avatar {
  flex: 0 0 auto;
  position: relative;
}

.hero__avatar-placeholder {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral) 0%, var(--lilac) 50%, var(--mint) 100%);
  padding: 4px;
}

.hero__avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 15%;
}

.hero__ring {
  position: absolute;
  top: -16px;
  left: -16px;
  right: -16px;
  bottom: -16px;
  border: 2px dashed var(--coral);
  border-radius: 50%;
  opacity: 0.4;
  animation: ring-spin 25s linear infinite;
}

@keyframes ring-spin {
  to { transform: rotate(360deg); }
}

/* Sections slide OVER the sticky hero */
.hero-wrap ~ .section,
.hero-wrap ~ .footer {
  position: relative;
  z-index: 2;
}

.hero-wrap ~ .section:not(.section--alt) {
  background-color: var(--bg);
}

.hero-wrap ~ .footer {
  background-color: var(--bg);
}

/* First section gets a subtle lift shadow */
.hero-wrap + .section {
  box-shadow: 0 -12px 40px rgba(58, 50, 56, 0.06);
}

/* ==========================================================================
   7. Glass Cards
   ========================================================================== */

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 32px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(58, 50, 56, 0.08);
}

@supports not (backdrop-filter: blur(1px)) {
  .glass-card {
    background: rgba(255, 255, 255, 0.88);
  }
}

.glass-card__title {
  margin-bottom: 12px;
  color: var(--text);
}

/* ==========================================================================
   8. Chat Bubbles
   ========================================================================== */

.chat {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 700px;
}

.chat__row {
  display: flex;
  align-items: flex-end;
  gap: 12px;
}

.chat__row--left {
  align-self: flex-start;
}

.chat__row--right {
  align-self: flex-end;
  flex-direction: row-reverse;
}

.chat__avatar {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 8px;
}

.chat__avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}

.chat__bubble {
  position: relative;
  padding: 20px 24px;
  border-radius: 20px;
  max-width: 520px;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.chat__bubble:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(58, 50, 56, 0.06);
}

[data-theme="dark"] .chat__bubble:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

/* Bubble tails */
.chat__row--left .chat__bubble {
  border-bottom-left-radius: 6px;
}

.chat__row--right .chat__bubble {
  border-bottom-right-radius: 6px;
}

/* Color tints — subtle background wash */
.chat__bubble--coral {
  background: rgba(255, 176, 136, 0.12);
  border-color: rgba(255, 176, 136, 0.25);
}

.chat__bubble--lilac {
  background: rgba(196, 168, 255, 0.12);
  border-color: rgba(196, 168, 255, 0.25);
}

.chat__bubble--mint {
  background: rgba(126, 221, 181, 0.12);
  border-color: rgba(126, 221, 181, 0.25);
}

/* Dark mode tints */
[data-theme="dark"] .chat__bubble--coral {
  background: rgba(255, 155, 107, 0.1);
  border-color: rgba(255, 155, 107, 0.18);
}

[data-theme="dark"] .chat__bubble--lilac {
  background: rgba(184, 152, 255, 0.1);
  border-color: rgba(184, 152, 255, 0.18);
}

[data-theme="dark"] .chat__bubble--mint {
  background: rgba(107, 204, 170, 0.1);
  border-color: rgba(107, 204, 170, 0.18);
}

.chat__name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}

.chat__text {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.72;
}

.chat__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dashed var(--glass-border);
}

/* ==========================================================================
   9. Timeline
   ========================================================================== */

.timeline {
  position: relative;
  padding-left: 40px;
  max-width: 700px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  border-left: 2px dashed rgba(58, 50, 56, 0.15);
}

.timeline__item {
  position: relative;
  padding-bottom: 48px;
}

.timeline__item:last-child {
  padding-bottom: 0;
}

.timeline__marker {
  position: absolute;
  left: -40px;
  top: 8px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  z-index: 2;
}

.timeline__marker--current {
  background: var(--coral);
  box-shadow: 0 0 0 6px rgba(255, 176, 136, 0.25);
  animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 6px rgba(255, 176, 136, 0.25); }
  50%      { box-shadow: 0 0 0 12px rgba(255, 176, 136, 0.1); }
}

.timeline__marker--future {
  background: var(--bg);
  border: 2px dashed var(--lilac);
}

.timeline__card {
  padding: 28px;
}

.timeline__card .pill {
  margin-bottom: 12px;
}

.timeline__title {
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.timeline__company {
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 4px;
}

.timeline__date {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 14px;
}

/* ==========================================================================
   10. Interest Cards
   ========================================================================== */

.interests-grid {
  display: grid;
  gap: 24px;
  counter-reset: interest;
}

.interest-card {
  text-align: left;
  position: relative;
  overflow: hidden;
  counter-increment: interest;
}

/* Colored top accent bar */
.interest-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 3px;
  border-radius: 0 0 3px 3px;
  opacity: 0.7;
}

.interest-card--fitness::before  { background: var(--coral); }
.interest-card--autos::before    { background: var(--lilac); }
.interest-card--immobilien::before { background: var(--mint); }

/* Editorial number watermark */
.interest-card::after {
  content: counter(interest, decimal-leading-zero);
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  opacity: 0.05;
  line-height: 1;
  pointer-events: none;
}

.interest-card__text {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.72;
}

/* ==========================================================================
   11. Contact & Footer
   ========================================================================== */

.kontakt {
  text-align: center;
}

.kontakt__text {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 500px;
  margin: 0 auto 32px;
}

.kontakt__info {
  margin-bottom: 32px;
}

.kontakt__name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
}

.kontakt__location {
  font-size: 0.95rem;
  color: var(--text-light);
}

.kontakt__links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.kontakt__link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 28px;
  font-weight: 500;
  cursor: pointer;
}

.kontakt__link-icon {
  font-size: 1.4rem;
  line-height: 1;
}

.footer {
  padding: 32px 0;
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-light);
}

/* ==========================================================================
   12. Decorative Blobs
   ========================================================================== */

.blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  z-index: -1;
  will-change: transform;
  pointer-events: none;
  --parallax-x: 0px;
  --parallax-y: 0px;
  translate: var(--parallax-x) var(--parallax-y);
}

.blob--1 {
  width: 400px;
  height: 400px;
  background: var(--coral);
  top: -80px;
  right: -100px;
  animation: float-1 20s ease-in-out infinite;
}

.blob--2 {
  width: 350px;
  height: 350px;
  background: var(--lilac);
  top: 40%;
  left: -120px;
  animation: float-2 22s ease-in-out infinite;
}

.blob--3 {
  width: 300px;
  height: 300px;
  background: var(--mint);
  bottom: 10%;
  right: -80px;
  animation: float-3 18s ease-in-out infinite;
}

.blob--4 {
  width: 280px;
  height: 280px;
  background: var(--yellow);
  bottom: -60px;
  left: 20%;
  animation: float-4 21s ease-in-out infinite;
}

@keyframes float-1 {
  0%, 100% { transform: translate(0, 0) scale(1); background-color: var(--coral); }
  33%      { transform: translate(-50px, 60px) scale(1.1); background-color: #FFD4A8; }
  66%      { transform: translate(35px, -35px) scale(0.9); background-color: var(--coral-deep); }
}

@keyframes float-2 {
  0%, 100% { transform: translate(0, 0) scale(1); background-color: var(--lilac); }
  33%      { transform: translate(55px, -40px) scale(0.92); background-color: #A8C4FF; }
  66%      { transform: translate(-30px, 65px) scale(1.12); background-color: #D4A8FF; }
}

@keyframes float-3 {
  0%, 100% { transform: translate(0, 0) scale(1); background-color: var(--mint); }
  33%      { transform: translate(-35px, -55px) scale(1.08); background-color: #7BC8F6; }
  66%      { transform: translate(45px, 35px) scale(0.92); background-color: #A8FFD4; }
}

@keyframes float-4 {
  0%, 100% { transform: translate(0, 0) scale(1); background-color: var(--yellow); }
  33%      { transform: translate(40px, 45px) scale(1.06); background-color: #FFE4A8; }
  66%      { transform: translate(-50px, -30px) scale(0.94); background-color: #FFC46B; }
}

@keyframes gradient-flow {
  0%, 100% { background-position: 0% 50%; }
  25%      { background-position: 100% 0%; }
  50%      { background-position: 100% 100%; }
  75%      { background-position: 0% 100%; }
}

/* ==========================================================================
   13. Scroll Reveal
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   14. Responsive
   ========================================================================== */

/* Mobile base (< 600px) */

.nav__toggle {
  display: flex;
}

.nav__links {
  position: fixed;
  top: 0;
  right: 0;
  width: min(280px, 80vw);
  height: 100vh;
  flex-direction: column;
  background: rgba(255, 250, 247, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 80px 32px 32px;
  gap: 24px;
  transform: translateX(100%);
  transition: transform var(--transition);
  box-shadow: -4px 0 24px rgba(58, 50, 56, 0.08);
}

.nav__links--open {
  transform: translateX(0);
}

.nav__links a {
  font-size: 1.1rem;
}

.hero__inner {
  flex-direction: column;
  text-align: center;
}

.hero__text {
  flex: 1;
}

.hero__subtitle {
  margin-left: auto;
  margin-right: auto;
}

.hero__pills {
  justify-content: center;
}

.hero__avatar-placeholder {
  width: 180px;
  height: 180px;
}

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

/* Tablet (600px+) */
@media (min-width: 600px) {
  .interests-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero__avatar-placeholder {
    width: 200px;
    height: 200px;
  }
}

/* Desktop (900px+) */
@media (min-width: 900px) {
  .nav__toggle {
    display: none;
  }

  .nav__links,
  [data-theme="dark"] .nav__links {
    position: static;
    width: auto;
    height: auto;
    flex-direction: row;
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 0;
    transform: none;
    box-shadow: none;
  }

  .nav__links a {
    font-size: 0.95rem;
  }

  .hero__inner {
    flex-direction: row;
    text-align: left;
  }

  .hero__text {
    flex: 0 1 60%;
  }

  .hero__subtitle {
    margin-left: 0;
    margin-right: 0;
  }

  .hero__pills {
    justify-content: flex-start;
  }

  .hero__avatar-placeholder {
    width: 220px;
    height: 220px;
  }

  .interests-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ==========================================================================
   15. Accessibility
   ========================================================================== */

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

  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .blob {
    animation: none;
  }

  .hero__ring {
    animation: none;
  }

  .hero-wrap {
    min-height: auto;
  }

  .hero {
    position: relative;
  }
}

/* Focus styles */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 3px;
  border-radius: 4px;
}
