:root {
  --ink: #071c2b;
  --navy: #092d48;
  --water: #087d8f;
  --aqua: #62d1ca;
  --coral: #ef4d3c;
  --sun: #f2b13d;
  --sand: #f4ecd9;
  --paper: #fffdf7;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

#story,
#menu,
#social,
#visit {
  scroll-margin-top: 100px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

body,
button,
a {
  cursor: default;
}

a,
button {
  cursor: pointer;
}

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

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

.hero {
  --pointer-x: 0;
  --pointer-y: 0;
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.hero-image,
.hero-shade,
.sun-glow {
  position: absolute;
  inset: 0;
}

.hero-image {
  z-index: -4;
  background: url("images/sunset-hero.webp") center 58% / cover no-repeat;
  transform: scale(1.06)
    translate(calc(var(--pointer-x) * -7px), calc(var(--pointer-y) * -5px));
  transition: transform 0.35s ease-out;
  animation: hero-arrive 1.3s cubic-bezier(0.2, 0.75, 0.2, 1) both;
}

.hero-shade {
  z-index: -3;
  background:
    linear-gradient(
      90deg,
      rgba(3, 18, 30, 0.92) 0%,
      rgba(3, 18, 30, 0.56) 48%,
      rgba(3, 18, 30, 0.16) 78%
    ),
    linear-gradient(
      0deg,
      rgba(2, 14, 24, 0.7) 0%,
      transparent 42%,
      rgba(2, 14, 24, 0.34) 100%
    );
}

.sun-glow {
  z-index: -2;
  width: 48rem;
  height: 48rem;
  left: 48%;
  top: -36%;
  border-radius: 50%;
  background: rgba(255, 177, 57, 0.14);
  filter: blur(26px);
  transform: translate(
    calc(var(--pointer-x) * 10px),
    calc(var(--pointer-y) * 8px)
  );
}

.site-header {
  position: fixed;
  z-index: 2147483000;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  min-height: 112px;
  margin: 0;
  padding: 0 max(36px, calc((100vw - 1440px) / 2));
  display: grid;
  grid-template-columns: 250px 1fr auto;
  align-items: center;
  gap: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  background: #061724;
  color: var(--white);
  transition:
    min-height 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease,
    backdrop-filter 0.35s ease;
  animation: fade-down 0.8s 0.15s ease both;
}

.site-header.is-scrolled {
  min-height: 84px;
  border-bottom-color: rgba(255, 255, 255, 0.13);
  background: #061724;
  box-shadow: 0 14px 45px rgba(2, 15, 25, 0.22);
}

.brand {
  width: 210px;
  transition: width 0.35s ease;
}

.site-header.is-scrolled .brand {
  width: 174px;
}

.brand img {
  width: 100%;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.22));
}

.nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 2.2vw, 38px);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.nav a {
  position: relative;
  padding: 16px 0;
  white-space: nowrap;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 8px;
  width: 100%;
  height: 2px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav .marketing-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #ffd072;
}

.header-call {
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-align: right;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.header-call span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.menu-toggle {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100% - 72px, 1440px);
  margin: 0 auto;
  padding: clamp(210px, 24vh, 250px) 0 190px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  color: #ffe2a4;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  animation: hero-copy 0.8s 0.35s ease both;
}

.eyebrow-line {
  width: 46px;
  height: 2px;
  background: var(--coral);
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(4.6rem, 8.4vw, 8.5rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.82;
  text-transform: uppercase;
  text-wrap: balance;
  animation: hero-copy 0.9s 0.45s ease both;
}

.hero h1 span {
  display: block;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.82);
}

.hero-content > p {
  max-width: 570px;
  margin: 30px 0 32px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 1.7;
  animation: hero-copy 0.9s 0.55s ease both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  animation: hero-copy 0.9s 0.65s ease both;
}

.button {
  min-height: 55px;
  padding: 0 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  border: 1px solid transparent;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-4px);
}

.button-primary {
  background: var(--coral);
  box-shadow: 0 14px 40px rgba(239, 77, 60, 0.24);
}

.button-primary:hover {
  box-shadow: 0 20px 50px rgba(239, 77, 60, 0.38);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(6, 30, 46, 0.2);
  backdrop-filter: blur(8px);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

.hero-card {
  position: absolute;
  z-index: 4;
  right: max(36px, calc((100vw - 1440px) / 2));
  bottom: 84px;
  width: 360px;
  padding: 19px 20px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.23);
  background: rgba(4, 26, 41, 0.66);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(16px);
  animation: fade-up 0.9s 0.85s ease both;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--aqua);
  box-shadow: 0 0 0 6px rgba(98, 209, 202, 0.13);
}

.hero-card div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.micro-label {
  color: rgba(255, 255, 255, 0.61);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-card strong {
  margin-top: 3px;
  font-size: 1rem;
}

.hero-card div > span:last-child {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.83rem;
}

.hero-card > a {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.hero-card > a:hover {
  transform: rotate(45deg);
}

.hero-rail {
  position: absolute;
  left: 36px;
  bottom: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero-rail i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--coral);
}

.scroll-cue {
  position: absolute;
  right: 34px;
  top: 46%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.scroll-cue i {
  width: 1px;
  height: 58px;
  background: rgba(255, 255, 255, 0.42);
  overflow: hidden;
}

.scroll-cue i::after {
  content: "";
  display: block;
  width: 100%;
  height: 45%;
  background: var(--white);
  animation: scroll-line 1.8s infinite ease-in-out;
}

.section {
  width: min(100% - 72px, 1360px);
  margin: 0 auto;
}

.story {
  min-height: 900px;
  padding: 150px 0;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(500px, 1.14fr);
  align-items: center;
  gap: clamp(60px, 8vw, 130px);
}

.section-kicker {
  display: block;
  margin-bottom: 20px;
  color: var(--water);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.story h2,
.menu-intro h2,
.mascot-copy h2,
.social-copy h2,
.visit-panel h2 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(3.2rem, 5.5vw, 6rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 0.94;
  text-transform: uppercase;
  text-wrap: balance;
}

.lead {
  max-width: 590px;
  margin: 30px 0 45px;
  color: #465863;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.15rem, 1.7vw, 1.38rem);
  line-height: 1.7;
}

.feature-list {
  border-top: 1px solid #d6d1c5;
}

.feature-list > div {
  display: grid;
  grid-template-columns: 42px 150px 1fr;
  align-items: baseline;
  gap: 14px;
  padding: 20px 0;
  border-bottom: 1px solid #d6d1c5;
}

.feature-list span {
  color: var(--coral);
  font-size: 0.65rem;
  font-weight: 900;
}

.feature-list strong {
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.feature-list p {
  margin: 0;
  color: #6a777e;
  font-size: 0.83rem;
  line-height: 1.55;
}

.story-visual {
  position: relative;
  min-width: 0;
}

.tide-compare {
  --compare-position: 54%;
  position: relative;
  width: 100%;
  aspect-ratio: 1.25 / 1;
  overflow: hidden;
  border: 10px solid var(--paper);
  background: var(--navy);
  box-shadow: 0 30px 80px rgba(7, 28, 43, 0.18);
  isolation: isolate;
}

.tide-compare::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  box-shadow: inset 0 -90px 100px rgba(2, 19, 30, 0.26);
  pointer-events: none;
}

.tide-compare__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.tide-compare__day {
  position: absolute;
  z-index: 1;
  inset: 0;
  overflow: hidden;
  clip-path: inset(0 calc(100% - var(--compare-position)) 0 0);
}

.tide-compare__label {
  position: absolute;
  z-index: 4;
  bottom: 20px;
  padding: 8px 11px;
  background: rgba(4, 24, 38, 0.78);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  pointer-events: none;
}

.tide-compare__label--day {
  left: 22px;
}

.tide-compare__label--night {
  right: 22px;
}

.tide-compare__divider {
  position: absolute;
  z-index: 4;
  top: 0;
  bottom: 0;
  left: var(--compare-position);
  width: 3px;
  display: grid;
  place-items: center;
  background: var(--white);
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.32);
  transform: translateX(-50%);
  pointer-events: none;
}

.tide-compare__divider span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
  color: var(--white);
  font-size: 1.15rem;
}

.tide-compare input[type="range"] {
  position: absolute;
  z-index: 5;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}

.tide-compare__hint {
  position: absolute;
  z-index: 4;
  top: 20px;
  left: 50%;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(4, 24, 38, 0.72);
  color: var(--white);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: translateX(-50%);
  pointer-events: none;
  white-space: nowrap;
}

.tide-compare:focus-within {
  outline: 4px solid rgba(98, 209, 202, 0.58);
  outline-offset: 4px;
}

.menu-intro {
  margin-bottom: 100px;
  padding: 68px 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  background: var(--aqua);
}

.menu-intro h2 {
  max-width: 850px;
  font-size: clamp(2.7rem, 4.7vw, 5.2rem);
}

.button-dark {
  flex: 0 0 auto;
  background: var(--ink);
  color: var(--white);
}

.menu-grid {
  margin-top: -64px;
  margin-bottom: 140px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(7, 28, 43, 0.13);
  box-shadow: 0 30px 80px rgba(7, 28, 43, 0.12);
}

.menu-card {
  position: relative;
  min-height: 440px;
  padding: 35px 30px 32px;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  transition:
    transform 0.4s cubic-bezier(0.2, 0.75, 0.2, 1),
    box-shadow 0.4s ease;
}

.menu-card::before {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -130px;
  top: -135px;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.15;
  box-shadow:
    0 0 0 28px transparent,
    0 0 0 29px currentColor,
    0 0 0 56px transparent,
    0 0 0 57px currentColor;
  transition: transform 0.65s ease;
}

.menu-card:hover {
  z-index: 2;
  transform: translateY(-14px);
  box-shadow: 0 30px 70px rgba(7, 28, 43, 0.18);
}

.menu-card:hover::before {
  transform: scale(1.18) rotate(14deg);
}

.menu-card-coral {
  background: var(--coral);
  color: var(--white);
}

.menu-card-aqua {
  background: #b9e6dc;
  color: var(--ink);
}

.menu-card-navy {
  background: var(--navy);
  color: var(--white);
}

.menu-card-sun {
  background: var(--sun);
  color: var(--ink);
}

.menu-number {
  margin-bottom: 82px;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.menu-type {
  margin-bottom: 14px;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  opacity: 0.7;
  text-transform: uppercase;
}

.menu-card h3 {
  min-height: 86px;
  margin: 0 0 16px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(1.65rem, 2.2vw, 2.35rem);
  font-weight: 900;
  letter-spacing: -0.015em;
  line-height: 1;
  text-transform: uppercase;
}

.menu-card p {
  margin: 0 0 26px;
  font-size: 0.83rem;
  line-height: 1.7;
  opacity: 0.8;
}

.menu-card strong {
  margin-top: auto;
  font-size: 0.84rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.card-arrow {
  position: absolute;
  right: 28px;
  bottom: 27px;
  font-size: 1.25rem;
  transition: transform 0.35s ease;
}

.menu-card:hover .card-arrow {
  transform: rotate(45deg);
}

.mascot-feature {
  position: relative;
  min-height: 850px;
  overflow: hidden;
  background:
    linear-gradient(
      90deg,
      rgba(3, 20, 32, 0.96) 0%,
      rgba(3, 20, 32, 0.78) 46%,
      rgba(3, 20, 32, 0.32) 100%
    ),
    url("images/waterfront-night.webp") center 42% / cover no-repeat;
  color: var(--white);
  isolation: isolate;
}

.mascot-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(
      circle at 72% 48%,
      rgba(98, 209, 202, 0.19),
      transparent 33%
    ),
    linear-gradient(0deg, rgba(2, 15, 25, 0.74), transparent 55%);
}

.mascot-scene {
  min-height: 850px;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(500px, 1.15fr);
  align-items: center;
  gap: clamp(40px, 6vw, 95px);
}

.section-kicker-light {
  color: #ffd783;
}

.mascot-copy {
  position: relative;
  z-index: 3;
  max-width: 610px;
}

.mascot-copy h2 {
  font-size: clamp(3.4rem, 5.7vw, 6.6rem);
}

.mascot-copy > p {
  max-width: 560px;
  margin: 29px 0 35px;
  color: rgba(255, 255, 255, 0.74);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.12rem;
  line-height: 1.75;
}

.mascot-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 25px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.48);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: gap 0.3s ease;
}

.text-link:hover {
  gap: 35px;
}

.mascot-wrap {
  position: relative;
  height: 760px;
  align-self: end;
}

.mascot-wrap > img {
  position: absolute;
  z-index: 2;
  width: min(550px, 78%);
  max-height: 720px;
  right: 4%;
  bottom: -78px;
  object-fit: contain;
  filter: drop-shadow(0 42px 45px rgba(0, 0, 0, 0.42)) saturate(1.08);
  transform: rotate(2deg);
  transition:
    transform 0.65s cubic-bezier(0.2, 0.75, 0.2, 1),
    filter 0.5s ease;
}

.mascot-wrap:hover > img {
  filter: drop-shadow(0 52px 58px rgba(0, 0, 0, 0.54)) saturate(1.2);
  transform: translateY(-16px) rotate(-1deg);
}

.mascot-halo {
  position: absolute;
  z-index: 1;
  width: 560px;
  height: 560px;
  right: -2%;
  bottom: 7%;
  border: 1px solid rgba(98, 209, 202, 0.4);
  border-radius: 50%;
  box-shadow:
    0 0 0 48px rgba(98, 209, 202, 0.035),
    0 0 0 96px rgba(98, 209, 202, 0.025);
  animation: halo-pulse 4.8s ease-in-out infinite;
}

.mascot-stamp {
  position: absolute;
  z-index: 4;
  width: 142px;
  height: 142px;
  left: 4%;
  bottom: 12%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 50%;
  background: var(--sun);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.3);
  color: var(--ink);
  font-size: 0.59rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-align: center;
  text-transform: uppercase;
  animation: float 4.6s -1.2s ease-in-out infinite;
}

.mascot-stamp strong {
  margin-top: 4px;
  font-size: 0.8rem;
}

.social {
  min-height: 900px;
  padding: 145px 0;
  display: grid;
  grid-template-columns: minmax(0, 0.83fr) minmax(450px, 1.17fr);
  align-items: center;
  gap: clamp(70px, 9vw, 150px);
}

.social-copy h2 {
  font-size: clamp(3.3rem, 5.2vw, 5.8rem);
}

.social-tabs {
  display: inline-flex;
  margin: 5px 0 32px;
  padding: 5px;
  border: 1px solid #d4cec0;
  background: #eee6d6;
}

.social-tabs button {
  min-width: 145px;
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition:
    background 0.3s ease,
    color 0.3s ease;
}

.social-tabs button.is-active {
  background: var(--ink);
  color: var(--white);
}

.social-note {
  max-width: 500px;
  padding: 19px 20px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;
  border-left: 3px solid var(--aqua);
  background: #e9f2ec;
}

.social-note p {
  margin: 0;
  color: #576970;
  font-size: 0.79rem;
  line-height: 1.55;
}

.social-links {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.social-links a {
  display: inline-flex;
  gap: 11px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--ink);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.facebook-shell {
  position: relative;
  width: min(100%, 570px);
  min-height: 770px;
  margin-left: auto;
  padding: 22px;
  background: var(--navy);
  box-shadow: 0 40px 100px rgba(7, 28, 43, 0.22);
}

.facebook-shell::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 40px -34px -34px 40px;
  border: 2px solid var(--sun);
}

.facebook-topbar {
  min-height: 58px;
  padding: 0 7px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.11em;
}

.facebook-topbar i {
  padding: 7px 10px;
  border-radius: 99px;
  background: var(--coral);
  font-size: 0.58rem;
  font-style: normal;
  text-transform: uppercase;
}

.facebook-frame {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background: var(--white);
}

.facebook-frame iframe {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 680px;
  display: block;
  border: 0;
  background: var(--white);
}

.facebook-fallback {
  position: absolute;
  z-index: 3;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 16px 18px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 6px 18px;
  border: 1px solid #ded9cf;
  background: rgba(255, 253, 247, 0.96);
  box-shadow: 0 12px 35px rgba(7, 28, 43, 0.16);
  color: #5c6a71;
  text-align: left;
  backdrop-filter: blur(10px);
}

.facebook-fallback strong {
  color: var(--ink);
  font-size: 1rem;
}

.facebook-fallback span {
  grid-column: 1;
  font-size: 0.8rem;
  line-height: 1.5;
}

.facebook-fallback a {
  grid-column: 2;
  grid-row: 1 / span 2;
  padding: 13px 15px;
  background: var(--coral);
  color: var(--white);
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.visit {
  min-height: 760px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
}

.visit-map {
  min-height: 760px;
  background: #d9ded7;
  filter: saturate(0.68) contrast(1.08);
}

.visit-map iframe {
  width: 100%;
  height: 100%;
  min-height: 760px;
  border: 0;
}

.visit-panel {
  min-height: 760px;
  padding: 100px clamp(48px, 7vw, 115px);
  display: flex;
  align-items: center;
  background: var(--ink);
  color: var(--white);
}

.visit-panel h2 {
  max-width: 620px;
  font-size: clamp(3.5rem, 5.4vw, 6rem);
}

.visit-details {
  max-width: 600px;
  margin: 45px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.visit-details > div {
  padding: 19px 0;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.visit-details span {
  color: rgba(255, 255, 255, 0.51);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.visit-details strong {
  font-size: 0.86rem;
  line-height: 1.55;
}

.footer {
  padding-top: 100px;
  background: #061724;
  color: var(--white);
}

.footer-main {
  padding-bottom: 80px;
  display: grid;
  grid-template-columns: 1.15fr 0.55fr 0.65fr 1.35fr;
  gap: clamp(35px, 5vw, 80px);
}

.footer-brand img {
  width: 220px;
}

.footer-brand p {
  max-width: 340px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.82rem;
  line-height: 1.75;
}

.footer-nav,
.footer-connect {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 13px;
}

.footer-nav > span,
.footer-connect > span,
.footer-marketing > span {
  margin-bottom: 10px;
  color: #ffd072;
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-nav a,
.footer-connect a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.77rem;
  transition: color 0.25s ease;
}

.footer-nav a:hover,
.footer-connect a:hover {
  color: var(--aqua);
}

.footer-marketing {
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.035);
}

.footer-marketing h3 {
  margin: 0 0 24px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(1.7rem, 2.4vw, 2.4rem);
  font-weight: 900;
  line-height: 1.04;
  text-transform: uppercase;
}

.button-sun {
  width: 100%;
  background: var(--sun);
  color: var(--ink);
}

.footer-bottom {
  min-height: 85px;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.6;
  text-transform: uppercase;
}

.footer-bottom a {
  color: var(--aqua);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.85s ease,
    transform 0.85s cubic-bezier(0.2, 0.75, 0.2, 1);
}

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

@keyframes hero-arrive {
  from {
    opacity: 0;
    transform: scale(1.16);
  }
}

@keyframes fade-down {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
}

@keyframes hero-copy {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
}

@keyframes scroll-line {
  0% {
    transform: translateY(-120%);
  }
  100% {
    transform: translateY(240%);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(-4deg);
  }
  50% {
    transform: translateY(-12px) rotate(2deg);
  }
}

@keyframes halo-pulse {
  0%,
  100% {
    transform: scale(0.96);
    opacity: 0.65;
  }
  50% {
    transform: scale(1.04);
    opacity: 1;
  }
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 190px 1fr auto;
  }

  .nav {
    gap: 18px;
  }

  .nav a {
    font-size: 0.68rem;
  }

  .header-call {
    display: none;
  }

  .story {
    grid-template-columns: 1fr;
    padding: 110px 0;
  }

  .story-copy {
    max-width: 790px;
  }

  .story-visual {
    min-height: 0;
  }

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

  .mascot-scene {
    grid-template-columns: 1fr 1fr;
  }

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

  .social-copy {
    max-width: 760px;
  }

  .facebook-shell {
    margin: 0 auto;
  }

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

  .visit-map,
  .visit-map iframe {
    min-height: 520px;
  }

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

  .footer-marketing {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .hero-content,
  .section {
    width: min(100% - 36px, 1360px);
  }

  .site-header {
    min-height: 90px;
    padding: 0 18px;
    grid-template-columns: 1fr auto;
  }

  .site-header.is-scrolled {
    min-height: 90px;
  }

  .brand {
    width: 175px;
  }

  .site-header.is-scrolled .brand {
    width: 158px;
  }

  .menu-toggle {
    width: 46px;
    height: 46px;
    padding: 0;
    display: grid;
    place-content: center;
    gap: 7px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    background: rgba(4, 26, 41, 0.3);
    color: var(--white);
  }

  .menu-toggle span {
    width: 20px;
    height: 2px;
    background: currentColor;
  }

  .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 90px;
    padding: 24px;
    display: none;
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
    background: rgba(4, 26, 41, 0.96);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(18px);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    width: 100%;
    padding: 11px 0;
  }

  .hero-content {
    padding-top: clamp(175px, 23vh, 220px);
    padding-bottom: 230px;
  }

  .hero h1 {
    font-size: clamp(4.1rem, 21vw, 6.4rem);
    line-height: 0.85;
  }

  .hero h1 span {
    -webkit-text-stroke-width: 1.3px;
  }

  .hero-content > p {
    max-width: 430px;
  }

  .hero-card {
    left: 18px;
    right: 18px;
    bottom: 68px;
    width: auto;
  }

  .hero-rail,
  .scroll-cue {
    display: none;
  }

  .story {
    min-height: unset;
    gap: 58px;
    padding: 88px 0;
  }

  .feature-list > div {
    grid-template-columns: 32px 1fr;
  }

  .feature-list p {
    grid-column: 2;
  }

  .story-visual {
    min-height: 0;
  }

  .tide-compare {
    aspect-ratio: 1 / 1;
    border-width: 7px;
  }

  .menu-intro {
    margin-bottom: 50px;
    padding: 48px 28px;
    align-items: flex-start;
    flex-direction: column;
  }

  .menu-grid {
    margin-top: -28px;
    margin-bottom: 90px;
    grid-template-columns: 1fr;
  }

  .menu-card {
    min-height: 350px;
  }

  .menu-number {
    margin-bottom: 48px;
  }

  .mascot-feature,
  .mascot-scene {
    min-height: 960px;
  }

  .mascot-scene {
    padding-top: 90px;
    grid-template-columns: 1fr;
    align-content: start;
  }

  .mascot-wrap {
    width: 100%;
    height: 560px;
  }

  .mascot-wrap > img {
    width: min(470px, 85%);
    right: 0;
    bottom: -70px;
  }

  .mascot-halo {
    width: 420px;
    height: 420px;
    right: -80px;
  }

  .mascot-stamp {
    left: 0;
    bottom: 9%;
  }

  .social {
    min-height: unset;
    padding: 95px 0 120px;
    gap: 65px;
  }

  .social-tabs {
    width: 100%;
  }

  .social-tabs button {
    flex: 1;
    min-width: 0;
  }

  .facebook-shell {
    width: calc(100% - 20px);
    padding: 14px;
  }

  .facebook-shell::before {
    inset: 28px -18px -20px 28px;
  }

  .visit-panel {
    min-height: unset;
    padding: 90px 28px;
  }

  .visit-details > div {
    grid-template-columns: 120px 1fr;
  }

  .footer {
    padding-top: 75px;
  }

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

  .footer-brand,
  .footer-marketing {
    grid-column: 1 / -1;
  }

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

@media (max-width: 460px) {
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-card {
    padding: 16px;
  }

  .story-visual {
    min-height: 0;
  }

  .tide-compare__hint {
    top: 14px;
    font-size: 0.5rem;
  }

  .tide-compare__label {
    bottom: 14px;
    font-size: 0.55rem;
  }

  .tide-compare__label--day {
    left: 14px;
  }

  .tide-compare__label--night {
    right: 14px;
  }

  .mascot-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .mascot-actions .button {
    width: 100%;
  }

  .mascot-wrap {
    height: 470px;
  }

  .mascot-stamp {
    width: 110px;
    height: 110px;
  }

  .social-tabs {
    flex-direction: column;
  }

  .facebook-shell {
    min-height: 730px;
  }

  .facebook-frame,
  .facebook-frame iframe {
    min-height: 650px;
  }

  .facebook-fallback {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 14px;
    grid-template-columns: 1fr;
  }

  .facebook-fallback a {
    grid-column: 1;
    grid-row: auto;
    text-align: center;
  }

  .visit-details > div {
    grid-template-columns: 1fr;
  }

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

  .footer-brand,
  .footer-marketing {
    grid-column: auto;
  }
}

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

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