/* styles.css */
:root{
  --bg: #cff2c1;
  --ink: #061a24;

  --muted: rgba(6,26,36,.78);
  --muted2: rgba(6,26,36,.68);

  --mint: #cfeee1;
  --sky: #cfe7ff;

  --glass: rgba(255, 255, 255, 0.72);
  --stroke: rgba(6,26,36,.12);

  --shadow: 0 22px 70px rgba(6,26,36,.11);
  --shadow2: 0 10px 28px rgba(6,26,36,.08);

  --radius: 22px;
  --radius2: 18px;

  --container: min(1120px, 92vw);

  --text: 17px;
  --text-lg: 18px;
  --title: clamp(38px, 4.4vw, 58px);

  --grid-gap: 18px;

  --heroBoxH: 560px;
  --aboutBoxH: 572px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue";
  color: var(--ink);
  background:
    radial-gradient(1200px 800px at 20% 10%, var(--sky), transparent 60%),
    radial-gradient(1200px 800px at 80% 30%, var(--mint), transparent 60%),
    var(--bg);
  overflow-x:hidden;
  line-height: 1.75;
  font-size: var(--text);
}

.container{ width: var(--container); margin:0 auto; }

/* Better focus */
a, button, input, textarea{ -webkit-tap-highlight-color: transparent; }
:focus-visible{
  outline: 3px solid rgba(6,26,36,.30);
  outline-offset: 3px;
  border-radius: 12px;
}

/* Background ornaments */
.ambient{ position: fixed; inset: 0; pointer-events:none; z-index: 0; filter: blur(10px); }
.orb{
  position:absolute;
  width: 280px; height: 280px;
  border-radius: 999px;
  opacity: .44;
  mix-blend-mode: multiply;
  animation: floaty 9s ease-in-out infinite;
  background: radial-gradient(circle at 30% 30%, #ffffff, rgba(255,255,255,0) 60%);
}
.orb--1{ left: -70px; top: 140px; background-color: var(--mint); }
.orb--2{ right: -90px; top: 50px;  background-color: var(--sky); animation-delay: -2s; }
.orb--3{ left: 40%; bottom: -160px; background-color: #e7dcff; animation-delay: -4s; }

@keyframes floaty{
  0%,100%{ transform: translate3d(0,0,0) scale(1); }
  50%{ transform: translate3d(0,-18px,0) scale(1.03); }
}

.scene{ position: fixed; inset: 0; z-index: 0; pointer-events:none; }
.layer{
  position:absolute;
  inset: -10vh -10vw;
  transform: translate3d(0,0,0);
  will-change: transform;
}
.layer--photo{
  background-size: cover;
  background-position: center;
  filter: saturate(1.02) contrast(1.03);
}
.layer--photo1{
  background-image: url("https://images.unsplash.com/photo-1441974231531-c6227db76b6e?auto=format&fit=crop&w=2000&q=80");
  opacity: .22;
}
.layer--photo2{
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=2000&q=80");
  opacity: .18;
  mix-blend-mode: multiply;
}
.layer--tint{
  opacity: .95;
  background:
    radial-gradient(900px 600px at 20% 10%, rgba(255,255,255,.86), rgba(255,255,255,0) 60%),
    radial-gradient(900px 600px at 70% 20%, rgba(255,255,255,.60), rgba(255,255,255,0) 65%),
    linear-gradient(180deg, rgba(207,231,255,.55), rgba(247,251,255,.06) 70%);
}

/* Nav */
.nav{
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(255,255,255,.52);
  border-bottom: 1px solid var(--stroke);
}
.nav__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 0;
}
.brand{
  display:flex; gap:10px; align-items:center;
  text-decoration:none; color: var(--ink);
  font-weight: 900;
}
.brand__mark{
  width:34px;height:34px;
  display:grid;place-items:center;
  border-radius: 12px;
  background: rgba(255,255,255,.90);
  border:1px solid var(--stroke);
  box-shadow: var(--shadow2);
}
.nav__links{ display:flex; gap:10px; align-items:center; }
.nav__links a{
  color: var(--muted);
  text-decoration:none;
  font-weight: 850;
  letter-spacing: .01em;
  padding: 10px 12px;
  border-radius: 999px;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}
.nav__links a:hover{
  color: var(--ink);
  background: rgba(255,255,255,.55);
  transform: translateY(-1px);
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.92);
  color: var(--ink);
  text-decoration:none;
  box-shadow: var(--shadow2);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  font-weight: 900;
}
.btn:hover{ transform: translateY(-2px); box-shadow: var(--shadow); background: rgba(255,255,255,.98); }
.btn--ghost{ background: rgba(255,255,255,.60); }
.btn--full{ width: 100%; }

/* Layout */
.splitRow{
  position: relative;
  z-index: 1;
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--grid-gap);
  align-items: start;
}
.col{ min-width: 0; }
.col--media{ grid-column: 1 / span 5; }
.col--copy{ grid-column: 6 / -1; }
.splitRow--reverse .col--copy{ grid-column: 1 / span 7; }
.splitRow--reverse .col--media{ grid-column: 8 / -1; }

/* Text Panel */
.textPanel{
  border-radius: var(--radius);
  background: var(--glass);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow2);
  padding: 18px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.textPanel--hero{
  max-height: var(--heroBoxH);
  overflow: auto;
  scrollbar-width: thin;
}

/* Hero */
.hero{
  position: relative;
  z-index: 1;
  padding: 72px 0 52px;
}
.heroHead{ margin-bottom: 16px; }
.kicker{
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(6,26,36,.80);
  font-weight: 950;
  margin: 0 0 10px;
}
.title{
  margin: 0;
  font-size: var(--title);
  line-height: 1.06;
  letter-spacing: -0.02em;
}
.hero__cta{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 10px 0 0;
}
.hero__cta--center{ justify-content: center; }

/* Prose */
.prose{ max-width: 74ch; }
.prose p{
  margin: 0 0 14px;
  font-size: var(--text-lg);
  color: rgba(6,26,36,.90);
  text-align: justify;
  text-justify: inter-word;
}
.prose p:last-child{ margin-bottom: 0; }

/* Media card */
.mediaCard{
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow2);
  background: rgba(255,255,255,.70);
  position: relative;
  display: flex;
  flex-direction: column;
}
.mediaCard img{
  width: 100%;
  object-fit: cover;
  display:block;
  flex: 1 1 auto;
}
.mediaCard--hero{ height: var(--heroBoxH); }
.mediaCard--aboutLong{ height: var(--aboutBoxH); }

.mediaCard__cap{
  padding: 12px 14px;
  font-size: 13px;
  color: rgba(6,26,36,.78);
  border-top: 1px solid rgba(6,26,36,.10);
  background: rgba(255,255,255,.82);
}

/* Sections */
.section{ position: relative; z-index: 1; padding: 72px 0; }
.section--alt{
  background: rgba(255, 255, 255, 0.4);
  border-top: 1px solid var(--stroke);
  border-bottom: 1px solid var(--stroke);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.sectionHead{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 18px;
  margin-bottom: 18px;
}
.sectionHead h2{ margin:0; font-size: 32px; letter-spacing: -0.01em; }

/* Cards */
.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
}
.cards--4{ grid-template-columns: repeat(4, 1fr); }
.card{
  border-radius: var(--radius);
  background: rgba(255,255,255,.72);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow2);
  padding: 18px;
  height: 100%;
  display:flex;
  flex-direction: column;
}
.card h3{ margin: 0 0 10px; font-size: 20px; }
.list{
  margin: 0;
  padding-left: 18px;
  color: rgba(6,26,36,.84);
  font-size: 16px;
}
.list li{ margin: 7px 0; }

/* Intervjui: big, centred, stacked */
.videoStack{
  display: grid;
  gap: 18px;
  justify-items: center;
}
.videoBig{
  width: min(980px, 100%);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow2);
}
.videoBig iframe{
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  display: block;
}

/* Contact */
.contact{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items:start;
}
.contact__left{ grid-column: 1 / 2; }
.contact form{ grid-column: 2 / 3; }

/* Contact list */
.contactGrid{
  display:grid;
  gap: 12px;
  margin: 0;
}
.contactItem{
  display:flex;
  align-items:center;
  gap: 12px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.82);
  border: 1px solid var(--stroke);
  color: var(--ink);
  text-decoration:none;
  box-shadow: var(--shadow2);
  font-weight: 900;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.contactItem:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  background: rgba(255,255,255,.92);
}
.contactItem--static{ cursor: default; }
.contactText{ line-height: 1.25; }

.iconBubble{
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  background: rgba(207,231,255,.60);
  border: 1px solid rgba(6,26,36,.10);
  flex: 0 0 38px;
}

/* Contact logo */
.contactLogo{
  margin-top: 18px;
  display: flex;
  justify-content: center;
}
.contactLogo__ring{
  width: 190px;
  height: 190px;
  border-radius: 999px;
  padding: 8px;
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(6,26,36,.14);
  box-shadow: var(--shadow2);
  overflow: hidden;
  display: grid;
  place-items: center;
}
.contactLogo__ring img{
  width: 100%;
  height: 100%;
  border-radius: 999px;
  object-fit: contain;
  background: rgba(255,255,255,.92);
  display:block;
}

/* Form */
.glass{
  border-radius: var(--radius);
  background: var(--glass);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  padding: 18px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.form{ display:flex; flex-direction: column; gap: 12px; }
.form h3{ margin: 0 0 4px; font-size: 20px; }

.field{ display:grid; gap: 6px; }
.field label{
  font-weight: 950;
  color: rgba(6,26,36,.84);
  font-size: 13px;
  letter-spacing: .02em;
}
input, textarea{
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(6,26,36,.14);
  padding: 12px;
  background: rgba(255,255,255,.94);
  outline: none;
  font-size: 16px;
  color: var(--ink);
}
textarea{ resize: vertical; min-height: 130px; }
input:focus, textarea:focus{
  border-color: rgba(6,26,36,.34);
  box-shadow: 0 0 0 4px rgba(207,231,255,.55);
}

/* Mini facts */
.miniFacts{
  margin-top: 14px;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}
.fact{
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.66);
  border: 1px solid var(--stroke);
  min-width: 150px;
  box-shadow: var(--shadow2);
}
.fact strong{ display:block; font-size: 18px; }
.fact span{ color: rgba(6,26,36,.70); font-size: 12px; }

/* Reveal */
.reveal{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible{ opacity: 1; transform: translateY(0); }

/* Footer */
.footerBar{
  position: relative;
  z-index: 20;
  border-top: 1px solid var(--stroke);
  background: rgba(247,251,255,.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.footerBar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 10px 0;
  flex-wrap: wrap;
  font-weight: 900;
  font-size: 13px;
}
.footerBar a{
  color: rgba(6,26,36,.78);
  text-decoration:none;
}
.footerBar a:hover{ color: var(--ink); }
.dot{ opacity: .55; padding: 0 6px; }

/* Social icons row */
.socialRow{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin: 20px 0 18px;
}
.socialIcon{
  width: 54px;
  height: 54px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(6,26,36,.14);
  box-shadow: var(--shadow2);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  text-decoration: none;
}
.socialIcon:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  background: rgba(255,255,255,.94);
}
.socialIcon svg{
  width: 28px;
  height: 28px;
  fill: rgba(6,26,36,.82);
}

/* Responsive */
@media (max-width: 1100px){
  .cards--4{ grid-template-columns: repeat(2, 1fr); }
  .col--media{ grid-column: 1 / span 6; }
  .col--copy{ grid-column: 7 / -1; }
  .splitRow--reverse .col--copy{ grid-column: 1 / span 6; }
  .splitRow--reverse .col--media{ grid-column: 7 / -1; }
}

@media (max-width: 980px){
  .cards{ grid-template-columns: 1fr; }

  .splitRow{ grid-template-columns: 1fr; }
  .col--media, .col--copy{ grid-column: 1 / -1; }
  .splitRow--reverse .col--media{ order: 0; }
  .splitRow--reverse .col--copy{ order: 1; }

  .contact{ grid-template-columns: 1fr; }
  .contact__left,
  .contact form{ grid-column: 1 / -1; }

  .mediaCard--hero,
  .mediaCard--aboutLong{ height: auto; }
  .mediaCard img{ min-height: 320px; }
  .textPanel--hero{ max-height: none; overflow: visible; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  .reveal{ transition: none; transform: none; opacity: 1; }
  .orb{ animation: none; }
}