:root {
  --ink: #25231f;
  --muted: #6c675d;
  --paper: #f4f0e4;
  --paper-bright: #fffaf0;
  --sand: #d8c8a6;
  --sand-deep: #b69f74;
  --aqua-pale: #d5f3f1;
  --aqua: #89d3d2;
  --aqua-deep: #3f9699;
  --reef: #185d66;
  --rose: #ca5d83;
  --coral: #e78a65;
  --kelp: #6d7b54;
  --shadow-soft: 0 20px 55px rgba(37, 35, 31, 0.13);
  --shadow-tight: 0 10px 25px rgba(37, 35, 31, 0.12);
  --font-script: "Alex Brush", "Brush Script MT", cursive;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-type: "Courier Prime", "Courier New", Courier, monospace;
  --font-nav: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(
      180deg,
      rgba(214, 240, 238, 0.82) 0%,
      rgba(235, 242, 233, 0.8) 14%,
      rgba(246, 241, 230, 0.82) 26%,
      rgba(244, 239, 227, 0.82) 42%,
      rgba(232, 240, 231, 0.8) 54%,
      rgba(210, 236, 234, 0.82) 68%,
      rgba(191, 229, 227, 0.85) 82%,
      rgba(176, 221, 219, 0.88) 100%
    ),
    url("assets/backgrounds/page-watercolor-atmosphere.jpg") center top / cover fixed,
    var(--paper);
  font-family: var(--font-serif);
  font-size: 18px;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.1;
  background-image:
    linear-gradient(90deg, rgba(37, 35, 31, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(37, 35, 31, 0.035) 1px, transparent 1px);
  background-size: 46px 46px;
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-150%);
  background: var(--ink);
  color: white;
  padding: 0.65rem 0.9rem;
  text-decoration: none;
}

.is-keyboard .skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 90;
  width: 100%;
  height: 4px;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--aqua-deep), var(--rose), var(--coral));
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem clamp(1rem, 3vw, 3rem);
  background: rgba(255, 250, 240, 0.58);
  border-bottom: 1px solid rgba(37, 35, 31, 0.08);
  backdrop-filter: blur(18px);
  transition:
    padding 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
}

.site-header.is-scrolled {
  padding-top: 0.48rem;
  padding-bottom: 0.48rem;
  background: rgba(255, 250, 240, 0.9);
  box-shadow: 0 14px 34px rgba(37, 35, 31, 0.1);
}

.brand {
  display: inline-grid;
  color: var(--ink);
  text-decoration: none;
  line-height: 0.78;
}

.brand span {
  font-family: var(--font-script);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 400;
}

.brand small {
  margin-left: 1.8rem;
  font-family: var(--font-nav);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.15rem;
  font-family: var(--font-nav);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-nav a {
  padding: 0.64rem 0.76rem;
  border-bottom: 2px solid transparent;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  border-color: var(--rose);
  background: rgba(255, 250, 240, 0.44);
}

.nav-toggle {
  display: none;
}

.section {
  --edge-image: url("assets/backgrounds/hammerhead-watercolor-strip.jpg");
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding: clamp(6.2rem, 9vw, 9rem) clamp(1.1rem, 4vw, 5rem);
  isolation: isolate;
}

.section::before,
.section::after {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  z-index: -1;
  height: clamp(9rem, 16vw, 16rem);
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 250, 240, 0), rgba(255, 250, 240, 0.26), rgba(255, 250, 240, 0));
  opacity: 0.6;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, black 42%, black 58%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, black 42%, black 58%, transparent 100%);
}

.section::before {
  top: clamp(-6rem, -7vw, -3.5rem);
}

.section::after {
  bottom: clamp(-6rem, -7vw, -3.5rem);
}

.section-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, 100%);
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--aqua-deep);
  font-family: var(--font-nav);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero .eyebrow {
  position: relative;
  z-index: 2;
  margin-bottom: clamp(2rem, 4.5vw, 3.6rem);
}

.asset {
  position: absolute;
  z-index: 4;
  pointer-events: none;
  user-select: none;
}

.hero {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding-top: clamp(6rem, 10vw, 8rem);
  text-align: center;
  background: linear-gradient(180deg, rgba(214, 240, 238, 0.5) 0%, rgba(214, 240, 238, 0) 58%);
}

.hero::before {
  top: auto;
  bottom: -5.5rem;
  opacity: 0.58;
}

.hero-sea {
  position: absolute;
  inset: auto 0 0;
  height: 50%;
  z-index: 0;
  opacity: 0.5;
  background: linear-gradient(180deg, rgba(160, 221, 219, 0) 0%, rgba(150, 214, 212, 0.26) 55%, rgba(176, 221, 219, 0.42) 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, black 30%, black 100%);
  mask-image: linear-gradient(180deg, transparent 0%, black 30%, black 100%);
}

.hero-copy {
  position: relative;
  z-index: 5;
  width: min(920px, 100%);
}

.hero-copy::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 52%;
  width: min(80rem, 108vw);
  height: 86%;
  z-index: -1;
  background: radial-gradient(ellipse 64% 56% at 50% 50%, rgba(255, 250, 240, 0.8) 0%, rgba(255, 250, 240, 0.42) 46%, rgba(255, 250, 240, 0) 76%);
  filter: blur(26px);
  transform: translate(-50%, -50%);
}

.hero h1 {
  display: grid;
  margin: 0;
  line-height: 0.72;
}

.hero h1 span {
  color: #171511;
  font-family: var(--font-script);
  font-size: clamp(7rem, 18vw, 18rem);
  font-weight: 400;
  text-shadow: 0 2px 0 rgba(255, 250, 240, 0.42);
}

.hero h1 small {
  color: #171511;
  margin-top: -0.15rem;
  margin-left: clamp(2rem, 14vw, 15rem);
  font-family: var(--font-nav);
  font-size: clamp(1.35rem, 3.4vw, 3.5rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow: 0 1px 0 rgba(255, 250, 240, 0.5);
}

.hero-line {
  color: #171511;
  margin: clamp(2.2rem, 6vh, 4.6rem) auto 0;
  font-size: clamp(1.65rem, 2.8vw, 3.15rem);
  font-weight: 700;
  line-height: 1.05;
  text-shadow: 0 1px 0 rgba(255, 250, 240, 0.7);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.hero-actions a,
.category-card strong,
address a {
  border-radius: 8px;
}

.hero-actions a {
  padding: 0.82rem 1.05rem;
  border: 1px solid rgba(37, 35, 31, 0.18);
  background: rgba(255, 250, 240, 0.62);
  box-shadow: var(--shadow-tight);
  font-family: var(--font-nav);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.hero-actions a:hover,
.hero-actions a:focus-visible {
  background: var(--paper-bright);
  transform: translateY(-2px);
}

.shell-left {
  top: 17%;
  left: clamp(1rem, 10vw, 9rem);
  width: clamp(5rem, 10vw, 10rem);
  transform: rotate(-10deg);
}

.shell-right {
  right: clamp(1rem, 10vw, 9rem);
  bottom: 11%;
  width: clamp(5.5rem, 10vw, 11rem);
  transform: rotate(12deg);
}

.hero-mermaid {
  left: clamp(0.5rem, 2vw, 3rem);
  bottom: 6%;
  width: clamp(9rem, 17vw, 19rem);
  opacity: 0.74;
  transform: rotate(-6deg);
}

.hero-mermaid,
.mermaid-large,
.manta,
.dugong {
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 0 58%, rgba(0, 0, 0, 0.78) 74%, transparent 96%);
  mask-image: radial-gradient(ellipse at 50% 50%, black 0 58%, rgba(0, 0, 0, 0.78) 74%, transparent 96%);
}

.hero-mermaid {
  -webkit-mask-image:
    linear-gradient(to right, transparent, #000 17%, #000 83%, transparent),
    linear-gradient(to bottom, transparent, #000 13%, #000 87%, transparent);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to right, transparent, #000 17%, #000 83%, transparent),
    linear-gradient(to bottom, transparent, #000 13%, #000 87%, transparent);
  mask-composite: intersect;
}

.about {
  background: transparent;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(18rem, 0.92fr) minmax(22rem, 1.08fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}

.photo-stack {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: clamp(0.7rem, 1.8vw, 1.3rem);
  align-items: center;
}

.polaroid {
  width: 100%;
  filter: drop-shadow(0 14px 22px rgba(37, 35, 31, 0.14));
}

.bek {
  grid-column: 1;
  grid-row: 1 / 3;
  transform: rotate(-2deg);
}

.swim {
  grid-column: 2;
  grid-row: 1;
  transform: rotate(2deg);
}

.shore {
  grid-column: 2;
  grid-row: 2;
  transform: rotate(-2deg);
}

.flower {
  left: 6%;
  bottom: 6%;
  width: clamp(3.5rem, 6vw, 5.5rem);
  z-index: 4;
}

.about-copy {
  text-align: center;
}

.about-copy h2,
.events-heading h2 {
  display: grid;
  margin: 0 0 2rem;
  line-height: 0.9;
}

.about-copy h2 span,
.events-heading h2 span {
  font-family: var(--font-nav);
  font-size: clamp(1.8rem, 4vw, 4.5rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-copy h2 em,
.events-heading h2 em {
  color: var(--ink);
  font-family: var(--font-script);
  font-size: clamp(4.8rem, 9vw, 10rem);
  font-style: normal;
  font-weight: 400;
}

.about-copy p {
  max-width: 46rem;
  margin: 0 auto 1.2rem;
  font-size: clamp(1.25rem, 2vw, 2rem);
  font-weight: 600;
  line-height: 1.28;
}

.artwork {
  background: transparent;
}

.artwork-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.artwork-illustration {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.mermaid-large {
  left: 1%;
  top: 12%;
  width: clamp(12rem, 21vw, 25rem);
}

.manta {
  right: -2%;
  top: 8%;
  width: clamp(13rem, 23vw, 28rem);
}

.artwork-copy {
  position: relative;
  z-index: 3;
  text-align: center;
}

.artwork-copy h2 {
  display: grid;
  margin: 0;
  font-family: var(--font-type);
  font-size: clamp(3rem, 7vw, 7.5rem);
  font-weight: 700;
  line-height: 1.2;
}

.artwork-copy h2 span {
  display: block;
  color: var(--rose);
}

.category-grid {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 3vw, 2.6rem);
  margin-top: clamp(1rem, 5vw, 3rem);
}

.category-card {
  display: grid;
  gap: 1rem;
  color: var(--ink);
  text-align: center;
  text-decoration: none;
  transform:
    perspective(900px)
    rotateX(var(--tilt-x, 0deg))
    rotateY(var(--tilt-y, 0deg));
  transition: transform 180ms ease;
}

.category-card strong {
  position: relative;
  display: grid;
  min-height: 4.8rem;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--aqua), #72beb8);
  box-shadow: 0 10px 0 rgba(37, 35, 31, 0.06);
  font-family: var(--font-type);
  font-size: clamp(1.2rem, 2.1vw, 2.2rem);
  font-weight: 700;
}

.category-card strong::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-120%);
  background: linear-gradient(100deg, transparent, rgba(255, 250, 240, 0.42), transparent);
}

.category-card:hover,
.category-card:focus-visible {
  transform: translateY(-4px) perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
}

.category-card:hover strong::after,
.category-card:focus-visible strong::after {
  transform: translateX(120%);
  transition: transform 720ms ease;
}

.category-card span {
  max-width: 15rem;
  margin-inline: auto;
  font-size: clamp(1.1rem, 1.7vw, 1.65rem);
  font-weight: 600;
  line-height: 1.18;
}

.events {
  display: grid;
  place-items: center;
  background: transparent;
  text-align: center;
}

.events-inner {
  width: min(54rem, 100%);
  margin-inline: auto;
}

.events .eyebrow {
  color: var(--aqua-deep);
}

.events h2 {
  margin: 0 0 1.4rem;
  font-family: var(--font-nav);
  font-size: clamp(1.7rem, 3.6vw, 3.4rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.events h2 em {
  font-family: var(--font-script);
  font-style: normal;
  font-weight: 400;
  font-size: 1.55em;
  letter-spacing: 0;
  text-transform: none;
}

.events-lead {
  max-width: 34rem;
  margin: 0 auto clamp(2.2rem, 4.5vw, 3.4rem);
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  font-weight: 500;
  line-height: 1.5;
}

.event-list {
  width: min(34rem, 100%);
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1rem;
}

.event-card {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: clamp(1.2rem, 3vw, 1.8rem);
  padding: clamp(1rem, 2.4vw, 1.5rem) clamp(1.3rem, 3vw, 1.9rem);
  text-align: left;
  background: rgba(255, 250, 240, 0.72);
  border: 1px solid rgba(37, 35, 31, 0.1);
  border-radius: 16px;
  box-shadow: var(--shadow-tight);
}

.event-month {
  display: grid;
  place-items: center;
  width: clamp(3.6rem, 8vw, 4.4rem);
  height: clamp(3.6rem, 8vw, 4.4rem);
  border-radius: 13px;
  background: linear-gradient(140deg, var(--aqua), #6fb8b6);
  color: #143f3b;
  font-family: var(--font-nav);
  font-size: clamp(0.92rem, 1.5vw, 1.1rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.event-info {
  display: grid;
  gap: 0.25rem;
}

.event-info strong {
  font-family: var(--font-type);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.12;
}

.event-place {
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.22rem);
  font-weight: 500;
}

.goal {
  display: grid;
  place-items: center;
  color: var(--ink);
  background: transparent;
  text-align: center;
}

.goal-inner {
  width: min(72rem, 100%);
  margin-inline: auto;
}

.goal .eyebrow {
  color: var(--aqua-deep);
}

.goal h2 {
  margin: 0 auto 1.6rem;
  max-width: 20ch;
  font-family: var(--font-serif);
  font-size: clamp(2.7rem, 5.4vw, 5.4rem);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.01em;
}

.goal h2 em {
  font-family: var(--font-script);
  font-style: normal;
  font-weight: 400;
  color: var(--aqua-deep);
  font-size: 1.32em;
  line-height: 0.78;
}

.goal-lead {
  max-width: 42rem;
  margin: 0 auto;
  font-size: clamp(1.3rem, 2vw, 1.85rem);
  font-weight: 500;
  line-height: 1.5;
}

.goal-scene {
  width: min(80rem, 108%);
  margin: clamp(2.4rem, 5vw, 4.5rem) 0 0;
  margin-left: 50%;
  transform: translateX(-50%);
}

.goal-scene img {
  display: block;
  width: 100%;
  -webkit-mask-image:
    linear-gradient(to right, transparent 0%, #000 15%, #000 85%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, #000 16%, #000 76%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to right, transparent 0%, #000 15%, #000 85%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, #000 16%, #000 76%, transparent 100%);
  mask-composite: intersect;
}

.goal-pledge {
  max-width: 40rem;
  margin: clamp(2.2rem, 4vw, 3.6rem) auto 0;
  padding-top: clamp(1.4rem, 3vw, 2rem);
  border-top: 1px solid rgba(37, 35, 31, 0.16);
  font-size: clamp(1.15rem, 1.7vw, 1.5rem);
  font-weight: 600;
  line-height: 1.5;
}

.goal-pledge-label {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--aqua-deep);
  font-family: var(--font-nav);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.goal-pledge em {
  font-style: normal;
  font-weight: 700;
}

.contact-copy h2 {
  margin: 0 0 1.3rem;
  font-family: var(--font-type);
  font-size: clamp(2.4rem, 5vw, 5.4rem);
  line-height: 1.15;
}

.orders {
  display: grid;
  place-items: center;
  background: transparent;
}

.orders-inner {
  width: min(62rem, 100%);
  margin-inline: auto;
  display: grid;
  gap: clamp(2.4rem, 5vw, 4rem);
}

.orders-copy {
  max-width: 42rem;
  margin-inline: auto;
  text-align: center;
}

.orders-copy h2 {
  margin: 0 0 1.4rem;
  font-family: var(--font-type);
  font-size: clamp(1.8rem, 3.4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.12;
}

.orders-copy p {
  margin: 0 auto;
  font-size: clamp(1.2rem, 1.9vw, 1.7rem);
  font-weight: 500;
  line-height: 1.5;
}

.orders-photos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.6rem, 4vw, 3.4rem);
  align-items: start;
  width: min(42rem, 100%);
  margin-inline: auto;
}

.order-photo {
  margin: 0;
  display: grid;
  justify-items: center;
  gap: 0.9rem;
}

.order-photo img {
  width: 100%;
  filter: drop-shadow(0 16px 22px rgba(37, 35, 31, 0.16));
}

.seal {
  transform: rotate(-2deg);
}

.diver {
  transform: rotate(2deg);
  margin-top: clamp(1rem, 3vw, 2.4rem);
}

.order-photo figcaption {
  font-family: var(--font-type);
  font-size: clamp(0.92rem, 1.4vw, 1.18rem);
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

.contact {
  display: grid;
  place-items: center;
  min-height: 100svh;
  color: var(--ink);
  background: transparent;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(20rem, 1fr) minmax(20rem, 1.05fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.contact-copy {
  align-self: center;
}

.contact-lead {
  max-width: 30rem;
  margin: 0 0 1.9rem;
  font-size: clamp(1.2rem, 1.9vw, 1.55rem);
  font-weight: 500;
  line-height: 1.5;
}

.contact-scene {
  margin: 0;
}

address {
  display: grid;
  gap: 1rem;
  font-style: normal;
}

address a {
  display: grid;
  gap: 0.25rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(37, 35, 31, 0.16);
  background: rgba(255, 250, 240, 0.6);
  box-shadow: var(--shadow-tight);
  font-size: clamp(1.05rem, 1.7vw, 1.55rem);
  font-weight: 700;
  line-height: 1.12;
  overflow-wrap: anywhere;
  text-decoration: none;
}

address a:hover,
address a:focus-visible {
  background: rgba(255, 250, 240, 0.95);
  transform: translateY(-2px);
}

address span {
  color: var(--aqua-deep);
  font-family: var(--font-nav);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.dugong {
  width: 100%;
  -webkit-mask-image: none;
  mask-image: none;
}

.inspiration-drop {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 70;
  display: grid;
  width: 3.15rem;
  height: 3.15rem;
  place-items: center;
  border: 1px solid rgba(37, 35, 31, 0.2);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.82);
  box-shadow: var(--shadow-tight);
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.inspiration-drop span {
  width: 1.16rem;
  height: 1.52rem;
  border-radius: 62% 62% 70% 70%;
  background:
    linear-gradient(160deg, rgba(255, 250, 240, 0.82), transparent 22%),
    linear-gradient(160deg, #9ce4e6, #3f9699);
  transform: rotate(35deg);
}

.inspiration-note {
  position: fixed;
  right: 1rem;
  bottom: 4.8rem;
  z-index: 70;
  width: min(22rem, calc(100vw - 2rem));
  margin: 0;
  padding: 1rem;
  background: rgba(255, 250, 240, 0.94);
  border: 1px solid rgba(37, 35, 31, 0.16);
  box-shadow: var(--shadow-tight);
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.16;
  opacity: 0;
  pointer-events: none;
  transform: translateY(0.7rem) rotate(-1deg);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.inspiration-note.is-visible {
  opacity: 1;
  transform: translateY(0) rotate(-1deg);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(1.4rem);
  transition:
    opacity 620ms ease,
    transform 620ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: no-preference) {
  [data-float] {
    animation: coastal-float 7s ease-in-out infinite alternate;
  }

  .shell-right,
  .flower,
  .manta,
  .dugong {
    animation-duration: 9s;
    animation-delay: -2s;
  }

  .hero-sea,
  .section::before,
  .section::after {
    animation: tide-breathe 12s ease-in-out infinite alternate;
  }
}

@keyframes coastal-float {
  from {
    translate: 0 0;
  }

  to {
    translate: 0 0.7rem;
  }
}

@keyframes tide-breathe {
  from {
    background-position: center 50%;
  }

  to {
    background-position: center 58%;
  }
}

@media (max-width: 1120px) {
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .photo-stack {
    width: min(42rem, 100%);
    margin-inline: auto;
  }

  .contact-scene {
    width: min(34rem, 100%);
    margin-inline: auto;
  }
}

@media (max-width: 840px) {
  .site-header {
    align-items: flex-start;
  }

  .brand span {
    font-size: 2.45rem;
  }

  .brand small {
    margin-left: 1.4rem;
    font-size: 0.54rem;
  }

  .nav-toggle {
    position: relative;
    z-index: 84;
    display: grid;
    width: 2.8rem;
    height: 2.8rem;
    place-content: center;
    gap: 0.25rem;
    border: 1px solid rgba(37, 35, 31, 0.2);
    padding: 0;
    background: rgba(255, 250, 240, 0.84);
    cursor: pointer;
  }

  .nav-toggle span:not(.sr-only) {
    display: block;
    width: 1.25rem;
    height: 2px;
    background: var(--ink);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .site-header.is-open .nav-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .site-header.is-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-open .nav-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.4rem);
    left: 0.75rem;
    right: 0.75rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.2rem;
    padding: 0.65rem;
    background: rgba(255, 250, 240, 0.96);
    border: 1px solid rgba(37, 35, 31, 0.14);
    box-shadow: var(--shadow-tight);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-0.4rem);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .site-header.is-open .site-nav,
  .site-header:focus-within .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    min-height: 2.7rem;
  }

  .section {
    min-height: auto;
    padding: 5.9rem 1rem 5rem;
  }

  .hero {
    min-height: 100svh;
  }

  .hero h1 span {
    font-size: clamp(6rem, 34vw, 10rem);
  }

  .hero h1 small {
    margin-left: 0;
    font-size: clamp(1.1rem, 6vw, 1.75rem);
  }

  .hero-line {
    font-size: clamp(1.4rem, 7vw, 2rem);
  }

  .hero-mermaid {
    width: 11rem;
    opacity: 0.44;
  }

  .shell-left {
    left: 3%;
  }

  .shell-right {
    right: 4%;
  }

  .photo-stack {
    width: min(33rem, 100%);
    margin-inline: auto;
  }

  .about-copy p,
  .order-copy p,
  .goal-copy p {
    font-size: clamp(1.18rem, 5vw, 1.55rem);
  }

  .mermaid-large,
  .manta {
    opacity: 0.22;
  }

  .category-grid {
    grid-template-columns: 1fr;
    width: min(28rem, 100%);
    margin-inline: auto;
  }

  .orders-photos {
    grid-template-columns: 1fr;
    width: min(22rem, 100%);
  }

  .diver {
    margin-top: 0;
  }

  .contact-copy {
    width: min(32rem, 100%);
    margin-inline: auto;
  }

  .inspiration-drop,
  .inspiration-note {
    display: none;
  }
}

@media (max-width: 520px) {
  .section {
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }

  .about-copy h2 em,
  .events-heading h2 em {
    font-size: clamp(4rem, 20vw, 6rem);
  }

  .artwork-copy h2,
  .goal-copy h2,
  .contact-copy h2 {
    font-size: clamp(2.15rem, 11vw, 3.15rem);
  }

  .photo-stack {
    min-height: 27rem;
  }

  .hero-actions a {
    width: min(15rem, 100%);
  }

  address a {
    font-size: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
