
:root {
  --ink: #031820;
  --ink-2: #072a35;
  --aqua: #19e2ea;
  --aqua-dark: #049ab1;
  --ice: #e8feff;
  --white: #fff;
  --muted: #9db8be;
  --line: rgba(255,255,255,.14);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--white);
  font-family: "Inter", sans-serif;
}

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

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

h1, h2, h3 {
  margin: 0;
  font-family: "Black Ops One", "Barlow Condensed", sans-serif;
  font-weight: 400;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 78px;
  padding: 0 clamp(20px, 5vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(3,24,32,.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand-badge {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--white);
  color: var(--ink);
  box-shadow: 5px 5px 0 var(--aqua);
  transform: skew(-7deg);
  font-family: "Black Ops One", sans-serif;
  font-size: 18px;
}

.brand-copy strong {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .08em;
}

.brand-copy small {
  display: block;
  margin-top: 2px;
  color: var(--aqua);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .25em;
}

.desktop-nav {
  display: flex;
  gap: 30px;
}

.desktop-nav a {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
}

.header-cta {
  padding: 11px 17px;
  border: 1px solid rgba(255,255,255,.5);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -3;
}

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

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(3,24,32,.96) 0%, rgba(3,24,32,.72) 42%, rgba(3,24,32,.12) 78%),
    linear-gradient(0deg, rgba(3,24,32,.95) 0%, transparent 50%);
}

.hero-content {
  width: min(760px, calc(100% - 40px));
  margin-left: clamp(20px, 7vw, 100px);
  padding: 150px 0 88px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--aqua);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .22em;
}

.hero h1 {
  font-size: clamp(54px, 8.5vw, 126px);
  line-height: .9;
}

.hero h1 span {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.85);
}

.hero p {
  max-width: 560px;
  margin: 24px 0 30px;
  color: #d4e6e9;
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  min-height: 52px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: .25s ease;
}

.btn-primary {
  background: var(--aqua);
  color: var(--ink);
}

.btn-secondary {
  border: 1px solid rgba(255,255,255,.5);
  background: rgba(3,24,32,.25);
}

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

.quick-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--ink-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.quick-info > div {
  padding: 28px clamp(20px, 5vw, 70px);
  border-right: 1px solid var(--line);
}

.quick-info > div:last-child {
  border-right: 0;
}

.quick-info span,
.contact-meta span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
}

.quick-info strong,
.contact-meta strong {
  font-size: 14px;
}

.section {
  padding: clamp(80px, 10vw, 130px) clamp(20px, 7vw, 100px);
}

.intro {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 8vw;
  align-items: end;
  background: var(--ice);
  color: var(--ink);
}

.section-heading h2 {
  font-size: clamp(52px, 7vw, 104px);
  line-height: .92;
}

.intro-copy {
  margin: 0;
  color: #38535b;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.5;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  background: rgba(255,255,255,.12);
}

.feature-card {
  min-height: 300px;
  padding: 58px 38px;
  background: var(--ink-2);
}

.feature-card > span {
  color: var(--aqua);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
}

.feature-card h3 {
  margin-top: 58px;
  font-size: clamp(28px, 3vw, 44px);
}

.feature-card p {
  max-width: 280px;
  color: var(--muted);
  line-height: 1.6;
}

.gallery {
  background: #f2feff;
  color: var(--ink);
}

.centered {
  text-align: center;
  margin-bottom: 54px;
}

.gallery-layout {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  grid-template-rows: auto auto;
  gap: 22px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  min-height: 420px;
  background: var(--ink-2);
  box-shadow: 0 22px 55px rgba(3,24,32,.15);
}

.gallery-main {
  grid-row: span 2;
  min-height: 862px;
}

.gallery-wide,
.gallery-info {
  min-height: 420px;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.gallery-card:hover img {
  transform: scale(1.035);
}

.gallery-card figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 12px 15px;
  background: rgba(3,24,32,.86);
  color: var(--white);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.cta-section {
  padding: 80px clamp(20px, 7vw, 100px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background:
    linear-gradient(90deg, rgba(3,24,32,.94), rgba(3,24,32,.45)),
    url("assets/meg-shark-smoke.jpeg") center / cover no-repeat;
}

.cta-section h2 {
  font-size: clamp(50px, 7vw, 96px);
}

.contact {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 7vw;
  background: var(--ice);
  color: var(--ink);
}

.contact-copy h2 {
  font-size: clamp(50px, 6vw, 88px);
  line-height: .95;
}

.contact-copy p {
  color: #486169;
  font-size: 18px;
}

.contact-options {
  display: grid;
  gap: 12px;
}

.contact-card {
  position: relative;
  min-height: 102px;
  padding: 20px 22px;
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 16px;
  background: var(--ink);
  color: var(--white);
  transition: .25s ease;
}

.contact-card:hover {
  transform: translateX(6px);
  background: var(--aqua-dark);
}

.contact-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  color: var(--aqua);
  font-family: "Black Ops One", sans-serif;
}

.contact-card small {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .15em;
}

.contact-card strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 22px;
}

.contact-card b {
  color: var(--aqua);
  font-size: 24px;
}

.contact-meta {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-top: 34px;
  border-top: 1px solid rgba(3,24,32,.15);
}

.notice {
  grid-column: 1 / -1;
  margin: 0;
  color: #546d74;
  font-size: 13px;
}

footer {
  padding: 34px clamp(20px, 5vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.footer-brand .brand-badge {
  width: 36px;
  height: 36px;
  font-size: 15px;
}

.mobile-bar {
  display: none;
}

.shark-transition {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  overflow: hidden;
  background: linear-gradient(#baf7ff 0 46%, #06b4d0 46% 100%);
}

.shark-transition.active {
  display: block;
  animation: fadeTransition 1.7s both;
}

.transition-sky {
  position: absolute;
  inset: 0 0 54%;
  background: linear-gradient(#d8fbff, #78dde9);
}

.transition-water {
  position: absolute;
  inset: 46% 0 0;
  background:
    linear-gradient(rgba(255,255,255,.28), transparent 12%),
    linear-gradient(#08bed6, #006b8a 55%, #00384d);
}

.jumping-shark {
  position: absolute;
  left: 50%;
  top: 57%;
  width: min(500px, 82vw);
  opacity: 0;
}

.shark-transition.active .jumping-shark {
  animation: sharkJump 1.55s cubic-bezier(.18,.75,.2,1) forwards;
}

.jumping-shark svg {
  width: 100%;
}

.shark-part {
  fill: url(#sharkSkin);
  stroke: #102832;
  stroke-width: 3;
}

.shark-belly {
  fill: url(#belly);
}

.far-fin {
  opacity: .72;
}

.shark-mouth {
  fill: #071014;
}

.shark-gum {
  fill: #7c3034;
}

.tooth {
  fill: #f7f3df;
}

.shark-eye {
  fill: #10191d;
  stroke: #d2ffff;
  stroke-width: 2;
}

.eye-glint {
  fill: #fff;
}

.gill {
  fill: none;
  stroke: #17323b;
  stroke-width: 5;
  stroke-linecap: round;
}

.highlight {
  fill: none;
  stroke: rgba(255,255,255,.36);
  stroke-width: 4;
  stroke-linecap: round;
}

.splash-ring {
  position: absolute;
  left: 50%;
  top: 44%;
  width: 240px;
  height: 60px;
  transform: translateX(-50%);
  border: 10px solid rgba(255,255,255,.72);
  border-left-color: transparent;
  border-right-color: transparent;
  border-radius: 50%;
  opacity: 0;
}

.shark-transition.active .splash-ring {
  animation: splashRing 1.45s ease-out forwards;
}

.transition-message {
  position: absolute;
  left: 50%;
  bottom: 8%;
  width: min(90vw, 680px);
  transform: translateX(-50%);
  text-align: center;
  color: var(--white);
  opacity: 0;
}

.shark-transition.active .transition-message {
  animation: messageIn 1.55s ease forwards;
}

.transition-message strong {
  display: block;
  font-family: "Black Ops One", sans-serif;
  font-size: clamp(25px, 5vw, 52px);
}

.transition-message strong span {
  color: #baffff;
}

.transition-message small {
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: .65s ease;
}

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

@keyframes sharkJump {
  0% { opacity: 0; transform: translate(-50%, 150px) rotate(-18deg) scale(.76); }
  15% { opacity: 1; }
  48% { transform: translate(-50%, -310px) rotate(5deg) scale(1.04); }
  68% { transform: translate(-50%, -328px) rotate(14deg) scale(1.01); }
  100% { opacity: 1; transform: translate(-50%, 180px) rotate(34deg) scale(.84); }
}

@keyframes splashRing {
  0% { opacity: 0; transform: translateX(-50%) scale(.2); }
  20% { opacity: 1; }
  100% { opacity: 0; transform: translateX(-50%) scale(2.7); }
}

@keyframes fadeTransition {
  0% { opacity: 0; }
  10%, 88% { opacity: 1; }
  100% { opacity: 0; }
}

@keyframes messageIn {
  0%, 35% { opacity: 0; transform: translate(-50%, 12px); }
  58%, 88% { opacity: 1; transform: translate(-50%, 0); }
  100% { opacity: 0; transform: translate(-50%, -8px); }
}

@media (max-width: 900px) {
  .desktop-nav { display: none; }

  .intro,
  .contact {
    grid-template-columns: 1fr;
  }

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

  .gallery-layout {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-main {
    grid-row: auto;
    min-height: 520px;
  }

  .gallery-wide,
  .gallery-info {
    min-height: 360px;
  }

  .contact-meta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  body {
    padding-bottom: calc(64px + env(safe-area-inset-bottom));
  }

  .site-header {
    height: 68px;
    padding: 0 18px;
  }

  .header-cta {
    display: none;
  }

  .brand-badge {
    width: 36px;
    height: 36px;
    font-size: 15px;
  }

  .brand-copy strong {
    font-size: 14px;
  }

  .brand-copy small {
    font-size: 8px;
  }

  .hero {
    min-height: 780px;
  }

  .hero-media img {
    object-position: 62% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(3,24,32,.92), rgba(3,24,32,.42)),
      linear-gradient(0deg, rgba(3,24,32,.98) 0%, transparent 62%);
  }

  .hero-content {
    width: calc(100% - 36px);
    margin-left: 18px;
    padding: 120px 0 58px;
  }

  .hero h1 {
    font-size: 54px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .quick-info {
    grid-template-columns: 1fr;
  }

  .quick-info > div {
    padding: 18px 20px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding: 76px 20px;
  }

  .section-heading h2,
  .contact-copy h2 {
    font-size: 48px;
  }

  .intro {
    gap: 24px;
  }

  .feature-card {
    min-height: 240px;
    padding: 42px 24px;
  }

  .feature-card h3 {
    margin-top: 34px;
    font-size: 34px;
  }

  .gallery-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .gallery-main,
  .gallery-wide,
  .gallery-info,
  .gallery-card {
    min-height: 0;
    aspect-ratio: 1 / 1;
  }

  .gallery-info {
    aspect-ratio: 1.6 / 1;
  }

  .gallery-card img {
    object-fit: cover;
  }

  .cta-section {
    padding: 68px 20px;
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-section h2 {
    font-size: 52px;
  }

  .contact-card {
    min-height: 92px;
    grid-template-columns: 42px 1fr auto;
    padding: 18px;
  }

  .contact-card strong {
    font-size: 19px;
  }

  footer {
    padding: 28px 20px;
    flex-direction: column;
    align-items: flex-start;
  }

  .mobile-bar {
    position: fixed;
    inset: auto 0 0;
    z-index: 200;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-bottom: env(safe-area-inset-bottom);
    background: var(--ink);
    border-top: 1px solid var(--line);
  }

  .mobile-bar a {
    min-height: 64px;
    display: grid;
    place-items: center;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  .mobile-bar a:last-child {
    background: var(--aqua);
    color: var(--ink);
  }

  .jumping-shark {
    width: 96vw;
  }

  .transition-message {
    bottom: 13%;
  }
}
