@font-face {
  font-family: "Leon";
  src: url("assets/fonts/leon-regular.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Leon";
  src: url("assets/fonts/leon-bold.otf") format("opentype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Leon";
  src: url("assets/fonts/leon-heavy.otf") format("opentype");
  font-style: normal;
  font-weight: 900;
  font-display: swap;
}
@font-face {
  font-family: "Leon Product";
  src: url("assets/fonts/leon-product-regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Leon Product";
  src: url("assets/fonts/leon-product-bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --blue: #1d3794;
  --blue-deep: #142d79;
  --blue-ink: #102b73;
  --cyan: #45d4d0;
  --cyan-soft: #e9f7f8;
  --coral: #ff553f;
  --yellow: #ffd51e;
  --white: #fff;
  --paper: #fbfbfa;
  --ink: #17377f;
  --muted: #65749a;
  --shadow: 0 18px 45px rgba(19, 46, 116, .12);
  --radius: 28px;
  --page: min(1220px, calc(100vw - 64px));
  --section-space: clamp(120px, 11vw, 180px);
  --section-space-large: clamp(160px, 14vw, 230px);
  --content-gap: clamp(48px, 7vw, 100px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Leon Product", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.55;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible, [tabindex]:focus-visible { outline: 3px solid var(--yellow); outline-offset: 4px; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  top: 12px;
  right: 12px;
  z-index: 1000;
  padding: 10px 16px;
  background: #fff;
  color: var(--blue-deep);
  transform: translateY(-160%);
}
.skip-link:focus { transform: none; }
.section-pad {
  width: var(--page);
  margin-inline: auto;
  padding-block: var(--section-space);
}
.section-kicker {
  margin: 0 0 8px;
  color: var(--cyan);
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: .08em;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: "Leon", "Leon Product", Arial, sans-serif;
  font-weight: 900;
  line-height: 1.02;
}
h2 {
  margin-bottom: 28px;
  color: var(--blue);
  font-size: clamp(2.5rem, 5.6vw, 5.3rem);
  letter-spacing: .006em;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-top: 20px;
  color: var(--cyan);
  font-size: .95rem;
  font-weight: 700;
}
.text-link span {
  display: grid;
  width: 34px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}
.text-link:hover span { transform: translateX(-5px) rotate(-7deg); background: transparent; color: var(--coral); }
.text-link.light:hover span { color: var(--yellow); }
.text-link.light { color: #fff; }
.coral-link { color: var(--coral); }

/* Header */
.site-header {
  position: fixed;
  inset: 8px 8px auto;
  z-index: 100;
  display: flex;
  direction: ltr;
  align-items: center;
  justify-content: space-between;
  height: clamp(64px, 4.48vw, 86px);
  padding-inline: clamp(26px, 2.66vw, 51px);
  color: #fff;
  transition: height .3s ease, background .3s ease, box-shadow .3s ease;
}
.site-header.scrolled {
  inset: 0 0 auto;
  height: 72px;
  background: rgba(20, 49, 127, .96);
  box-shadow: 0 8px 30px rgba(8, 29, 85, .18);
  backdrop-filter: blur(18px);
}
.brand { direction: ltr; display: inline-flex; align-items: center; }
.brand img { display: block; width: clamp(100px, 7.19vw, 138px); height: auto; }
.site-nav { display: flex; direction: rtl; gap: clamp(34px, 5vw, 96px); }
.site-nav a {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 4px;
  font-size: clamp(.83rem, 1.04vw, 1.11rem);
  font-weight: 600;
}
.site-nav a span { display: block; justify-self: center; line-height: 1.15; }
.site-nav a::after {
  content: none;
}
.mini-wave {
  width: clamp(62px, 4.4vw, 84px);
  height: 10px;
  object-fit: fill;
  display: block;
  opacity: .95;
  transition: transform .25s ease, opacity .25s ease;
}
.site-nav a:hover .mini-wave,
.site-nav a.active .mini-wave { opacity: 1; transform: translateY(-1px) scaleX(1.06); }
.menu-toggle { display: none; }

/* Hero */
.hero {
  position: relative;
  width: calc(100% - 16px);
  height: clamp(650px, 47.71vw, 916px);
  min-height: 650px;
  margin: 8px auto 0;
  overflow: hidden;
  color: #fff;
  background: var(--blue);
  border-radius: 23px;
}
.hero-word {
  position: absolute;
  z-index: 1;
  top: 18.23%;
  right: auto;
  left: 50%;
  width: 100%;
  direction: ltr;
  font-family: "Leon", "Leon Product", Arial, sans-serif;
  font-size: min(19.6vw, 376px);
  font-weight: 900;
  line-height: .735;
  letter-spacing: -.045em;
  text-align: center;
  white-space: nowrap;
  transform: translateX(-50%);
  user-select: none;
}
.hero-word span { display: block; color: rgba(77, 112, 202, .32); }
.hero-word span:nth-child(2) { color: rgba(77, 112, 202, .22); }
.hero-word span:nth-child(3) { color: rgba(77, 112, 202, .14); }
.hero-copy {
  position: absolute;
  z-index: 4;
  top: 38.65%;
  right: 13.96%;
  width: min(616px, 43vw);
}
.hero .eyebrow {
  margin: 0 0 -7px;
  color: var(--cyan);
  font-size: clamp(2rem, 2.5vw, 3rem);
  font-family: "Leon", "Leon Product", Arial, sans-serif;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: .012em;
}
.hero h1 {
  margin-bottom: 10px;
  font-size: clamp(4.25rem, 5vw, 6rem);
  line-height: .94;
  letter-spacing: .018em;
}
.hero-intro { max-width: 616px; margin-bottom: 18px; color: #fff; font-size: clamp(1rem, 1.05vw, 1.25rem); line-height: 1.35; }
.hero-copy .text-link { margin-top: 4px; font-size: clamp(.95rem, 1.05vw, 1.25rem); font-weight: 400; }
.hero-copy .text-link span { width: 39px; }
.hero-wave {
  position: absolute;
  z-index: 3;
  inset: auto 0 0;
  width: 100%;
  height: 28.7%;
  pointer-events: none;
}
.hero-wave path { fill: var(--paper); }
.hero-boat {
  --boat-x: 0px;
  --boat-y: 0px;
  --boat-r: 0deg;
  position: absolute;
  z-index: 5;
  bottom: 38px;
  left: clamp(75px, 8.5vw, 165px);
  width: clamp(280px, 29vw, 480px);
  transform: translate3d(var(--boat-x), var(--boat-y), 0) rotate(var(--boat-r));
  transform-origin: 50% 80%;
  transition: transform .3s cubic-bezier(.2,.75,.25,1);
  will-change: transform;
}
.hero-boat img { display: block; width: 100%; height: auto; filter: drop-shadow(0 24px 20px rgba(51, 13, 27, .2)); animation: boatFloat 5s ease-in-out infinite; transform-origin: 50% 80%; }
@keyframes boatFloat { 0%,100% { transform: translateY(0) rotate(-.65deg); } 50% { transform: translateY(-10px) rotate(.65deg); } }
.scroll-hint {
  position: absolute;
  z-index: 8;
  right: 50%;
  bottom: 36px;
  width: 24px;
  height: 42px;
  border: 1px solid rgba(30, 63, 146, .35);
  border-radius: 20px;
}
.scroll-hint span {
  position: absolute;
  top: 8px;
  right: 9px;
  width: 4px;
  height: 8px;
  border-radius: 4px;
  background: var(--blue);
  animation: scrollDot 1.8s infinite;
}
@keyframes scrollDot { 60%, 100% { transform: translateY(14px); opacity: 0; } }

/* About */
.about {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "art copy";
  align-items: center;
  gap: var(--content-gap);
  min-height: 780px;
  direction: ltr;
}
.about-waves { position: absolute; z-index: -1; top: 105px; left: calc((100vw - var(--page)) / -2); width: min(66vw, 940px); height: 520px; overflow: visible; }
.about-waves path:first-child { fill: var(--cyan-soft); }
.about-waves path:last-child { fill: #fff; }
.about-copy { grid-area: copy; max-width: 570px; direction: rtl; }
.about-copy h2 { margin-bottom: 20px; font-size: clamp(2.45rem, 3.5vw, 3.65rem); line-height: 1.06; }
.about-copy p { color: #3d5185; font-size: .98rem; line-height: 1.55; }
.about-copy blockquote {
  margin: 30px 0 0;
  padding-right: 20px;
  border-right: 4px solid var(--coral);
  color: var(--blue);
  font-size: 1.17rem;
  font-family: "Leon", "Leon Product", Arial, sans-serif;
  font-weight: 700;
}
.about-art { position: relative; grid-area: art; min-height: 520px; direction: ltr; }
.about-chest-image { position: absolute; top: 8px; left: 35px; width: min(470px, 42vw); height: auto; filter: drop-shadow(0 28px 30px rgba(13,70,96,.16)); }
.about-chest-red { position: absolute; z-index: 2; top: 278px; left: -18px; width: 235px; height: auto; filter: drop-shadow(0 24px 24px rgba(96,20,35,.18)); transform: rotate(-5deg); }
.floating-dots { position: absolute; top: 170px; right: -80px; width: 150px; height: 150px; background-image: radial-gradient(var(--yellow) 2px, transparent 2px); background-size: 18px 18px; opacity: .55; }

/* Work cards */
.featured { padding-top: var(--section-space-large); padding-bottom: var(--section-space-large); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: clamp(56px, 6vw, 84px); }
.section-heading h2 { margin-bottom: 0; font-size: clamp(2.4rem, 4.4vw, 4.5rem); }
.section-heading.centered { display: block; text-align: center; }
.project-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(64px, 7vw, 96px) clamp(30px, 4vw, 52px); }
.project-card {
  display: block;
  min-width: 0;
  padding: 0;
  text-align: right;
  background: none;
  border: 0;
  cursor: pointer;
  perspective: 1100px;
}
.project-visual {
  position: relative;
  aspect-ratio: 1.45;
  overflow: hidden;
  background-color: #e8ecf6;
  border-radius: 25px 25px 72px 25px;
  box-shadow: var(--shadow);
  transform: rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transform-style: preserve-3d;
  transition: transform .28s cubic-bezier(.2,.8,.2,1), box-shadow .45s ease;
}
.featured-grid .project-visual { border-radius: 24px; filter: drop-shadow(0 17px 24px rgba(19,46,116,.14)); box-shadow: none; -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 650' preserveAspectRatio='none'%3E%3Cpath fill='white' d='M0 0H1000V568C906 624 815 534 708 572C588 616 493 521 372 570C247 620 126 550 0 586Z'/%3E%3C/svg%3E") center/100% 100% no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 650' preserveAspectRatio='none'%3E%3Cpath fill='white' d='M0 0H1000V568C906 624 815 534 708 572C588 616 493 521 372 570C247 620 126 550 0 586Z'/%3E%3C/svg%3E") center/100% 100% no-repeat; }
.featured-grid .project-card:nth-child(even) .project-visual { border-radius: 24px; }
.featured-grid .project-meta { position: relative; }
.featured-grid .project-card-dolphin .project-visual { background: #3dbdaf; }
.featured-grid .project-card-dolphin .project-visual > img { object-position: center 38%; }
.project-visual > img { display: block; width: 100%; height: 100%; object-fit: cover; transform: translate3d(var(--image-x, 0), var(--image-y, 0), 0) scale(1.01); transition: transform .45s cubic-bezier(.2,.8,.2,1); }
.project-card:hover .project-visual > img { transform: translate3d(var(--image-x, 0), var(--image-y, 0), 0) scale(1.055); }
.project-card:nth-child(even) .project-visual { border-radius: 25px 25px 25px 72px; }
.project-card:hover .project-visual { transform: translateY(-8px) scale(1.012) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)); box-shadow: 0 28px 60px rgba(19, 46, 116, .18); }
.project-card-dolphin { position: relative; }
.project-dolphin { position: absolute; z-index: 3; left: -58px; bottom: 22px; width: 170px; height: auto; pointer-events: none; filter: drop-shadow(0 16px 15px rgba(14,82,102,.16)); transform: rotate(-8deg); transition: transform .45s cubic-bezier(.2,.8,.2,1); }
.project-card-dolphin:hover .project-dolphin { transform: translate(-8px,-7px) rotate(-3deg); }
.project-meta { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; padding: 20px 8px 0; }
.project-meta strong { color: var(--blue); font-family: "Leon", "Leon Product", Arial, sans-serif; font-size: 1.35rem; font-weight: 700; }
.project-meta span { color: var(--muted); font-size: .87rem; }
.featured-grid .project-entry { display: inline-flex; align-items: center; gap: 9px; color: var(--blue); }
.featured-grid .project-entry::before { content: "←"; display: grid; width: 31px; aspect-ratio: 1; place-items: center; border: 1px solid currentColor; border-radius: 50%; transition: transform .25s ease, color .25s ease; }
.featured-grid .project-card:hover .project-entry::before { color: var(--coral); transform: translateX(-4px) rotate(-7deg); }

/* Process */
.process { position: relative; z-index: 0; isolation: isolate; width: min(1000px, calc(100vw - 64px)); min-height: 1280px; padding-top: 60px; padding-bottom: 90px; }
.process .section-heading h2 { font-size: clamp(2.7rem, 3.6vw, 3.6rem); line-height: 1.08; letter-spacing: .012em; }
.route-line { position: absolute; z-index: -1; top: 163px; bottom: 262px; right: 50%; width: 2px; overflow: hidden; background: var(--blue); }
.route-line span { display: block; width: 100%; height: var(--route-progress, 0%); background: var(--yellow); transition: height .1s linear; }
.process-list { display: grid; gap: 100px; padding: 65px 0 0; margin: 0; list-style: none; }
.process-step { position: relative; display: grid; grid-template-columns: 1fr 110px 1fr; align-items: start; min-height: 282px; }
.process-step::before { content: ""; position: absolute; z-index: -2; top: 78px; right: 50%; width: calc(50% + (100vw - 100%) / 2); height: 170px; background: var(--cyan-soft); border-radius: 44% 56% 53% 47% / 34% 52% 48% 66%; transform: rotate(1deg); }
.process-step.reverse::before { right: auto; left: 50%; transform: rotate(-1deg); }
.process-step article { position: relative; grid-column: 1; justify-self: start; width: min(330px, 100%); min-height: 282px; padding: 31px 36px 58px; color: #fff; background: var(--blue); border-radius: 14px; box-shadow: var(--shadow); text-align: center; }
.process-step.reverse article { grid-column: 3; justify-self: end; }
.step-index { display: block; margin-bottom: -2px; color: var(--yellow); font-family: "Leon", "Leon Product", Arial, sans-serif; font-size: 1.22rem; font-weight: 900; line-height: 1; text-align: right; }
.process-step h3 { margin-bottom: 14px; color: var(--yellow); font-size: 1.36rem; line-height: 1.1; text-align: right; }
.process-step:nth-child(2) h3 { color: var(--cyan); }
.process-step:nth-child(3) h3 { color: var(--coral); }
.process-step:nth-child(2) .step-index { color: var(--cyan); }
.process-step:nth-child(3) .step-index { color: var(--coral); }
.process-step article p { margin: 0; color: rgba(255,255,255,.9); font-size: .93rem; line-height: 1.45; }
.step-wave { position: absolute; right: 50%; bottom: 35px; width: 110px; height: 8px; color: var(--yellow); background: radial-gradient(ellipse at center, currentColor 0 28%, transparent 32%) 0 0 / 18px 8px repeat-x; transform: translateX(50%); }
.process-step:nth-child(2) .step-wave { color: var(--cyan); }
.process-step:nth-child(3) .step-wave { color: var(--coral); }
.step-number { grid-column: 2; grid-row: 1; z-index: 3; display: grid; width: 92px; aspect-ratio: 1; justify-self: center; place-items: center; color: var(--yellow); background: var(--blue); border-radius: 50%; font-family: "Leon", Arial, sans-serif; font-size: 2.8rem; font-weight: 900; line-height: 1; }
.process-step:nth-child(2) .step-number { color: var(--cyan); }
.process-step:nth-child(3) .step-number { color: var(--coral); }
.step-art { grid-column: 3; grid-row: 1; justify-self: center; max-height: 282px; object-fit: contain; filter: drop-shadow(0 20px 18px rgba(23,55,127,.16)); }
.reverse .step-art { grid-column: 1; }
.step-lighthouse { width: 165px; }
.step-binoculars { width: 270px; margin-top: 18px; transform: rotate(-7deg); }
.step-compass { width: 225px; margin-top: 6px; transform: rotate(7deg); }

/* Inspiration */
.inspiration { padding-top: var(--section-space); }
.inspiration-card { position: relative; display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; min-height: 390px; padding: 58px 8vw; overflow: hidden; color: #fff; background: var(--blue); border-radius: var(--radius); }
.inspiration-card h2 { color: #fff; margin-bottom: 16px; font-size: clamp(2.8rem, 4.5vw, 4.5rem); }
.inspiration-card p:not(.section-kicker) { max-width: 530px; color: rgba(255,255,255,.78); }
.beam { position: absolute; z-index: 0; top: -80px; right: -80px; width: 52%; height: 120%; background: linear-gradient(115deg, rgba(255,213,30,.34), transparent 70%); clip-path: polygon(0 42%, 100% 0, 100% 100%); animation: beamMove 5s ease-in-out infinite alternate; }
@keyframes beamMove { to { transform: rotate(4deg); transform-origin: 100% 50%; } }
.inspiration-lighthouse { position: relative; z-index: 2; width: 145px; max-height: 270px; justify-self: center; object-fit: contain; filter: drop-shadow(0 22px 20px rgba(92,59,0,.22)); }

/* Lighthouse initiative */
.lighthouse-page { background: #fff; }
.lighthouse-hero { position: relative; min-height: clamp(610px, 48vw, 760px); overflow: hidden; color: #fff; background: var(--blue); }
.lighthouse-hero-copy { position: relative; z-index: 3; width: min(1180px, calc(100% - 48px)); margin-inline: auto; padding-top: clamp(180px, 16vw, 245px); }
.lighthouse-hero-copy h1 { margin: 0 0 14px; color: #fff; font-size: clamp(5rem, 12vw, 10.5rem); line-height: .82; }
.lighthouse-hero-copy > p:not(.section-kicker) { max-width: 600px; margin-bottom: 30px; color: rgba(255,255,255,.82); font-size: clamp(1.06rem, 1.5vw, 1.28rem); }
.lighthouse-hero-art { position: absolute; z-index: 2; left: clamp(7%, 11vw, 15%); bottom: 8%; width: clamp(145px, 17vw, 255px); filter: drop-shadow(0 30px 32px rgba(7,24,74,.3)); }
.lighthouse-beam { position: absolute; left: 5%; bottom: 25%; width: 58vw; height: 42vw; opacity: .13; background: linear-gradient(100deg, transparent 8%, var(--yellow) 48%, transparent 83%); clip-path: polygon(0 42%, 100% 0, 100% 100%); transform: rotate(-3deg); animation: beam-sweep 8s ease-in-out infinite alternate; }
.lighthouse-hero-wave { position: absolute; z-index: 1; right: 0; bottom: -1px; width: 100%; height: 25%; fill: #fff; }
.lighthouse-story { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(60px, 9vw, 140px); align-items: start; padding-top: clamp(90px, 10vw, 150px); padding-bottom: clamp(90px, 10vw, 150px); }
.lighthouse-story-copy { position: sticky; top: 145px; }
.lighthouse-story-copy h2 { font-size: clamp(3.2rem, 5.6vw, 5.8rem); line-height: .92; }
.lighthouse-story-text { max-width: 690px; padding-top: 12px; font-size: clamp(1.04rem, 1.35vw, 1.2rem); line-height: 1.85; }
.lighthouse-story-text p + p { margin-top: 20px; }
.lighthouse-story-text strong { color: var(--blue); font-size: 1.12em; }
.lighthouse-gallery { position: relative; padding-top: 110px; padding-bottom: 130px; background: #fff; }
.lighthouse-gallery::before { content: ""; position: absolute; inset: -45px 0 auto; height: 95px; background: #fff; border-radius: 52% 48% 0 0 / 100% 100% 0 0; }
.lighthouse-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(22px, 2.6vw, 38px); margin-top: 62px; perspective: 1200px; }
.lighthouse-piece { position: relative; margin: 0; overflow: hidden; background: #fff; border: 12px solid #fff; border-radius: 26px 26px 74px 26px; box-shadow: 0 24px 60px rgba(23,55,145,.12); transform: rotateX(var(--light-rx, 0deg)) rotateY(var(--light-ry, 0deg)); transition: transform .28s ease, box-shadow .28s ease; }
.lighthouse-piece:nth-child(even) { border-radius: 26px 26px 26px 74px; }
.lighthouse-piece:hover { box-shadow: 0 32px 75px rgba(23,55,145,.19); }
.lighthouse-piece img { display: block; width: 100%; aspect-ratio: 4 / 5; object-fit: contain; background: #fff; transform: translate(var(--light-x, 0), var(--light-y, 0)) scale(1.015); transition: transform .3s ease; }
.lighthouse-rights { display: flex; max-width: 900px; margin: 72px auto 0; padding: 22px 28px; align-items: center; justify-content: center; gap: 15px 28px; color: var(--blue); background: rgba(255,255,255,.78); border: 1px solid rgba(29,55,148,.12); border-radius: 20px 20px 52px 20px; text-align: center; }
.lighthouse-rights strong { flex: 0 0 auto; }
.lighthouse-rights span { color: var(--muted); }
.lighthouse-join { padding-top: 105px; padding-bottom: 120px; }
.lighthouse-join-card { position: relative; display: grid; grid-template-columns: .6fr 1.4fr; min-height: 390px; align-items: center; padding: 60px 9vw; overflow: hidden; color: #fff; background: var(--blue); border-radius: 34px 34px 100px 34px; }
.lighthouse-join-card::after { content: ""; position: absolute; inset: auto -5% -48% 30%; height: 70%; opacity: .12; background: var(--cyan); border-radius: 50% 50% 0 0; }
.lighthouse-join-card img { position: relative; z-index: 2; width: clamp(110px, 13vw, 185px); justify-self: center; filter: drop-shadow(0 24px 22px rgba(5,25,78,.3)); }
.lighthouse-join-card > div { position: relative; z-index: 2; }
.lighthouse-join-card h2 { color: #fff; font-size: clamp(3rem, 5vw, 5.2rem); }
.lighthouse-join-card p:not(.section-kicker) { color: rgba(255,255,255,.8); }
@keyframes beam-sweep { from { transform: rotate(-5deg) translateY(-1%); } to { transform: rotate(2deg) translateY(2%); } }
.pill-button { display: inline-flex; align-items: center; gap: 24px; margin-top: 18px; padding: 14px 23px; color: var(--blue); background: var(--yellow); border-radius: 99px; font-weight: 800; transition: transform .25s ease, box-shadow .25s ease; }
.pill-button:hover { transform: translateY(-3px); box-shadow: 0 12px 24px rgba(0,0,0,.13); }

/* Contact */
.contact { position: relative; display: grid; grid-template-columns: minmax(360px, .9fr) minmax(480px, 1.1fr); grid-template-areas: "art copy"; gap: clamp(50px, 7vw, 110px); direction: ltr; width: calc(100% - 20px); max-width: none; min-height: 790px; margin-bottom: 10px; padding: 190px max(6vw, calc((100vw - 1180px) / 2)) 65px; overflow: hidden; color: #fff; background: transparent; border-radius: var(--radius); }
.contact-background { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; pointer-events: none; }
.contact-back-wave { fill: var(--cyan-soft); }
.contact-blue-wave { fill: var(--blue); }
.contact h2 { margin-bottom: 0; color: #fff; font-size: clamp(4.5rem, 7.6vw, 7.2rem); line-height: .96; letter-spacing: .015em; }
.contact .section-kicker { margin-bottom: 6px; font-size: clamp(1.25rem, 2.1vw, 1.8rem); line-height: 1.2; letter-spacing: .018em; }
.contact-copy { position: relative; z-index: 4; grid-area: copy; grid-column: 2; grid-row: 1; align-self: start; justify-self: end; width: 100%; max-width: 560px; padding-top: 10px; direction: rtl; }
.yellow-text { color: var(--yellow); }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 28px; margin-top: 70px; direction: rtl; }
.form-honeypot { position: absolute; width: 1px; height: 1px; overflow: hidden; opacity: 0; pointer-events: none; }
.contact-form label { display: grid; gap: 5px; color: rgba(255,255,255,.82); font-size: .9rem; }
.contact-form .wide { grid-column: 1 / -1; }
.contact-form input, .contact-form textarea { width: 100%; padding: 6px 2px 10px; color: #fff; background: transparent; border: 0; border-bottom: 1px solid rgba(255,255,255,.52); border-radius: 0; outline: 0; resize: vertical; transition: border .2s ease; }
.contact-form .ltr-field { direction: ltr; text-align: left; unicode-bidi: plaintext; }
.contact-form input:-webkit-autofill, .contact-form input:-webkit-autofill:hover, .contact-form input:-webkit-autofill:focus { -webkit-text-fill-color: #fff; caret-color: #fff; box-shadow: 0 0 0 1000px var(--blue) inset; transition: background-color 9999s ease-out; }
.contact-sink, .form-honeypot { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; opacity: 0 !important; pointer-events: none !important; }
.contact-form textarea { min-height: 115px; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--yellow); border-bottom-width: 2px; }
.submit-button { grid-column: 1 / -1; justify-self: end; display: inline-flex; align-items: center; gap: 14px; padding: 10px 0; color: var(--yellow); background: none; border: 0; cursor: pointer; font-weight: 800; }
.submit-button span { display: grid; width: 34px; aspect-ratio: 1; place-items: center; border: 1px solid; border-radius: 50%; }
.form-status { align-self: center; margin: 0; color: #bdf4ef; font-size: .86rem; }
.contact-art { position: absolute; z-index: 3; left: 0; bottom: 18px; width: 60vw; height: 570px; overflow: visible; direction: ltr; isolation: isolate; pointer-events: none; }
.anchor { position: absolute; z-index: 3; top: 16px; left: clamp(100px, 9vw, 190px); width: clamp(330px, 27vw, 470px); height: 500px; object-fit: contain; filter: drop-shadow(0 25px 22px rgba(107,70,0,.22)); }
.contact-lines { position: absolute; z-index: 1; left: clamp(-95px, -4vw, -55px); bottom: 82px; width: min(900px, 52vw); height: auto; opacity: 1; clip-path: none; -webkit-mask-image: none; mask-image: none; }
.contact-details { position: absolute; z-index: 4; bottom: 55px; left: 44px; display: flex; align-items: center; gap: 6px; direction: ltr; color: #fff; font-size: .95rem; }
.contact-details a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.contact-whatsapp { display: grid; width: 30px; aspect-ratio: 1; margin-right: 2px; place-items: center; color: #fff; background: #25d366; border-radius: 50%; }
.contact-details .contact-whatsapp { text-decoration: none; transition: transform .2s ease, box-shadow .2s ease; }
.contact-details .contact-whatsapp:hover { transform: translateY(-2px) scale(1.06); box-shadow: 0 8px 18px rgba(0,0,0,.18); }
.contact-whatsapp svg { width: 20px; height: 20px; fill: currentColor; }
.contact-whatsapp { animation: whatsappBreathe 3.8s ease-in-out infinite; }
@keyframes whatsappBreathe { 0%, 72%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37,211,102,0); } 82% { transform: scale(1.06); box-shadow: 0 0 0 7px rgba(37,211,102,.13); } }
.submit-button:disabled { opacity: .58; cursor: wait; }
.submit-button:not(:disabled):hover span { transform: translateX(-4px); }
.submit-button span { transition: transform .25s ease; }
.origami-interactive { --paper-rotate: 0deg; --paper-scale: 1; rotate: var(--paper-rotate); scale: var(--paper-scale); animation: origamiFloat 5.8s ease-in-out var(--paper-delay, 0s) infinite; transition: rotate .35s cubic-bezier(.2,.8,.2,1), scale .35s cubic-bezier(.2,.8,.2,1), filter .35s ease; will-change: translate, rotate, scale; }
.origami-interactive:hover { filter: drop-shadow(0 25px 25px rgba(16,47,120,.2)) saturate(1.04); }
@keyframes origamiFloat { 0%,100% { translate: 0 0; } 50% { translate: 0 -9px; } }
.contact-divider { opacity: .72; }

/* Footer */
.footer { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 28px; width: var(--page); margin-inline: auto; padding: 35px 0 45px; color: var(--muted); font-size: .82rem; }
.footer p { margin: 0; text-align: center; }
.footer-brand img { width: 108px; }
.footer-links { display: flex; justify-content: end; gap: 16px; direction: ltr; }
.footer-links a:hover { color: var(--blue); }

/* Gallery */
.gallery-page { background: #fff; }
.gallery-hero { position: relative; width: calc(100% - 16px); height: clamp(560px, 42.5vw, 720px); min-height: 560px; margin: 8px auto 0; overflow: hidden; color: #fff; background: var(--blue); border-radius: 23px; }
.gallery-word { position: absolute; z-index: 1; top: 3.5%; left: 50%; width: 100%; direction: ltr; color: rgba(81,112,198,.3); font-family: "Leon", "Leon Product", Arial, sans-serif; font-size: min(17.4vw, 334px); font-weight: 900; line-height: .72; letter-spacing: -.045em; text-align: center; white-space: nowrap; transform: translateX(-50%); user-select: none; }
.gallery-word span { display: block; color: rgba(77,112,202,.32); }
.gallery-word span:nth-child(2) { color: rgba(81,112,198,.21); }
.gallery-word span:nth-child(3) { color: rgba(81,112,198,.12); }
.gallery-hero-copy { position: absolute; z-index: 4; top: 33%; right: 13.8%; width: min(500px, 38vw); text-align: right; }
.gallery-hero h1 { margin: 0; font-size: clamp(4rem, 5.35vw, 6.4rem); line-height: .9; letter-spacing: .018em; }
.gallery-wave { position: absolute; z-index: 3; inset: auto 0 0; width: 100%; height: 25.5%; pointer-events: none; }
.gallery-wave path { fill: #fff; }
.gallery-lookout { position: absolute; z-index: 5; bottom: 1.5%; left: clamp(60px, 7vw, 135px); width: clamp(330px, 34vw, 590px); pointer-events: none; }
.gallery-lookout img { position: relative; display: block; width: 100%; height: auto; filter: drop-shadow(0 24px 24px rgba(4,25,74,.24)); animation: lookoutFloat 5.5s ease-in-out infinite; }
@keyframes lookoutFloat { 50% { transform: translateY(-10px) rotate(.8deg); } }
.gallery-content { padding-top: clamp(95px, 9vw, 145px); }
.gallery-heading { max-width: 730px; margin: 0 auto 42px; text-align: center; }
.gallery-heading h2 { margin-bottom: 13px; font-size: clamp(2.7rem, 4.5vw, 4.9rem); }
.gallery-heading > p:last-child { margin: 0; color: var(--muted); }
.filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 11px; margin-bottom: 55px; }
.filter-pill { padding: 10px 25px; color: var(--blue); background: #f1f5fa; border: 1px solid transparent; border-radius: 99px; cursor: pointer; transition: .25s ease; }
.filter-pill:hover, .filter-pill.active { color: #fff; background: var(--blue); transform: translateY(-2px); }
.gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(56px, 5.5vw, 78px) clamp(22px, 2.5vw, 36px); }
.gallery-card { transition: opacity .45s ease var(--reveal-delay, 0ms), transform .45s cubic-bezier(.2,.8,.2,1) var(--reveal-delay, 0ms); }
.gallery-card.filtered-out { display: none; }
.gallery-card .project-visual { aspect-ratio: 1.22; border-radius: 22px 22px 62px 22px; }
.gallery-card:nth-child(even) .project-visual { border-radius: 22px 22px 22px 62px; }
.gallery-card .project-meta { display: grid; gap: 4px; padding-top: 17px; }
.gallery-card .project-meta strong { overflow: hidden; font-size: clamp(1.16rem, 1.45vw, 1.45rem); line-height: 1.18; text-overflow: ellipsis; white-space: nowrap; }
.gallery-card .project-meta span { grid-row: 2; }
.project-visual-fallback > img { padding: 18%; object-fit: contain; background: var(--cyan-soft); }
.view-project { position: absolute; z-index: 1; inset: 0; display: flex; align-items: center; justify-content: center; gap: 12px; color: #fff; background: rgba(15,42,111,.76); opacity: 0; font-weight: 800; transition: opacity .3s ease; }
.view-project::after { content: "←"; display: grid; width: 44px; aspect-ratio: 1; place-items: center; border: 1px solid; border-radius: 50%; }
.gallery-card:hover .view-project { opacity: 1; }
.gallery-loading, .gallery-error { grid-column: 1 / -1; margin: 20px 0; color: var(--muted); text-align: center; }
.gallery-error { padding: 35px; color: var(--coral); background: #fff2ef; border-radius: 18px; }
.gallery-cta { width: 100%; max-width: none; padding: clamp(70px, 8vw, 110px) max(24px, calc((100vw - 1180px) / 2)) clamp(105px, 10vw, 145px); }
.gallery-cta-inner {
  position: relative;
  display: grid;
  min-height: 310px;
  padding: 66px clamp(32px, 9vw, 140px) 82px;
  overflow: visible;
  place-content: center;
  justify-items: center;
  color: #fff;
  background: linear-gradient(135deg, #203f9d 0%, var(--blue) 58%, #17337f 100%);
  border-radius: 34px 34px 110px 34px;
  box-shadow: 0 24px 60px rgba(23,55,145,.14);
  text-align: center;
}
.gallery-cta-inner::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -32px 8% auto;
  height: 82px;
  background: var(--cyan-soft);
  border-radius: 48% 52% 45% 55% / 62% 45% 55% 38%;
  transform: rotate(-1deg);
}
.cta-compass {
  position: absolute;
  z-index: 2;
  left: clamp(28px, 6vw, 90px);
  bottom: 0;
  width: clamp(135px, 14vw, 205px);
  transform: translateY(42%) rotate(-5deg);
  filter: drop-shadow(0 18px 24px rgba(5,25,78,.25));
}
.project-cta { padding-top: clamp(80px, 9vw, 120px); padding-bottom: clamp(105px, 10vw, 145px); }
.project-cta .gallery-cta-inner { max-width: 1240px; margin-inline: auto; }
.project-cta .gallery-cta-inner h2 { max-width: 820px; }
.gallery-cta-inner p { margin-bottom: 5px; color: var(--cyan); font-weight: 800; }
.gallery-cta-inner h2 { color: #fff; font-size: clamp(2.6rem,5vw,5rem); }

/* Project detail */
.project-page { background: #fff; }
.project-detail-hero {
  position: relative;
  width: calc(100% - 16px);
  min-height: clamp(520px, 39vw, 690px);
  margin: 8px auto 0;
  overflow: hidden;
  color: #fff;
  background: var(--blue);
  border-radius: 23px;
}
.project-detail-word {
  position: absolute;
  inset: 10% 0 auto;
  direction: ltr;
  color: rgba(81,112,198,.26);
  font-family: "Leon", "Leon Product", Arial, sans-serif;
  font-size: min(15vw, 270px);
  font-weight: 900;
  line-height: .72;
  letter-spacing: -.035em;
  text-align: center;
  white-space: nowrap;
  user-select: none;
}
.project-detail-word span { display: block; }
.project-detail-word span:nth-child(2) { color: rgba(81,112,198,.17); }
.project-detail-word span:nth-child(3) { color: rgba(81,112,198,.09); }
.project-detail-copy {
  position: relative;
  z-index: 3;
  width: min(980px, calc(100% - 64px));
  margin-inline: auto;
  padding-top: clamp(145px, 12vw, 210px);
  text-align: center;
}
.project-detail-copy .section-kicker { margin-bottom: 12px; color: var(--cyan); font-size: 1rem; }
.project-detail-copy h1 {
  max-width: 980px;
  margin: 0 auto 18px;
  color: #fff;
  font-size: clamp(3rem, 5.3vw, 6rem);
  line-height: .98;
  letter-spacing: .012em;
}
.project-detail-count { color: rgba(255,255,255,.78); }
.project-back-link {
  position: absolute;
  top: 108px;
  right: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: .9rem;
}
.project-back-link span { display: grid; width: 32px; aspect-ratio: 1; place-items: center; border: 1px solid; border-radius: 50%; }
.project-detail-wave { position: absolute; z-index: 2; inset: auto 0 0; width: 100%; height: 22%; }
.project-detail-wave path { fill: #fff; }
.project-story-section {
  display: grid;
  grid-template-columns: minmax(320px, .82fr) minmax(480px, 1.18fr);
  align-items: center;
  gap: clamp(52px, 8vw, 120px);
  padding-top: clamp(90px, 8vw, 130px);
  padding-bottom: clamp(100px, 10vw, 170px);
}
.project-story-copy { max-width: 520px; }
.project-story-copy h2 { margin-bottom: 30px; font-size: clamp(2.65rem, 4.6vw, 4.9rem); }
.project-story-text { color: #405584; font-size: 1.05rem; line-height: 1.56; }
.project-story-text p { margin: 0 0 .78em; }
.project-story-block + .project-story-block { margin-top: 34px; padding-top: 32px; border-top: 1px solid rgba(29,55,148,.14); }
.project-story-block h3 {
  position: relative;
  margin: 0 0 22px;
  padding-top: 14px;
  color: var(--blue);
  font-family: "Leon", "Leon Product", Arial, sans-serif;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.15;
}
.project-story-block h3::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 74px;
  height: 7px;
  background: url("assets/brand/nav-wave-cyan.svg") center / 100% 100% no-repeat;
}
.project-story-text .story-emphasis { color: var(--blue); font-weight: 700; }
.project-story-section.is-single-project { align-items: start; }
.project-story-section.is-single-project .project-cover-frame { position: sticky; top: 118px; }
.project-cover-frame {
  position: relative;
  margin: 0;
  padding: clamp(14px, 1.8vw, 24px);
  overflow: hidden;
  background: #eef3f9;
  border-radius: 28px 28px 92px 28px;
  box-shadow: 0 26px 70px rgba(17,48,121,.16);
}
.project-cover-frame::after { content: ""; position: absolute; inset: auto 24px 15px auto; width: 90px; height: 7px; background: url("assets/brand/nav-wave-cyan.svg") center / 100% 100% no-repeat; }
.project-cover-frame img { display: block; width: 100%; max-height: 760px; object-fit: contain; border-radius: 18px 18px 70px 18px; transition: transform .7s cubic-bezier(.2,.8,.2,1); }
.project-cover-frame:hover img { transform: scale(1.012); }
.project-showcase { padding-top: 0; }
.project-media-grid { columns: 2; column-gap: clamp(22px, 3vw, 38px); }
.project-media-grid.is-single { max-width: 900px; margin-inline: auto; columns: 1; }
.project-media-grid.is-pair { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 1180px; margin-inline: auto; column-gap: clamp(22px, 3vw, 38px); }
.project-media-grid.is-pair .project-media-item { display: block; margin-bottom: 0; }
.project-media-grid.is-single .project-media-item { display: block; }
.project-media-item {
  display: inline-block;
  width: 100%;
  margin: 0 0 clamp(22px, 3vw, 38px);
  padding: clamp(10px, 1.2vw, 17px);
  overflow: hidden;
  break-inside: avoid;
  background: #edf2f8;
  border-radius: 22px 22px 58px 22px;
  box-shadow: 0 16px 45px rgba(17,48,121,.11);
  transition: transform .42s cubic-bezier(.2,.8,.2,1), box-shadow .42s ease;
}
.project-media-item:hover { transform: translateY(-6px); box-shadow: 0 24px 58px rgba(17,48,121,.16); }
.project-media-item:nth-child(even) { border-radius: 22px 22px 22px 58px; }
.project-media-item img, .project-media-item video { display: block; width: 100%; height: auto; max-height: 1000px; object-fit: contain; border-radius: 14px; transition: transform .55s cubic-bezier(.2,.8,.2,1); }
.project-media-item:hover img { transform: scale(1.012); }
.project-media-crop-mockup-grid {
  position: relative;
  aspect-ratio: 1.32;
  padding: 0;
  overflow: hidden;
  background: var(--blue);
}
.project-media-crop-mockup-grid img {
  position: absolute;
  inset-inline: 0;
  top: -89%;
  width: 100%;
  max-height: none;
  border-radius: 0;
}
.project-media-video { padding: 16px; background: var(--blue-deep); }
.project-navigation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding-top: 52px;
  padding-bottom: 86px;
  border-top: 1px solid rgba(29,55,148,.15);
}
.project-nav-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  min-height: 105px;
  padding: 18px clamp(20px, 3vw, 42px);
  color: var(--blue);
  background: transparent;
  transition: color .25s ease, transform .25s ease;
}
.project-nav-card + .project-nav-card { border-right: 1px solid rgba(29,55,148,.15); }
.project-nav-copy { display: grid; gap: 5px; min-width: 0; }
.project-nav-copy small { color: var(--cyan); font-size: .8rem; font-weight: 700; }
.project-nav-card strong {
  overflow: hidden;
  font-family: "Leon", "Leon Product", Arial, sans-serif;
  font-size: clamp(1.22rem, 1.8vw, 1.7rem);
  line-height: 1.13;
  text-overflow: ellipsis;
}
.project-nav-arrow {
  display: grid;
  width: 45px;
  aspect-ratio: 1;
  place-items: center;
  color: var(--blue);
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: Arial, sans-serif;
  font-size: 1.15rem;
  transition: color .25s ease, background .25s ease, transform .25s ease;
}
.project-nav-next { grid-template-columns: minmax(0, 1fr) auto; text-align: left; }
.project-nav-next .project-nav-copy { grid-column: 1; grid-row: 1; }
.project-nav-next .project-nav-arrow { grid-column: 2; grid-row: 1; }
.project-nav-card:hover { color: #142c7d; transform: translateY(-2px); }
.project-nav-card:hover .project-nav-arrow { color: var(--coral); background: transparent; transform: translateX(-4px) rotate(-6deg); }
.project-error { padding-top: 180px; text-align: center; }
.project-error h1 { color: var(--blue); font-size: clamp(3rem, 6vw, 6rem); }

/* Modal */
.project-modal { width: min(1180px, calc(100vw - 32px)); max-height: min(820px, calc(100vh - 32px)); padding: 0; overflow: hidden auto; color: var(--ink); background: #fff; border: 0; border-radius: 28px; box-shadow: 0 30px 100px rgba(7,26,77,.35); }
.project-modal::backdrop { background: rgba(8,23,67,.74); backdrop-filter: blur(7px); }
.modal-close { position: absolute; z-index: 5; top: 14px; left: 14px; display: grid; width: 42px; aspect-ratio: 1; place-items: center; color: #fff; background: rgba(15,42,111,.78); border: 0; border-radius: 50%; cursor: pointer; font-size: 1.8rem; line-height: 1; }
.modal-layout { display: grid; grid-template-columns: 1.28fr .72fr; min-height: 620px; }
.modal-preview { position: relative; min-height: 520px; overflow: hidden; background: #e9eef7; }
.modal-slide-stage { position: absolute; inset: 0 0 58px; overflow: hidden; }
.modal-slide-stage::after { content: ""; position: absolute; inset: 0; pointer-events: none; box-shadow: inset 0 0 55px rgba(14,41,108,.08); }
.slide-image { display: block; width: 100%; height: 100%; padding: 22px; object-fit: contain; background: #eef2f8; }
.slide-video { display: block; width: 100%; height: 100%; padding: 22px; object-fit: contain; background: #101f4c; }
.slide-video[hidden], .slide-image[hidden] { display: none; }
.slider-arrow { position: absolute; z-index: 3; top: calc(50% - 29px); display: grid; width: 48px; aspect-ratio: 1; place-items: center; color: var(--blue); background: rgba(255,255,255,.94); border: 0; border-radius: 50%; box-shadow: 0 8px 24px rgba(8,30,86,.2); cursor: pointer; font-size: 1.35rem; transition: transform .25s ease, background .25s ease; }
.slider-arrow:hover { color: var(--coral); background: rgba(255,255,255,.94); transform: translateY(-2px) rotate(-5deg); }
.slider-prev { right: 18px; }
.slider-next { left: 18px; }
.slider-footer { position: absolute; z-index: 3; inset: auto 0 0; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; min-height: 58px; padding: 10px 20px; color: #fff; background: var(--blue); }
.slider-footer p { margin: 0; font-size: .88rem; }
.slider-dots { display: flex; gap: 8px; direction: ltr; }
.slider-dots button { width: 9px; height: 9px; padding: 0; background: rgba(255,255,255,.38); border: 0; border-radius: 50%; cursor: pointer; transition: width .25s ease, background .25s ease; }
.slider-dots button.active { width: 24px; background: var(--yellow); border-radius: 99px; }
.slider-counter { justify-self: end; direction: ltr; font-size: .78rem; opacity: .75; }
.single-slide .slider-arrow, .single-slide .slider-dots { display: none; }
.modal-copy { align-self: center; min-width: 0; padding: 55px 42px; }
.modal-copy h2 { margin-bottom: 13px; font-size: clamp(1.85rem,2.45vw,2.9rem); line-height: 1.14; letter-spacing: .012em; }
.modal-count { margin-bottom: 22px; color: var(--cyan); font-size: .84rem; font-weight: 700; }
.modal-story { max-height: 285px; padding-top: 20px; overflow: auto; color: var(--muted); border-top: 1px solid #dce3ef; font-size: .94rem; line-height: 1.62; white-space: pre-line; scrollbar-color: var(--cyan) #edf1f7; scrollbar-width: thin; }
.modal-story + .text-link { margin-top: 27px; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(35px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.8,.2,1); }
.reveal.visible { opacity: 1; transform: none; }
.project-grid .reveal:nth-child(2), .process-list .reveal:nth-child(2) { transition-delay: .1s; }
.project-grid .reveal:nth-child(3), .process-list .reveal:nth-child(3) { transition-delay: .18s; }
.project-grid .reveal:nth-child(4) { transition-delay: .26s; }

@media (max-width: 900px) {
  :root { --page: min(100% - 34px, 720px); --section-space: 92px; --section-space-large: 122px; }
  .site-header { height: 72px; padding-inline: 20px; }
  .brand img { width: 112px; }
  .menu-toggle { display: grid; width: 42px; height: 42px; padding: 10px; place-content: center; gap: 5px; color: #fff; background: transparent; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; }
  .menu-toggle > span:not(.sr-only) { display: block; width: 20px; height: 2px; background: currentColor; transition: transform .25s ease, opacity .25s ease; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .brand, .menu-toggle { position: relative; z-index: 2; }
  .menu-open .site-header { inset: 0; height: 100dvh; padding: 20px; align-items: flex-start; background: var(--blue-deep); border-radius: 0 0 30px 30px; backdrop-filter: none; }
  .site-nav { position: absolute; inset: 92px 20px 24px; z-index: 1; display: grid; align-content: start; justify-items: center; gap: 24px; padding-top: 28px; background: transparent; opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(-10px); transition: opacity .25s ease, transform .25s ease, visibility .25s ease; }
  .site-nav.open { opacity: 1; visibility: visible; pointer-events: auto; transform: none; }
  .site-nav a { width: min(100%, 320px); padding: 8px 20px; justify-items: center; font-size: 1.32rem; }
  .site-nav a span { justify-self: center; }
  .hero { width: calc(100% - 12px); height: 780px; min-height: 780px; margin-top: 6px; border-radius: 19px; }
  .hero-copy { top: 142px; right: 20px; width: calc(100% - 40px); margin-inline: auto; text-align: center; }
  .hero .eyebrow { margin-bottom: 0; }
  .hero h1 { font-size: clamp(3.8rem,15vw,6.7rem); letter-spacing: .022em; }
  .hero-intro { margin-inline: auto; }
  .hero-word { top: 190px; right: auto; left: 50%; font-size: clamp(8.8rem, 31vw, 14.5rem); line-height: .76; }
  .hero-boat { right: 50%; left: auto; bottom: 46px; width: min(400px, 84vw); transform: translateX(50%); }
  .hero-wave { height: 22%; }
  .scroll-hint { display: none; }
  .about { grid-template-columns: 1fr; gap: 30px; }
  .about { grid-template-areas: "copy" "art"; }
  .about-copy { order: -1; }
  .about-waves { top: auto; bottom: 0; left: -18px; width: calc(100% + 36px); height: 420px; }
  .about-art { min-height: 430px; }
  .about-chest-image { top: 0; left: 50%; width: min(430px, 78vw); transform: translateX(-50%); }
  .about-chest-red { top: 245px; left: 6%; width: 190px; }
  .project-grid { grid-template-columns: 1fr; gap: 64px; }
  .project-dolphin { left: -12px; bottom: 28px; width: 145px; }
  .section-heading { align-items: start; }
  .process { width: var(--page); min-height: 0; padding-top: 110px; padding-bottom: 110px; }
  .process .section-heading { text-align: center; }
  .process-list { gap: 62px; padding-top: 48px; }
  .route-line { right: 43px; top: 245px; bottom: 160px; }
  .process-step, .process-step.reverse { grid-template-columns: 86px 1fr; gap: 22px; min-height: auto; }
  .process-step::before, .process-step.reverse::before { display: none; }
  .step-number, .process-step.reverse .step-number { grid-column: 1; }
  .process-step article, .process-step.reverse article { grid-column: 2; grid-row: 1; justify-self: stretch; width: 100%; min-height: 282px; }
  .step-art, .reverse .step-art { display: none; }
  .inspiration-card { grid-template-columns: 1fr; gap: 35px; padding: 55px 9vw; text-align: center; }
  .inspiration-card p:not(.section-kicker) { margin-inline: auto; }
  .inspiration-lighthouse { width: 105px; max-height: 190px; }
  .lighthouse-hero { min-height: 680px; }
  .lighthouse-hero-copy { width: calc(100% - 36px); padding-top: 165px; text-align: center; }
  .lighthouse-hero-copy > p:not(.section-kicker) { margin-inline: auto; }
  .lighthouse-hero-art { left: 50%; bottom: 7%; width: 128px; transform: translateX(-50%); }
  .lighthouse-beam { left: -30%; bottom: 7%; width: 160%; height: 50%; }
  .lighthouse-story { grid-template-columns: 1fr; gap: 34px; }
  .lighthouse-story-copy { position: static; }
  .lighthouse-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; margin-top: 42px; }
  .lighthouse-piece { border-width: 8px; border-radius: 20px 20px 52px 20px; }
  .lighthouse-piece:nth-child(even) { border-radius: 20px 20px 20px 52px; }
  .lighthouse-rights { display: grid; margin-top: 48px; padding: 22px 20px; gap: 8px; }
  .lighthouse-join { padding-inline: 18px; }
  .lighthouse-join-card { grid-template-columns: 1fr; gap: 28px; padding: 48px 24px 58px; text-align: center; }
  .lighthouse-join-card img { width: 105px; }
  .contact { grid-template-columns: 1fr; grid-template-areas: "copy" "art"; gap: 28px; min-height: 1100px; padding: 160px 8vw 52px; }
  .contact-copy { grid-column: 1; grid-row: 1; justify-self: stretch; max-width: none; padding-top: 0; }
  .contact h2 { font-size: clamp(4.4rem, 14vw, 6.2rem); }
  .contact-form { margin-top: 48px; }
  .contact-art { display: block; left: 0; bottom: 18px; width: 100%; height: 390px; min-height: 0; }
  .anchor { top: 0; left: 50%; width: min(360px, 78vw); height: 380px; transform: translateX(-50%); }
  .contact-lines { bottom: 55px; left: -8vw; width: 110vw; opacity: .98; }
  .contact-details { bottom: 28px; left: 50%; font-size: .87rem; white-space: nowrap; transform: translateX(-50%); }
  .footer { grid-template-columns: 1fr; justify-items: center; }
  .footer-links { justify-content: center; flex-wrap: wrap; }
  .gallery-hero { width: calc(100% - 12px); height: 780px; min-height: 780px; margin-top: 6px; border-radius: 19px; }
  .gallery-hero-copy { top: 142px; right: 20px; width: calc(100% - 40px); text-align: center; }
  .gallery-hero .eyebrow { margin-bottom: 0; }
  .gallery-hero-copy > p:not(.eyebrow) { margin-inline: auto; }
  .gallery-word { top: 190px; font-size: clamp(7.5rem, 25vw, 12rem); line-height: .76; }
  .gallery-lookout { right: 50%; left: auto; bottom: 8px; width: min(390px, 78vw); transform: translateX(50%); }
  .gallery-wave { height: 22%; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .project-detail-hero { min-height: 620px; }
  .project-detail-copy { width: calc(100% - 40px); padding-top: 155px; }
  .project-detail-copy h1 { font-size: clamp(3rem, 9vw, 5rem); }
  .project-detail-word { top: 175px; font-size: 21vw; }
  .project-back-link { top: 90px; right: 0; }
  .project-story-section { grid-template-columns: 1fr; gap: 45px; }
  .project-story-copy { max-width: none; }
  .project-cover-frame { grid-row: 1; }
  .project-navigation { grid-template-columns: 1fr; }
  .project-nav-card + .project-nav-card { border-top: 1px solid rgba(29,55,148,.15); border-right: 0; }
  .modal-layout { grid-template-columns: 1fr; }
  .modal-preview { min-height: 390px; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .lighthouse-grid { grid-template-columns: 1fr; }
  h2 { font-size: clamp(2.35rem, 13vw, 3.5rem); }
  .section-heading { display: block; }
  .section-heading .text-link { margin-top: 22px; }
  .hero { height: 740px; min-height: 740px; }
  .hero-copy { top: 118px; }
  .hero-word { top: 150px; right: auto; left: 50%; font-size: 8.8rem; line-height: .78; }
  .hero-boat { bottom: 52px; }
  .hero-wave { height: 20%; }
  .about-art { min-height: 350px; transform: scale(.9); transform-origin: center top; }
  .project-dolphin { left: -5px; width: 118px; }
  .process { padding-top: 82px; padding-bottom: 82px; }
  .process .section-heading h2 { font-size: clamp(2.45rem, 13vw, 3.35rem); }
  .process-step article, .process-step.reverse article { padding: 29px 22px 56px; }
  .process-step article p { font-size: .88rem; }
  .step-number { width: 76px; font-size: 2.35rem; }
  .route-line { right: 37px; top: 205px; bottom: 135px; }
  .contact { width: calc(100% - 12px); min-height: 1160px; padding: 118px 24px 410px; border-radius: 22px; }
  .contact-copy { width: 100%; }
  .contact h2 { font-size: clamp(3rem, 15vw, 4.2rem); line-height: 1; }
  .contact-form { grid-template-columns: 1fr; }
  .contact-form .wide { grid-column: auto; }
  .contact-form input, .contact-form textarea { min-width: 0; }
  .contact-art { bottom: 42px; min-height: 300px; height: 320px; }
  .anchor { width: min(270px, 72vw); height: 290px; }
  .contact-lines { bottom: 18px; }
  .contact-details { bottom: 24px; width: calc(100% - 36px); justify-content: center; flex-wrap: wrap; row-gap: 2px; white-space: normal; }
  .gallery-hero { height: 720px; min-height: 720px; }
  .gallery-word { top: 166px; font-size: 7rem; line-height: .78; }
  .gallery-lookout { bottom: 4px; width: min(300px, 76vw); opacity: .96; }
  .gallery-hero-copy { top: 114px; width: calc(100% - 36px); }
  .gallery-hero h1 { font-size: clamp(3.6rem, 17vw, 5rem); }
  .gallery-hero-copy > p:not(.eyebrow) { max-width: 330px; }
  .gallery-hero-copy .text-link { justify-content: center; }
  .gallery-content { padding-top: 55px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .project-detail-hero { min-height: 560px; }
  .project-detail-copy { padding-top: 145px; }
  .project-detail-copy h1 { font-size: clamp(2.7rem, 13vw, 4.2rem); }
  .project-detail-word { top: 170px; font-size: 33vw; }
  .project-detail-wave { height: 16%; }
  .project-story-section { padding-top: 70px; padding-bottom: 95px; }
  .project-story-section.is-single-project .project-cover-frame { position: relative; top: auto; }
  .project-story-copy h2 { font-size: clamp(2.55rem, 13vw, 3.7rem); }
  .project-story-text { font-size: 1rem; line-height: 1.56; }
  .project-media-grid { columns: 1; }
  .project-media-grid.is-pair { display: grid; grid-template-columns: 1fr; }
  .gallery-cta { padding: 72px 18px 105px; }
  .gallery-cta-inner, .project-cta .gallery-cta-inner { min-height: 300px; padding: 56px 22px 82px; border-radius: 26px 26px 76px 26px; }
  .gallery-cta-inner::before { inset: -24px 8% auto; height: 62px; }
  .gallery-cta .cta-compass, .project-cta .cta-compass { left: 20px; bottom: 0; width: 125px; transform: translateY(48%) rotate(-5deg); }
  .project-cta { padding-top: 72px; padding-bottom: 105px; }
  .project-nav-card { min-height: 96px; padding: 20px 8px; }
  .filters { margin-bottom: 35px; }
  .filter-pill { padding-inline: 18px; }
  .modal-preview { min-height: 300px; }
  .modal-slide-stage { bottom: 54px; }
  .slider-arrow { top: calc(50% - 25px); width: 42px; }
  .slider-prev { right: 10px; }
  .slider-next { left: 10px; }
  .slider-footer { grid-template-columns: 1fr auto; min-height: 54px; padding-inline: 14px; }
  .slider-footer p { display: none; }
  .slider-counter { grid-column: 1; grid-row: 1; justify-self: start; }
  .slider-dots { grid-column: 2; }
  .modal-copy { padding: 38px 26px; }
  .project-modal { max-height: calc(100vh - 20px); }
  .footer-links { display: grid; text-align: center; }
}

.accessibility-main { width: min(900px, calc(100% - 34px)); margin: 0 auto; padding: 150px 0 90px; }
.accessibility-main h1 { margin-bottom: 30px; color: var(--blue); font-size: clamp(3rem, 7vw, 5.5rem); }
.accessibility-main h2 { margin-top: 42px; margin-bottom: 14px; color: var(--blue); font-size: clamp(1.7rem, 3vw, 2.5rem); }
.accessibility-main p, .accessibility-main li { font-size: 1.05rem; line-height: 1.8; }
.accessibility-main ul { padding-right: 24px; }
.accessibility-main a { color: var(--blue); text-decoration: underline; text-underline-offset: 4px; }

.accessibility-widget { position: fixed; bottom: 20px; left: 20px; z-index: 1000; direction: rtl; font-family: inherit; }
.accessibility-toggle { display: flex; align-items: center; gap: 8px; min-height: 48px; padding: 10px 16px; color: #fff; background: var(--blue-deep); border: 2px solid #fff; border-radius: 999px; box-shadow: 0 8px 28px rgba(15,31,92,.28); font: inherit; font-weight: 700; cursor: pointer; }
.accessibility-toggle { justify-content: center; width: 54px; height: 54px; min-height: 54px; padding: 9px; }
.accessibility-toggle svg { width: 34px; height: 34px; transform: translateX(2px); }
.accessibility-panel { position: absolute; bottom: 58px; left: 0; width: 230px; padding: 18px; color: #17234c; background: #fff; border: 2px solid var(--blue); border-radius: 18px; box-shadow: 0 14px 42px rgba(15,31,92,.24); }
.accessibility-panel[hidden] { display: none; }
.accessibility-panel strong { display: block; margin-bottom: 12px; font-size: 1.05rem; }
.accessibility-panel button, .accessibility-panel a { display: block; width: 100%; padding: 10px 8px; color: var(--blue); background: transparent; border: 0; border-bottom: 1px solid #dfe5f2; text-align: right; font: inherit; font-weight: 600; cursor: pointer; }
.accessibility-panel a { border-bottom: 0; text-decoration: underline; text-underline-offset: 3px; }
.accessibility-font { font-size: 120%; }
.accessibility-links a { text-decoration: underline !important; text-decoration-thickness: 2px !important; text-underline-offset: 4px !important; }
.accessibility-contrast body { color: #fff; background: #000; }
.accessibility-contrast .site-header, .accessibility-contrast .contact, .accessibility-contrast .gallery-cta-inner, .accessibility-contrast .accessibility-toggle { color: #fff; background: #000; }
.accessibility-contrast a, .accessibility-contrast button, .accessibility-contrast h1, .accessibility-contrast h2, .accessibility-contrast h3 { color: #ffeb3b !important; }
.accessibility-contrast .accessibility-panel { color: #fff; background: #000; border-color: #ffeb3b; }

@media (max-width: 620px) {
  .accessibility-widget { bottom: 12px; left: 12px; }
  .accessibility-toggle { width: 50px; height: 50px; min-height: 50px; padding: 8px; }
  .accessibility-panel { width: min(230px, calc(100vw - 24px)); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
