:root {
  --zzr-bg: #FDF8F5;
  --zzr-text: #064E3B;
  --zzr-body: #4B5563;
  --zzr-accent: #2DD4BF;
  --zzr-accent-strong: #10B981;
  --zzr-shadow: 0 20px 40px -10px rgba(6, 78, 59, 0.08);
  --zzr-radius-organic: 40% 60% 70% 30% / 40% 50% 60% 50%;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Figtree", "DM Sans", Arial, sans-serif;
  background: var(--zzr-bg);
  color: var(--zzr-body);
  line-height: 1.7;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--zzr-text);
  text-decoration: none;
}

.organic-wrap-site {
  min-height: 100vh;
  overflow: clip;
}

.zzr-fluid-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(253, 248, 245, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(6, 78, 59, 0.08);
}

.zzr-fluid-nav {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.zzr-fluid-brand {
  font-family: "Playfair Display", "Lora", Georgia, serif;
  font-size: 1.8rem;
  color: var(--zzr-text);
  letter-spacing: 0.02em;
}

.zzr-fluid-brand small {
  display: block;
  font-family: "Figtree", "DM Sans", sans-serif;
  font-size: 0.72rem;
  color: var(--zzr-body);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.zzr-fluid-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: flex-end;
}

.zzr-fluid-links a {
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  transition: background 0.25s ease, color 0.25s ease;
}

.zzr-fluid-links a:hover,
.zzr-fluid-links a:focus-visible {
  background: rgba(45, 212, 191, 0.17);
  color: var(--zzr-text);
}

.organic-wrap-main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 2rem 1.2rem 4rem;
}

.zzr-fluid-hero {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.2rem;
  margin: 1.5rem 0 3rem;
  padding: 2rem;
  border-radius: 34px;
  background: linear-gradient(130deg, rgba(255, 255, 255, 0.7), rgba(236, 253, 245, 0.75));
  box-shadow: var(--zzr-shadow);
  isolation: isolate;
}

.zzr-fluid-blob {
  position: absolute;
  z-index: -1;
  filter: blur(0.2px);
  opacity: 0.48;
  animation: zzrMorph 18s ease-in-out infinite alternate;
  border-radius: var(--zzr-radius-organic);
}

.zzr-fluid-blob.one {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle at 28% 30%, rgba(45, 212, 191, 0.3), rgba(16, 185, 129, 0.06));
  top: -60px;
  right: -40px;
}

.zzr-fluid-blob.two {
  width: 220px;
  height: 220px;
  background: radial-gradient(circle at 70% 60%, rgba(16, 185, 129, 0.22), rgba(45, 212, 191, 0.03));
  bottom: -50px;
  left: -35px;
  animation-duration: 22s;
}

@keyframes zzrMorph {
  0% {
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    transform: rotate(0deg) scale(1);
  }
  50% {
    border-radius: 55% 45% 35% 65% / 65% 35% 55% 45%;
    transform: rotate(6deg) scale(1.05);
  }
  100% {
    border-radius: 42% 58% 63% 37% / 38% 62% 44% 56%;
    transform: rotate(-5deg) scale(0.97);
  }
}

.zzr-fluid-hero-copy {
  grid-column: span 7;
}

.zzr-fluid-hero-media {
  grid-column: span 5;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", "Lora", Georgia, serif;
  color: var(--zzr-text);
  line-height: 1.2;
  margin-top: 0;
}

h1 {
  font-size: clamp(2.2rem, 4.6vw, 4rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.6rem, 3.4vw, 2.6rem);
  margin-bottom: 0.7rem;
}

h3 {
  font-size: clamp(1.3rem, 2.7vw, 1.9rem);
}

.zzr-fluid-lead {
  font-size: 1.1rem;
  max-width: 70ch;
}

.zzr-fluid-image {
  border-radius: 41% 59% 62% 38% / 41% 44% 56% 59%;
  overflow: hidden;
  box-shadow: var(--zzr-shadow);
  min-height: 300px;
}

.zzr-fluid-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.organic-wrap-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.bio-card-feature {
  grid-column: span 4;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 32px;
  padding: 1.2rem;
  box-shadow: var(--zzr-shadow);
  border: 1px solid rgba(6, 78, 59, 0.08);
}

.bio-card-wide {
  grid-column: span 6;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 32px;
  padding: 1.4rem;
  box-shadow: var(--zzr-shadow);
  border: 1px solid rgba(6, 78, 59, 0.08);
}

.luminescent-btn-main,
.luminescent-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  will-change: transform;
}

.luminescent-btn-main {
  background: linear-gradient(140deg, var(--zzr-accent), var(--zzr-accent-strong));
  color: #053a2f;
  box-shadow: 0 12px 24px -12px rgba(45, 212, 191, 0.8);
}

.luminescent-btn-main:hover,
.luminescent-btn-main:focus-visible {
  box-shadow: 0 14px 34px -10px rgba(45, 212, 191, 0.86);
}

.luminescent-btn-secondary {
  border-color: rgba(6, 78, 59, 0.2);
  background: rgba(255, 255, 255, 0.75);
  color: var(--zzr-text);
}

.zzr-fluid-actions {
  margin-top: 1.3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.zzr-fluid-section {
  margin: 3rem 0;
}

.zzr-fluid-reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.zzr-fluid-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.organic-wrap-form {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 38px;
  padding: 1.5rem;
  box-shadow: var(--zzr-shadow);
  border: 1px solid rgba(6, 78, 59, 0.08);
}

.organic-wrap-form label {
  display: block;
  font-weight: 600;
  color: var(--zzr-text);
  margin: 0.8rem 0 0.35rem;
}

.organic-wrap-form input,
.organic-wrap-form textarea,
.organic-wrap-form select {
  width: 100%;
  border: 1px solid rgba(6, 78, 59, 0.2);
  border-radius: 20px;
  padding: 0.78rem 0.95rem;
  background: #fff;
  font: inherit;
  color: #1f2937;
  box-shadow: inset 0 1px 2px rgba(6, 78, 59, 0.03);
}

.organic-wrap-form input:focus,
.organic-wrap-form textarea:focus,
.organic-wrap-form select:focus {
  outline: 2px solid rgba(45, 212, 191, 0.35);
  outline-offset: 1px;
}

.zzr-fluid-footer {
  margin-top: 3rem;
  border-top: 1px solid rgba(6, 78, 59, 0.1);
  padding: 2rem 1.2rem 3rem;
}

.zzr-fluid-footer-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.zzr-fluid-contact-list {
  list-style: none;
  padding: 0;
  margin: 0.7rem 0 0;
}

.zzr-cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  z-index: 90;
  width: min(760px, calc(100% - 24px));
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(6, 78, 59, 0.15);
  border-radius: 999px;
  box-shadow: var(--zzr-shadow);
  padding: 0.55rem 0.75rem 0.55rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.zzr-cookie-banner p {
  margin: 0;
  font-size: 0.93rem;
}

.zzr-cookie-banner-actions {
  margin-left: auto;
  display: flex;
  gap: 0.5rem;
}

.zzr-small {
  font-size: 0.93rem;
}

@media (max-width: 960px) {
  .zzr-fluid-hero-copy,
  .zzr-fluid-hero-media,
  .bio-card-feature,
  .bio-card-wide {
    grid-column: span 12;
  }

  .zzr-fluid-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .zzr-fluid-links {
    width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    padding-bottom: 0.2rem;
    gap: 0.45rem;
  }

  .zzr-fluid-links::-webkit-scrollbar {
    height: 4px;
  }

  .zzr-fluid-links a {
    flex: 0 0 auto;
    white-space: nowrap;
    scroll-snap-align: start;
  }

  .zzr-cookie-banner {
    border-radius: 26px;
    align-items: flex-start;
    flex-direction: column;
  }

  .zzr-cookie-banner-actions {
    margin-left: 0;
  }
}
