@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,500;0,9..144,600;1,9..144,500&family=Manrope:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --mist: #EEF4F4;
  --paper: #FFFFFF;
  --ink: #000000;
  --ink-soft: #1C3A42;
  --teal: #0E6E7C;
  --teal-deep: #0A4B54;
  --teal-tint: rgba(14, 110, 124, 0.10);
  --gold: #D9A441;
  --gold-tint: rgba(217, 164, 65, 0.16);
  --slate: #5C7278;
  --slate-dim: #93A6AA;
  --line: rgba(15, 43, 51, 0.12);
  --line-strong: rgba(15, 43, 51, 0.22);

  --font-display: 'Sora', sans-serif;
  --font-body: 'Manrope', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--mist);
  color: var(--ink-soft);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

button {
  font-family: inherit;
}

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

:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px var(--gold-tint);
}

/* ---------- Ripple signature motif ---------- */
.ripple-rule {
  position: relative;
  width: 52px;
  height: 14px;
  margin: 16px 0 0 0;
}

.ripple-rule svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.ripple-rule circle {
  fill: none;
  stroke: var(--teal);
  stroke-width: 1.4;
  opacity: 0;
  transform-origin: 7px 7px;
  animation: ripple-out 2.8s ease-out infinite;
}

.ripple-rule circle:nth-child(2) {
  animation-delay: 0.7s;
}

.ripple-rule circle:nth-child(3) {
  animation-delay: 1.4s;
}

@keyframes ripple-out {
  0% {
    transform: scale(0.2);
    opacity: 0.9;
  }

  80% {
    transform: scale(2.4);
    opacity: 0;
  }

  100% {
    transform: scale(2.4);
    opacity: 0;
  }
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #fff;
}

.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}

.section-head h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  margin-top: 14px;
}

.section-head p {
  color: #fff;
  margin-top: 14px;
  font-size: 16px;
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #000;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  color: #fff;
}

.brand .mark {
  width: 28px;
  height: 28px;
  position: relative;
}

.brand .mark svg {
  width: 100%;
  height: 100%;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 14.5px;
  color: var(--slate);
}

.nav-links a {
  position: relative;
  padding: 6px 0;
  transition: color .2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: var(--gold);
}

.has-dropdown {
  position: relative;
}

.dropdown {
  position: absolute;
  top: calc(100% + 18px);
  left: -16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  min-width: 230px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all .18s ease;
  box-shadow: 0 18px 40px rgba(15, 43, 51, 0.14);
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--slate);
  font-size: 14px;
}

.dropdown a:hover {
  background: var(--mist);
  color: var(--ink);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 22px;
}

.burger {
  display: none;
  background: none;
  border: none;
  color: var(--ink);
  font-size: 22px;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  padding: 13px 22px;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}

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

.btn-primary {
  background: #000;
  color: #fff;
  box-shadow: none;
  border: 1px solid #ffffff;
}

.btn-primary:hover {
  background: var(--teal-deep);
}

.btn-ghost {
  border-color: rgba(255, 254, 252, 0.22);
  color: #fff;
  border: 1px solid #ffffff;
}

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

.btn-block {
  width: 100%;
}

/* ---------- Hero + lake visual ---------- */
.hero {
  background: #36045e;

  position: relative;
  padding: 88px 0 66px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(38px, 5.2vw, 62px);
  line-height: 1.06;
  margin-top: 18px;
}

.hero h1 em {
  font-style: italic;
  color: var(--teal);
}

.hero p.lede {
  color: #fff;
  font-size: 17.5px;
  max-width: 480px;
  margin-top: 22px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.lake-visual {
  position: relative;
  aspect-ratio: 1/1;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: radial-gradient(circle at 50% 55%, #E4EEEE 0%, #D7E7E7 55%, #C9DEDE 100%);
  overflow: hidden;
}

.lake-visual svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.lake-ring {
  fill: none;
  stroke: var(--teal);
  stroke-width: 1;
  opacity: 0.35;
}

.lake-ring.animated {
  animation: lake-pulse 4.5s ease-in-out infinite;
  transform-origin: center;
}

@keyframes lake-pulse {

  0%,
  100% {
    opacity: 0.18;
    transform: scale(1);
  }

  50% {
    opacity: 0.45;
    transform: scale(1.03);
  }
}

.drop {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: drop-fall 3.6s ease-in infinite;
}

@keyframes drop-fall {
  0% {
    transform: translateY(-40px);
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  55% {
    transform: translateY(70px);
    opacity: 0;
  }

  100% {
    transform: translateY(70px);
    opacity: 0;
  }
}

.canvas-caption {
  position: absolute;
  left: 24px;
  bottom: 16px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: var(--teal-deep);
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.7);
  padding: 6px 10px;
  border-radius: 6px;
}

/* ---------- Stat bar ---------- */
.stat-bar {
  border-bottom: 1px solid var(--line);
  background: #fff3f3;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 34px 0;
}

.stat {
  padding: 0 24px;
  border-left: 1px solid var(--line);
}

.stat:first-child {
  border-left: none;
  padding-left: 0;
}

.stat .num {
  font-family: var(--font-mono);
  font-size: clamp(22px, 2.4vw, 30px);
  color: #000;
}

.stat .label {
  color: #000;
  font-size: 13px;
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ---------- Generic sections ---------- */
.section {
  padding: 96px 0;
  background-color: #320735;
}

.section.on-paper {
  background: #36045e;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section.on-deep {
  background: #fff;
  color: #CFE0E2;
}

.section.on-deep h2,
.section.on-deep h3,
.section.on-deep h4 {
  color: #000;
}

.section.on-deep .slate-txt {
  color: #000;
}

.section.on-deep .eyebrow {
  color: var(--gold);
}

.section.on-deep .eyebrow::before {
  background: var(--gold);
}

/* ---------- Pillars ---------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}

.pillar {
  background: var(--paper);
  padding: 32px 26px;
}

.pillar .tag {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--teal);
  letter-spacing: 0.08em;
}

.pillar h3 {
  font-size: 19px;
  margin-top: 14px;
}

.pillar p {
  color: var(--slate);
  font-size: 14.5px;
  margin-top: 12px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 30px;
  background: var(--paper);
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.card:hover {
  border-color: var(--teal);
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(15, 43, 51, 0.08);
}

.card .idx {
  font-family: var(--font-mono);
  font-size: 12px;
  color: #000;
}

.card h3 {
  font-size: 19px;
  margin-top: 10px;
  color: #000;
}

.card p {
  color: #000;
  font-size: 14.5px;
  margin-top: 10px;
}

/* ---------- Split / narrative ---------- */
.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.narrative p {
  margin-top: 16px;
  color: #fff;
  font-size: 15.5px;
}

.on-deep .narrative p {
  color: #A9C0C3;
}

.narrative p:first-of-type {
  margin-top: 20px;
}

.art-lake {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--paper);
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
}

.on-deep .art-lake {
  background: #0A2229;
  border-color: rgba(255, 255, 255, 0.1);
}

/* ---------- Process ---------- */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.process-step {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 24px;
  position: relative;
  background: var(--paper);
}

.process-step .step-num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--teal);
}

.process-step h3 {
  font-size: 18px;
  margin-top: 16px;
}

.process-step p {
  color: var(--slate);
  font-size: 14px;
  margin-top: 10px;
}

.process-step:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -26px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--slate-dim);
  font-size: 18px;
  display: none;
}

@media (min-width:900px) {
  .process-step:not(:last-child)::after {
    display: block;
  }
}

/* ---------- CTA banner ---------- */
.cta-banner {
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: #000000 !important;
  color: #F3F9F9;
  position: relative;
  overflow: hidden;
}

.cta-banner h2 {
  font-size: clamp(24px, 2.8vw, 32px);
  max-width: 520px;
  color: #F3F9F9;
}

.cta-banner p {
  color: #CFE7E7;
  margin-top: 10px;
}

.cta-banner .eyebrow {
  color: var(--gold);
}

.cta-banner .eyebrow::before {
  background: var(--gold);
}

.cta-banner .btn-primary {
  background: #000;
  color: #fff;
  box-shadow: none;
  border: 1px solid #ffffff;
}

.cta-banner .btn-primary:hover {
  background: #e6b657;
}

/* ---------- Footer ---------- */
footer {
  border-top: 1px solid var(--line);
  padding: 64px 0 32px;
  background: #000;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
}

.footer-grid h4 {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}

.footer-grid ul li {
  margin-bottom: 10px;
}

.footer-grid ul a {
  color: #fff;
  font-size: 14.5px;
  transition: color .2s;
}

.footer-grid ul a:hover {
  color: var(--teal);
}

.footer-brand p {
  color: #fff;
  font-size: 14.5px;
  margin-top: 14px;
  max-width: 280px;
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--slate-dim);
  font-size: 13px;
  font-family: var(--font-mono);
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  padding: 60px 0 52px;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  font-size: clamp(32px, 4.2vw, 46px);
  margin-top: 16px;
}

.page-hero p {
  color: var(--slate);
  max-width: 560px;
  margin-top: 16px;
  font-size: 16px;
}

/* ---------- Forms (Contact) ---------- */
.form-panel {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
  padding: 40px;
}

.field {
  margin-bottom: 20px;
}

.field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 8px;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  background: var(--mist);
  border: 1px solid var(--line-strong);
  border-radius: 9px;
  padding: 13px 14px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 14.5px;
  transition: border-color .2s;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--teal);
  outline: none;
}

.field textarea {
  resize: vertical;
  min-height: 120px;
}

.form-note {
  color: var(--slate-dim);
  font-size: 12.5px;
  margin-top: 10px;
}

.confirm {
  display: none;
  border: 1px solid var(--teal);
  background: var(--teal-tint);
  border-radius: 10px;
  padding: 16px 18px;
  font-size: 14px;
  margin-top: 18px;
  color: var(--teal-deep);
}

.confirm.show {
  display: block;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.contact-info-item .tag {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--teal);
  letter-spacing: 0.08em;
}

.contact-info-item .val {
  font-size: 17px;
  margin-top: 6px;
  color: var(--ink);
  font-family: var(--font-display);
}

.contact-info-item .sub {
  color: var(--slate);
  font-size: 13.5px;
  margin-top: 4px;
}

/* ---------- Responsive ---------- */
@media (max-width:980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .lake-visual {
    max-width: 420px;
    margin: 0 auto;
  }

  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 0;
  }

  .stat:nth-child(3) {
    border-left: none;
    padding-left: 0;
  }

  .pillars {
    grid-template-columns: repeat(2, 1fr);
  }

  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .process {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .cta-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width:680px) {
  .nav-links {
    position: fixed;
    inset: 78px 0 0 0;
    background: var(--mist);
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 32px;
    gap: 22px;
    transform: translateX(100%);
    transition: transform .25s ease;
  }

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

  .has-dropdown .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    margin-top: 10px;
    border: none;
    padding: 0;
    background: none;
    box-shadow: none;
  }

  .has-dropdown.open .dropdown {
    display: block;
  }

  .burger {
    display: block;
  }

  .nav-cta .btn-ghost {
    display: none;
  }

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

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

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

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

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }

  .form-panel {
    padding: 26px;
  }

  .cta-banner {
    padding: 34px;
  }
}



/* new css */
.process-step h3 {
  color: #000;
}

.pillar h3 {
  color: #000;
}