@import url("https://fonts.googleapis.com/css2?family=Anton&family=Inter:wght@400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap");

:root {
  --shore-ink: #071a29;
  --shore-navy: #082d49;
  --shore-blue: #123b62;
  --shore-sky: #29b8e6;
  --shore-foam: #eaf5ef;
  --shore-orange: #ff642d;
  --shore-wine: #690a2f;
  --shore-gold: #c3a15e;
  --shore-paper: #f7f0e2;
  --shore-line: rgba(7,26,41,.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--shore-ink); }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--shore-paper);
  color: var(--shore-ink);
  font-family: Inter, Arial, sans-serif;
}
img, video { display: block; max-width: 100%; }
figure { margin: 0; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }

.shore-grain {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: .08;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.32'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

.shore-header {
  position: fixed;
  top: 14px;
  left: 50%;
  z-index: 90;
  display: grid;
  grid-template-columns: auto auto auto 1fr;
  align-items: center;
  gap: 12px;
  width: min(1220px,calc(100% - 28px));
  min-height: 68px;
  padding: 8px 11px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 18px;
  background: rgba(7,26,41,.84);
  color: #fff;
  box-shadow: 0 20px 60px rgba(5,15,24,.26);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  transition: transform 220ms ease, background 220ms ease;
}
.shore-header.is-scrolled { background: rgba(7,26,41,.97); transform: translate(-50%,-3px); }
.shore-header__makerz { display: grid; place-items: center; width: 112px; }
.shore-header__makerz img { width: 106px; }
.shore-header__cross { color: var(--shore-orange); font-size: 20px; }
.shore-header__brands {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 50px;
}
.shore-header__brands > span {
  display: grid;
  place-items: center;
  width: 92px;
  height: 48px;
  overflow: hidden;
  border-radius: 11px;
  background: #fff;
}
.shore-header__brands > i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--shore-gold);
}
.shore-header__cup img { width: 76px; }
.shore-header__marsah img { width: 62px; height: 62px; object-fit: cover; }
.shore-header nav { display: flex; justify-content: flex-end; gap: 24px; }
.shore-header nav a {
  color: rgba(255,255,255,.74);
  font: 700 .67rem/1 "Space Grotesk", sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.shore-header nav a:hover { color: var(--shore-orange); }

.shore-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--shore-ink);
  color: #fff;
}
.shore-hero__world {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.shore-hero__world img { width: 100%; height: 100%; object-fit: cover; }
.shore-hero__world--coffee {
  right: 44%;
  clip-path: polygon(0 0, 100% 0, 84% 100%, 0 100%);
}
.shore-hero__world--coffee img { object-position: 51% 54%; }
.shore-hero__world--food {
  left: 47%;
  clip-path: polygon(17% 0, 100% 0, 100% 100%, 0 100%);
}
.shore-hero__world--food img { object-position: 56% 46%; }
.shore-hero__world::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,rgba(4,15,23,.52),transparent 26%,rgba(4,15,23,.1) 48%,rgba(4,15,23,.82));
}
.shore-hero__world--coffee::after {
  background:
    linear-gradient(90deg,rgba(7,26,41,.66),transparent 70%),
    linear-gradient(180deg,rgba(4,15,23,.48),transparent 36%,rgba(4,15,23,.8));
}
.shore-hero__world--food::after {
  background:
    linear-gradient(270deg,rgba(105,10,47,.42),transparent 62%),
    linear-gradient(180deg,rgba(4,15,23,.45),transparent 38%,rgba(4,15,23,.76));
}
.shore-hero__wake {
  position: absolute;
  z-index: 2;
  top: -8%;
  left: 48.2%;
  width: clamp(80px,8vw,145px);
  height: 118%;
  background: linear-gradient(180deg,var(--shore-sky),#fff1dd 48%,var(--shore-orange));
  clip-path: polygon(38% 0,100% 0,57% 100%,0 100%);
  opacity: .88;
  mix-blend-mode: screen;
}
.shore-hero__eyebrow {
  position: absolute;
  z-index: 4;
  top: 112px;
  left: 50%;
  display: flex;
  justify-content: space-between;
  width: min(1220px,calc(100% - 48px));
  transform: translateX(-50%);
}
.shore-hero__eyebrow span {
  font: 800 .64rem/1 "Space Grotesk", sans-serif;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.shore-hero__eyebrow span:first-child { color: #a9eaff; }
.shore-hero__eyebrow span:last-child { color: #f1d39f; }
.shore-hero__copy {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 44px;
  width: min(1220px,calc(100% - 48px));
  transform: translateX(-50%);
}
.shore-hero__copy > p,
.shore-kicker {
  margin: 0;
  font: 800 .67rem/1 "Space Grotesk", sans-serif;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.shore-hero__copy > p i { color: var(--shore-orange); font-style: normal; }
.shore-hero h1,
.shore-handoff h2,
.shore-section-head h2,
.shore-crossfeed h2,
.shore-motion h2,
.shore-outro h2 {
  margin: 22px 0 28px;
  font: 400 clamp(90px,12.8vw,198px)/.88 Anton,Impact,sans-serif;
  letter-spacing: -.045em;
  text-transform: uppercase;
}
.shore-hero h1 em {
  display: inline-block;
  margin-left: 15%;
  color: #fff1dd;
  font-style: normal;
  text-shadow: 7px 7px 0 var(--shore-orange), -7px -7px 0 var(--shore-blue);
}
.shore-hero__copy > div {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}
.shore-hero__copy > div > span {
  max-width: 500px;
  color: rgba(255,255,255,.76);
  font: 600 clamp(14px,1.25vw,18px)/1.55 "Space Grotesk",sans-serif;
}
.shore-hero__copy a,
.shore-outro__copy > a {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  min-height: 50px;
  padding: 0 8px 0 19px;
  border: 1px solid rgba(255,255,255,.78);
  border-radius: 999px;
  font: 800 .66rem/1 "Space Grotesk",sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.shore-hero__copy a i,
.shore-outro__copy > a i {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  color: var(--shore-ink);
}
.shore-hero__seal {
  position: absolute;
  z-index: 4;
  right: 4%;
  top: 30%;
  display: grid;
  place-items: center;
  width: 128px;
  height: 128px;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 50%;
  background: rgba(105,10,47,.74);
  backdrop-filter: blur(12px);
  transform: rotate(8deg);
}
.shore-hero__seal span { font: 400 22px/1 Anton,sans-serif; letter-spacing: .06em; }
.shore-hero__seal i { width: 52px; height: 1px; background: var(--shore-gold); }

.shore-marquee { overflow: hidden; background: var(--shore-orange); color: var(--shore-ink); }
.shore-marquee div {
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  padding: 16px 0;
  animation: shore-marquee 26s linear infinite;
}
.shore-marquee span { font: 800 .7rem/1 "Space Grotesk",sans-serif; letter-spacing: .14em; }
.shore-marquee i { width: 9px; height: 9px; border-radius: 50%; background: var(--shore-paper); }
@keyframes shore-marquee { to { transform: translateX(-50%); } }

.shore-handoff,
.shore-coffee,
.shore-feast,
.shore-crossfeed,
.shore-motion {
  padding: clamp(96px,10vw,150px) max(24px,calc((100% - 1240px) / 2));
}
.shore-handoff {
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 16%,rgba(41,184,230,.24),transparent 25%),
    var(--shore-paper);
}
.shore-handoff__head {
  display: grid;
  grid-template-columns: 170px 1fr minmax(260px,.45fr);
  align-items: end;
  gap: 38px;
  margin-bottom: 80px;
}
.shore-kicker { color: var(--shore-orange); }
.shore-handoff h2,
.shore-section-head h2,
.shore-crossfeed h2,
.shore-motion h2 { font-size: clamp(66px,8.7vw,130px); }
.shore-handoff h2 em,
.shore-section-head h2 em,
.shore-crossfeed h2 em,
.shore-motion h2 em,
.shore-outro h2 em {
  display: block;
  color: var(--shore-orange);
  font-style: normal;
}
.shore-handoff h2 > span {
  display: block;
  color: var(--shore-blue);
}
.shore-handoff__head > p:last-child,
.shore-section-head > p:last-child,
.shore-crossfeed__copy > p:last-child,
.shore-motion__head > p:last-child {
  margin: 0;
  color: rgba(7,26,41,.64);
  font: 600 clamp(16px,1.4vw,20px)/1.65 "Space Grotesk",sans-serif;
}
.shore-journey { display: grid; gap: 0; }
.shore-journey article {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(320px,.58fr);
  min-height: 620px;
}
.shore-journey figure { overflow: hidden; }
.shore-journey figure img { width: 100%; height: 100%; object-fit: cover; }
.shore-journey article > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px,5vw,70px);
}
.shore-journey article span {
  font: 800 .64rem/1 "Space Grotesk",sans-serif;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.shore-journey article h3 {
  margin: 20px 0 28px;
  font: 400 clamp(56px,6vw,94px)/.84 Anton,sans-serif;
}
.shore-journey article h3 em {
  display: block;
  color: #a9eaff;
  font-style: normal;
}
.shore-journey__food h3 em { color: var(--shore-gold); }
.shore-journey article p {
  max-width: 380px;
  margin: 0;
  color: rgba(255,255,255,.68);
  font: 600 1rem/1.55 "Space Grotesk",sans-serif;
}
.shore-journey__coffee { background: var(--shore-blue); color: #fff; }
.shore-journey__coffee figure img { object-position: 50% 54%; }
.shore-journey__coffee span { color: #a9eaff; }
.shore-journey__food {
  grid-template-columns: minmax(320px,.58fr) minmax(0,1fr) !important;
  background: var(--shore-wine);
  color: #fff;
}
.shore-journey__food span { color: #e8c985; }
.shore-journey__bridge {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 92px;
  margin: -1px 0;
  padding: 16px 28px;
  background: linear-gradient(90deg,var(--shore-orange),#f9dfbb 48%,var(--shore-gold));
}
.shore-journey__bridge span {
  font: 800 .62rem/1 "Space Grotesk",sans-serif;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.shore-journey__bridge b {
  text-align: center;
  font: 400 34px/.82 Anton,sans-serif;
}
.shore-journey__bridge i {
  width: 70px;
  height: 28px;
  border-bottom: 2px solid var(--shore-ink);
  border-radius: 50%;
  transform: rotate(-8deg);
}

.shore-lockup {
  display: grid;
  grid-template-columns: 1fr 110px 1fr;
  align-items: center;
  gap: 28px;
  padding: clamp(90px,10vw,150px) max(24px,calc((100% - 1240px) / 2));
  background: var(--shore-ink);
  color: #fff;
}
.shore-lockup__cup,
.shore-lockup__marsah {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 430px;
  overflow: hidden;
  border-radius: 50% 50% 14px 14px;
}
.shore-lockup__cup { background: var(--shore-foam); }
.shore-lockup__marsah { background: #fff; }
.shore-lockup__cup img { width: min(72%,300px); }
.shore-lockup__marsah img { width: min(62%,290px); }
.shore-lockup__cup span,
.shore-lockup__marsah span {
  position: absolute;
  bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #fff;
  font: 800 .56rem/1 "Space Grotesk",sans-serif;
  letter-spacing: .08em;
}
.shore-lockup__cup span:nth-of-type(1) { left: 18px; background: var(--shore-blue); }
.shore-lockup__cup span:nth-of-type(2) { left: 112px; background: var(--shore-orange); }
.shore-lockup__marsah span:nth-of-type(1) { left: 18px; background: var(--shore-wine); }
.shore-lockup__marsah span:nth-of-type(2) { left: 112px; background: var(--shore-gold); }
.shore-lockup__plus { display: grid; place-items: center; }
.shore-lockup__plus span,
.shore-lockup__plus i {
  grid-area: 1/1;
  display: block;
  width: 72px;
  height: 3px;
  background: var(--shore-orange);
}
.shore-lockup__plus i { transform: rotate(90deg); }
.shore-lockup__copy {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 30px;
  margin-top: 34px;
  padding-top: 34px;
  border-top: 1px solid rgba(255,255,255,.16);
}
.shore-lockup__copy p {
  margin: 0;
  color: var(--shore-gold);
  font: 800 .64rem/1 "Space Grotesk",sans-serif;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.shore-lockup__copy h2 {
  margin: 0;
  font: 400 clamp(58px,7.5vw,112px)/.92 Anton,sans-serif;
  letter-spacing: -.035em;
}
.shore-lockup__copy h2 em,
.shore-lockup__copy h2 span {
  display: block;
  font-style: normal;
}
.shore-lockup__copy h2 em { color: var(--shore-orange); }
.shore-lockup__copy h2 span { color: var(--shore-gold); }

.shore-coffee {
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 10%,rgba(41,184,230,.38),transparent 25%),
    #dceff2;
}
.shore-section-head {
  display: grid;
  grid-template-columns: 170px 1fr minmax(260px,.42fr);
  align-items: end;
  gap: 36px;
  margin-bottom: 60px;
}
.shore-coffee__grid {
  display: grid;
  grid-template-columns: 1.45fr .72fr .58fr;
  gap: 18px;
  align-items: end;
}
.shore-coffee__grid figure {
  padding: 9px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(11,49,75,.13);
}
.shore-coffee__grid img { width: 100%; }
.shore-coffee__poster { transform: translateY(50px); }
.shore-coffee__story { transform: translateY(110px); }
.shore-coffee__grid figcaption {
  display: flex;
  justify-content: space-between;
  padding: 13px 3px 3px;
  font: 800 .58rem/1 "Space Grotesk",sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.shore-feast {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 10%,rgba(195,161,94,.22),transparent 23%),
    var(--shore-wine);
  color: #fff;
}
.shore-section-head--feast .shore-kicker { color: var(--shore-gold); }
.shore-section-head--feast h2 em { color: var(--shore-gold); }
.shore-section-head--feast > p:last-child { color: rgba(255,255,255,.62); }
.shore-feast__rail {
  display: grid;
  grid-template-columns: repeat(6,minmax(260px,1fr));
  gap: 14px;
  width: max-content;
}
.shore-feast__rail figure {
  position: relative;
  width: min(27vw,360px);
  overflow: hidden;
  background: #fff;
}
.shore-feast__rail figure:nth-child(even) { transform: translateY(50px); }
.shore-feast__rail img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(.2,.75,.2,1);
}
.shore-feast__rail figure:hover img { transform: scale(1.035); }
.shore-feast__rail figcaption {
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 8px 10px;
  background: rgba(105,10,47,.84);
  color: #fff;
  font: 800 .56rem/1 "Space Grotesk",sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.shore-crossfeed {
  display: grid;
  grid-template-columns: minmax(300px,.55fr) minmax(0,1.45fr);
  gap: clamp(50px,7vw,110px);
  background:
    linear-gradient(135deg,rgba(255,100,45,.18),transparent 44%),
    var(--shore-paper);
}
.shore-crossfeed__copy { align-self: center; }
.shore-crossfeed__copy h2 { margin: 25px 0 35px; }
.shore-crossfeed__mosaic {
  display: grid;
  grid-template-columns: 1fr .78fr .72fr;
  gap: 12px;
  align-items: start;
}
.shore-crossfeed__mosaic figure { overflow: hidden; box-shadow: 0 20px 60px rgba(7,26,41,.13); }
.shore-crossfeed__mosaic figure:nth-child(2),
.shore-crossfeed__mosaic figure:nth-child(5) { transform: translateY(48px); }
.shore-crossfeed__mosaic figure:nth-child(3),
.shore-crossfeed__mosaic figure:nth-child(6) { transform: translateY(96px); }
.shore-crossfeed__mosaic img { width: 100%; height: 100%; object-fit: cover; }

.shore-motion {
  background:
    radial-gradient(circle at 82% 12%,rgba(41,184,230,.22),transparent 25%),
    var(--shore-ink);
  color: #fff;
}
.shore-motion__head {
  display: grid;
  grid-template-columns: 170px 1fr minmax(260px,.42fr);
  align-items: end;
  gap: 36px;
  margin-bottom: 60px;
}
.shore-motion__head > p:last-child { color: rgba(255,255,255,.62); }
.shore-reels { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.shore-reel {
  position: relative;
  min-height: min(72vw,760px);
  overflow: hidden;
  background: #000;
}
.shore-reel video { width: 100%; height: 100%; min-height: inherit; object-fit: cover; }
.shore-reel__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,transparent 50%,rgba(4,10,15,.78));
  pointer-events: none;
}
.shore-reel__meta {
  position: absolute;
  left: 20px;
  right: 80px;
  bottom: 20px;
}
.shore-reel__meta span,
.shore-reel__meta b { display: block; font-family: "Space Grotesk",sans-serif; }
.shore-reel__meta span {
  margin-bottom: 7px;
  color: var(--shore-gold);
  font-size: .59rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.shore-reel__meta b { font-size: clamp(16px,1.6vw,22px); }
.shore-reel button {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 50%;
  background: rgba(7,26,41,.58);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(12px);
}
.shore-reel button b { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.shore-reel button i { position: relative; width: 14px; height: 14px; border: 2px solid currentColor; border-radius: 2px; }
.shore-reel button i::before {
  content: "";
  position: absolute;
  right: -7px;
  top: 2px;
  width: 6px;
  height: 6px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}
.shore-reel button i::after {
  content: "";
  position: absolute;
  left: -5px;
  top: 5px;
  width: 23px;
  height: 2px;
  background: currentColor;
  transform: rotate(-45deg);
}
.shore-reel button.is-on i::after { display: none; }

.shore-outro {
  position: relative;
  min-height: 88svh;
  overflow: hidden;
  background: var(--shore-ink);
  color: #fff;
}
.shore-outro__coffee,
.shore-outro__marsah { position: absolute; inset: 0; }
.shore-outro__coffee {
  right: 50%;
  background:
    linear-gradient(90deg,rgba(8,45,73,.25),rgba(8,45,73,.85)),
    url("assets/portfolio/cups-sea/june-cup-2.png") center/cover;
  clip-path: polygon(0 0,100% 0,82% 100%,0 100%);
}
.shore-outro__marsah {
  left: 46%;
  background:
    linear-gradient(270deg,rgba(105,10,47,.34),rgba(105,10,47,.86)),
    url("assets/clients/almarsah/art-03.png") center/cover;
  clip-path: polygon(18% 0,100% 0,100% 100%,0 100%);
}
.shore-outro::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,rgba(7,26,41,.76) 0%,rgba(7,26,41,.42) 56%,rgba(7,26,41,.2) 100%),
    linear-gradient(180deg,rgba(7,26,41,.28),rgba(7,26,41,.9));
}
.shore-outro__copy {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 52px;
  width: min(1240px,calc(100% - 48px));
  transform: translateX(-50%);
  text-shadow: 0 5px 26px rgba(0,0,0,.62);
}
.shore-outro__copy p {
  margin: 0;
  font: 800 .66rem/1 "Space Grotesk",sans-serif;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.shore-outro h2 {
  max-width: 900px;
  margin: 25px 0 40px;
  font-size: clamp(74px,9vw,138px);
  line-height: .9;
}
.shore-outro h2 em { color: #fff1dd; text-shadow: 4px 4px 0 var(--shore-orange), 0 8px 28px rgba(0,0,0,.5); }
.shore-outro h2 span,
.shore-outro h2 b {
  display: block;
  font: inherit;
}
.shore-outro h2 span { color: var(--shore-orange); }
.shore-outro h2 b { color: var(--shore-gold); }

.shore-footer {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 112px;
  padding: 28px max(24px,calc((100% - 1240px) / 2));
  background: var(--shore-paper);
}
.shore-footer > a:first-child img { width: 124px; filter: invert(1); }
.shore-footer p { margin: 0; color: rgba(7,26,41,.56); font: 600 .7rem/1.4 "Space Grotesk",sans-serif; }
.shore-footer > a:last-child {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font: 800 .66rem/1 "Space Grotesk",sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 800ms cubic-bezier(.2,.75,.2,1);
}
[data-reveal].is-visible { opacity: 1; transform: none; }
.shore-hero__copy[data-reveal] { transform: translate(-50%,28px); }
.shore-hero__copy[data-reveal].is-visible { transform: translate(-50%,0); }
.shore-outro__copy[data-reveal] { transform: translate(-50%,28px); }
.shore-outro__copy[data-reveal].is-visible { transform: translate(-50%,0); }

@media (max-width: 1000px) {
  .shore-header nav a:not(:last-child) { display: none; }
  .shore-handoff__head,
  .shore-section-head,
  .shore-motion__head { grid-template-columns: 140px 1fr; }
  .shore-handoff__head > p:last-child,
  .shore-section-head > p:last-child,
  .shore-motion__head > p:last-child { grid-column: 2; }
  .shore-journey article { min-height: 520px; }
  .shore-lockup { grid-template-columns: 1fr 80px 1fr; }
  .shore-lockup__cup,.shore-lockup__marsah { min-height: 350px; }
  .shore-crossfeed { grid-template-columns: 1fr; }
  .shore-crossfeed__copy { max-width: 700px; }
  .shore-footer { grid-template-columns: 1fr auto; }
  .shore-footer p { grid-column: 1 / -1; grid-row: 2; }
}

@media (max-width: 767px) {
  .shore-grain { opacity: .05; }
  .shore-header {
    top: 10px;
    grid-template-columns: auto auto 1fr;
    width: calc(100% - 20px);
    min-height: 58px;
    padding: 7px 8px 7px 11px;
    border-radius: 15px;
  }
  .shore-header__makerz { width: 86px; }
  .shore-header__makerz img { width: 82px; }
  .shore-header__brands { height: 42px; }
  .shore-header__brands > span { width: 54px; height: 40px; border-radius: 9px; }
  .shore-header__cup img { width: 47px; }
  .shore-header__marsah img { width: 46px; height: 46px; }
  .shore-header nav { position: absolute; right: 8px; }
  .shore-header nav a { display: none !important; }
  .shore-header nav a:last-child {
    display: grid !important;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 11px;
    font-size: 0;
  }
  .shore-header nav a i { font-size: initial; }

  .shore-hero { min-height: 100svh; }
  .shore-hero__world--coffee {
    right: 0;
    bottom: 49%;
    clip-path: polygon(0 0,100% 0,100% 84%,0 100%);
  }
  .shore-hero__world--coffee img { object-position: 50% 44%; }
  .shore-hero__world--food {
    left: 0;
    top: 47%;
    clip-path: polygon(0 14%,100% 0,100% 100%,0 100%);
  }
  .shore-hero__world--food img { object-position: 52% 52%; }
  .shore-hero__wake {
    top: 45%;
    left: -5%;
    width: 110%;
    height: 68px;
    clip-path: polygon(0 35%,100% 0,100% 60%,0 100%);
  }
  .shore-hero__eyebrow {
    top: 84px;
    width: calc(100% - 28px);
  }
  .shore-hero__eyebrow span { font-size: .52rem; }
  .shore-hero__eyebrow span:last-child { display: none; }
  .shore-hero__copy {
    bottom: 26px;
    width: calc(100% - 28px);
  }
  .shore-hero__copy > p { font-size: .58rem; }
  .shore-hero h1 {
    margin: 15px 0 20px;
    font-size: clamp(68px,20vw,94px);
    line-height: .9;
  }
  .shore-hero h1 em {
    margin-left: 0;
    text-shadow: 4px 4px 0 var(--shore-orange),-4px -4px 0 var(--shore-blue);
  }
  .shore-hero__copy > div { display: block; }
  .shore-hero__copy > div > span { display: block; max-width: 310px; font-size: 12px; }
  .shore-hero__copy a { margin-top: 17px; min-height: 42px; }
  .shore-hero__copy a i { width: 28px; height: 28px; }
  .shore-hero__seal { display: none; }

  .shore-handoff,
  .shore-coffee,
  .shore-feast,
  .shore-crossfeed,
  .shore-motion,
  .shore-lockup { padding: 82px 15px; }
  .shore-handoff__head,
  .shore-section-head,
  .shore-motion__head { display: block; margin-bottom: 44px; }
  .shore-handoff h2,
  .shore-section-head h2,
  .shore-crossfeed h2,
  .shore-motion h2 { margin: 22px 0; font-size: clamp(52px,16.5vw,78px); line-height: .92; }
  .shore-handoff__head > p:last-child,
  .shore-section-head > p:last-child,
  .shore-motion__head > p:last-child { font-size: 15px; }

  .shore-journey article,
  .shore-journey__food {
    grid-template-columns: 1fr !important;
    min-height: 0;
  }
  .shore-journey figure { height: 68svh; }
  .shore-journey article > div { min-height: 360px; padding: 34px 24px; }
  .shore-journey__food > div { order: 2; }
  .shore-journey__food > figure { order: 1; }
  .shore-journey__bridge {
    grid-template-columns: 1fr auto;
    min-height: 76px;
    padding: 12px 18px;
  }
  .shore-journey__bridge b { text-align: left; font-size: 28px; }
  .shore-journey__bridge span { display: none; }
  .shore-journey__bridge i { width: 52px; }

  .shore-lockup { grid-template-columns: 1fr 50px 1fr; gap: 9px; }
  .shore-lockup__cup,.shore-lockup__marsah { min-height: 220px; border-radius: 50% 50% 10px 10px; }
  .shore-lockup__plus span,.shore-lockup__plus i { width: 38px; height: 2px; }
  .shore-lockup__cup span,.shore-lockup__marsah span { display: none; }
  .shore-lockup__copy { display: block; margin-top: 24px; padding-top: 28px; }
  .shore-lockup__copy h2 { margin-top: 22px; font-size: clamp(46px,13vw,64px); line-height: .94; }

  .shore-coffee__grid { grid-template-columns: 1fr .68fr; gap: 10px; align-items: start; }
  .shore-coffee__wide { grid-column: 1 / -1; }
  .shore-coffee__poster { transform: none; }
  .shore-coffee__story { margin-top: 62px; transform: none; }
  .shore-coffee__grid figure { padding: 5px; }
  .shore-coffee__grid figcaption { display: block; line-height: 1.35; }
  .shore-coffee__grid figcaption b { display: none; }

  .shore-feast { padding-right: 0; }
  .shore-feast .shore-section-head { padding-right: 15px; }
  .shore-feast__rail {
    grid-template-columns: repeat(6,minmax(260px,78vw));
    overflow-x: auto;
    width: auto;
    padding: 0 15px 62px 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .shore-feast__rail::-webkit-scrollbar { display: none; }
  .shore-feast__rail figure { width: auto; scroll-snap-align: start; }
  .shore-feast__rail figure:nth-child(even) { transform: translateY(34px); }

  .shore-crossfeed { gap: 42px; }
  .shore-crossfeed__mosaic { grid-template-columns: 1fr .8fr; gap: 8px; }
  .shore-crossfeed__mosaic figure:nth-child(2),
  .shore-crossfeed__mosaic figure:nth-child(5) { transform: translateY(28px); }
  .shore-crossfeed__mosaic figure:nth-child(3),
  .shore-crossfeed__mosaic figure:nth-child(6) { transform: none; }

  .shore-motion { padding-left: 0; padding-right: 0; }
  .shore-motion__head { padding: 0 15px; }
  .shore-reels { display: block; }
  .shore-reel { min-height: 92svh; scroll-snap-align: start; }
  .shore-reel + .shore-reel { margin-top: 2px; }
  .shore-reel video { min-height: 92svh; }

  .shore-outro { min-height: 100svh; }
  .shore-outro__coffee {
    right: 0;
    bottom: 50%;
    clip-path: polygon(0 0,100% 0,100% 84%,0 100%);
  }
  .shore-outro__marsah {
    left: 0;
    top: 47%;
    clip-path: polygon(0 14%,100% 0,100% 100%,0 100%);
  }
  .shore-outro__copy { bottom: 28px; width: calc(100% - 28px); }
  .shore-outro::after { background: linear-gradient(180deg,rgba(7,26,41,.2),rgba(7,26,41,.94)); }
  .shore-outro h2 { margin: 18px 0 28px; font-size: clamp(58px,16.5vw,78px); line-height: .92; }
  .shore-outro__copy > a { min-height: 44px; }
  .shore-outro__copy > a i { width: 28px; height: 28px; }

  .shore-footer { grid-template-columns: 1fr auto; gap: 16px; padding: 26px 15px; }
  .shore-footer p { grid-column: 1 / -1; grid-row: 2; }
  .shore-footer > a:first-child img { width: 105px; }
  .shore-footer > a:last-child { font-size: 0; }
  .shore-footer > a:last-child i { font-size: initial; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .shore-marquee div { animation: none; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .shore-hero__copy[data-reveal] { transform: translateX(-50%); }
  .shore-outro__copy[data-reveal] { transform: translateX(-50%); }
}
